All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Guard Rails complement Quality Rails by controlling what agents can do: - Capability-based permissions (resource:action pattern) - Read/organize/draft allowed by default - Execute/admin require explicit grants - Human-in-the-loop approval for sensitive actions Examples: email (read/draft ✅, send ❌), git (commit ✅, force push ❌) Also: - Add .admin-credentials and .env.bak.* to .gitignore Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
57 lines
684 B
Plaintext
57 lines
684 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
|
|
# Compiled source (prevent accidental commits)
|
|
apps/*/src/**/*.js
|
|
apps/*/src/**/*.d.ts
|
|
apps/*/src/**/*.js.map
|
|
apps/*/src/**/*.d.ts.map
|
|
packages/*/src/**/*.js
|
|
packages/*/src/**/*.d.ts
|
|
packages/*/src/**/*.js.map
|
|
packages/*/src/**/*.d.ts.map
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.bak.*
|
|
|
|
# Credentials (never commit)
|
|
.admin-credentials
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|
|
.pnpm-approve-builds
|
|
|
|
# Husky
|
|
.husky/_
|