.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # ── claude-config repo ignores ──
  2. # GStack skill symlinks — auto-created by gstack setup
  3. # Only the gstack/ dir itself + all symlinked skills inside skills/
  4. skills/gstack
  5. skills/autoplan
  6. skills/benchmark
  7. skills/browse
  8. skills/canary
  9. skills/careful
  10. skills/checkpoint
  11. skills/codex
  12. skills/connect-chrome
  13. skills/cso
  14. skills/design-consultation
  15. skills/design-html
  16. skills/design-review
  17. skills/design-shotgun
  18. skills/devex-review
  19. skills/document-release
  20. skills/freeze
  21. skills/gstack-upgrade
  22. skills/guard
  23. skills/health
  24. skills/investigate
  25. skills/land-and-deploy
  26. skills/learn
  27. skills/office-hours
  28. skills/open-gstack-browser
  29. skills/pair-agent
  30. skills/plan-ceo-review
  31. skills/plan-design-review
  32. skills/plan-devex-review
  33. skills/plan-eng-review
  34. skills/qa
  35. skills/qa-only
  36. skills/retro
  37. skills/review
  38. skills/setup-browser-cookies
  39. skills/setup-deploy
  40. skills/ship
  41. skills/unfreeze
  42. skills/benchmark-models
  43. skills/context-restore
  44. skills/context-save
  45. skills/make-pdf
  46. skills/plan-tune
  47. # Emil Design Engineering skill symlink — auto-created by link.sh
  48. skills/emil-design-eng
  49. # External skills installed via `npx skills add` — auto-created by link.sh
  50. skills/darwin-skill
  51. skills/find-skills
  52. # Staging area used by lib/toggle-external.sh when disabling a tool
  53. skills-disabled/
  54. # Caveman runtime hook files — deployed by caveman hooks/install.sh into
  55. # ~/.claude/hooks/ (which is a symlink to this repo's hooks/), so they
  56. # materialize here. They are user-scope state, not repo source.
  57. hooks/caveman-activate.js
  58. hooks/caveman-config.js
  59. hooks/caveman-mode-tracker.js
  60. hooks/caveman-stats.js
  61. hooks/caveman-statusline.sh
  62. hooks/package.json
  63. hooks/package-lock.json
  64. hooks/node_modules/
  65. # Local project config (per-machine, not shared)
  66. .claude/*
  67. !.claude/tasks/
  68. !.claude/memory/
  69. !.claude/audits/
  70. !.claude/settings.json
  71. # But keep local stuff ignored within .claude/
  72. .claude/settings.local.json
  73. .claude/agent-memory/
  74. .claude/gstack/
  75. # Caveman compress backups — generated by /caveman:compress, recoverable via git
  76. *.original.md
  77. # Generated outputs
  78. graphify-out/
  79. .ctx7-cache/
  80. # /client-handover test artifacts (project-local renders)
  81. LIVRAISON.md
  82. LIVRAISON.html
  83. LIVRAISON.pdf
  84. HANDOVER.md
  85. HANDOVER.html
  86. HANDOVER.pdf
  87. # Install logs
  88. install-*.log
  89. # Local secrets (MCP API keys etc.) — use .env.example as template
  90. .env
  91. .env.local
  92. # OS
  93. .DS_Store
  94. Thumbs.db
  95. desktop.ini
  96. # Editors
  97. *.swp
  98. *.swo
  99. *~
  100. .idea/
  101. .vscode/