reports/ is used by /autopilot for daily reports and per-worker decision logs (scratch). spec-decisions-*.md and spec-plan-*.md are produced by /plan-overnight and committed only when promoted to docs/archive/. Prevents `git add -A` in workers from sweeping these into PRs.
67 lines
779 B
Text
67 lines
779 B
Text
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
dist-ssr/
|
|
target/
|
|
|
|
# User data
|
|
data/
|
|
!src/data/
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
|
|
# Imports
|
|
imports/*.csv
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
*.local
|
|
|
|
# Secrets
|
|
*.pem
|
|
*.key
|
|
|
|
# IDE
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Auto-generated changelogs (synced from root by vite.config.ts)
|
|
public/CHANGELOG.md
|
|
public/CHANGELOG.fr.md
|
|
|
|
# Tauri generated
|
|
src-tauri/gen/
|
|
|
|
# Claude Code local state
|
|
.claude/settings.local.json
|
|
.claude/scheduled_tasks.lock
|
|
.claude/worktrees/
|
|
decisions-log.md
|
|
|
|
# Autopilot scratch + daily reports
|
|
reports/
|
|
|
|
# Spec scratch (committed only when promoted to docs/archive/)
|
|
spec-decisions-*.md
|
|
spec-plan-*.md
|