.gitignore 627 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Environment files (API keys)
  2. .env
  3. .env.*
  4. # Context init file (regenerated each session)
  5. .claude/.context-init.md
  6. # Session state (user-specific)
  7. .claude/session-cache.json
  8. .claude/claude-state.json
  9. .claude/claude-progress.md
  10. .claude/sync-cache.json
  11. .claude/canvas/
  12. # Runtime artefacts (must never be tracked)
  13. .claude/scheduled_tasks.lock
  14. .claude/worktrees/
  15. .claude/settings.local.json
  16. .claude/launch.json
  17. # Backup files
  18. *.bak
  19. *~
  20. # Windows artifacts
  21. nul
  22. Thumbs.db
  23. # macOS artifacts
  24. .DS_Store
  25. # Temporary files
  26. *.tmp
  27. *.temp
  28. # Scraped/generated data
  29. *_scraped.json
  30. *_scraped.csv
  31. .grok/
  32. # Test artifacts
  33. tests/*/output/