claude-code-kit 0.16.0__tar.gz → 0.17.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/.claude-plugin/marketplace.json +1 -1
  2. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/.claude-plugin/plugin.json +1 -1
  3. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/CHANGELOG.md +90 -0
  4. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/CONTRIBUTING.md +4 -1
  5. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/PKG-INFO +195 -23
  6. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/README.md +194 -22
  7. claude_code_kit-0.17.1/catalog/capture.yaml +37 -0
  8. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/catalog/profiles.yaml +3 -0
  9. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/agentic-patterns.md +1 -1
  10. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/coverage-audit.md +1 -1
  11. claude_code_kit-0.17.1/hooks/hooks.json +72 -0
  12. claude_code_kit-0.17.1/hooks/scripts/capture-learnings.sh +207 -0
  13. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/load-learnings.sh +4 -1
  14. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/pyproject.toml +1 -1
  15. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/agent-memory.md +1 -1
  16. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/remember/SKILL.md +1 -1
  17. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/__init__.py +1 -1
  18. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/catalog.py +46 -0
  19. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/hooks.py +34 -6
  20. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/models.py +5 -0
  21. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/prompts.py +14 -0
  22. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/settings.json +10 -1
  23. claude_code_kit-0.16.0/hooks/hooks.json +0 -61
  24. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/.gitignore +0 -0
  25. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/CLAUDE.md +0 -0
  26. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/LICENSE +0 -0
  27. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/acceptance-reviewer.md +0 -0
  28. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/auditor.md +0 -0
  29. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/dependency-scanner.md +0 -0
  30. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/developer.md +0 -0
  31. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/devils-advocate.md +0 -0
  32. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/devops-engineer.md +0 -0
  33. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/e2e-tester.md +0 -0
  34. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/em-reviewer.md +0 -0
  35. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/incident-responder.md +0 -0
  36. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/merge-reviewer.md +0 -0
  37. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/observability-engineer.md +0 -0
  38. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/orchestrator.md +0 -0
  39. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/owasp-reviewer.md +0 -0
  40. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/policy-validator.md +0 -0
  41. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/pr-raiser.md +0 -0
  42. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/risk-classifier.md +0 -0
  43. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/sdlc-code-reviewer.md +0 -0
  44. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/secret-scanner.md +0 -0
  45. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/security-reviewer.md +0 -0
  46. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/senior-backend-dev.md +0 -0
  47. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/senior-frontend-dev.md +0 -0
  48. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/senior-tester.md +0 -0
  49. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/spec-doc-writer.md +0 -0
  50. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/story-planner.md +0 -0
  51. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/technical-architect.md +0 -0
  52. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/tester.md +0 -0
  53. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/ui-designer.md +0 -0
  54. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/agents/unit-tester.md +0 -0
  55. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/catalog/mcp.yaml +0 -0
  56. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/catalog/org.yaml +0 -0
  57. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/catalog/stacks.yaml +0 -0
  58. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/commands/abort.md +0 -0
  59. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/commands/init.md +0 -0
  60. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/commands/sdlc.md +0 -0
  61. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/commands/status.md +0 -0
  62. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/agents.md +0 -0
  63. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/architecture.md +0 -0
  64. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/eval-harness.md +0 -0
  65. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/docs/org-capabilities.md +0 -0
  66. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/audit-log.sh +0 -0
  67. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/guard-destructive-git.sh +0 -0
  68. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/guard-secrets.sh +0 -0
  69. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/lint-fix.sh +0 -0
  70. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/load-autonomy.sh +0 -0
  71. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/load-continuity.sh +0 -0
  72. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/type-check.sh +0 -0
  73. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/validate-frontmatter.sh +0 -0
  74. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/validate-settings.sh +0 -0
  75. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/warn-large-edits.sh +0 -0
  76. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/warn-llm-io.sh +0 -0
  77. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/warn-missing-tests.sh +0 -0
  78. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/warn-sensitive-files.sh +0 -0
  79. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/hooks/scripts/warn-shared-modules.sh +0 -0
  80. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/agent-guardrails.md +0 -0
  81. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/agent-resilience.md +0 -0
  82. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/autonomy-levels.md +0 -0
  83. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/code-organization.md +0 -0
  84. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/continuity.md +0 -0
  85. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/design-patterns.md +0 -0
  86. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/devops-observability.md +0 -0
  87. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/documentation.md +0 -0
  88. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/evals.md +0 -0
  89. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/frontend-best-practices.md +0 -0
  90. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/goal-setting-and-monitoring.md +0 -0
  91. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/human-in-the-loop.md +0 -0
  92. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/linting-and-formatting.md +0 -0
  93. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/mandatory-workflow.md +0 -0
  94. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/model-tiers.md +0 -0
  95. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/quality-gates.md +0 -0
  96. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/rarv-cycle.md +0 -0
  97. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/reasoning-techniques.md +0 -0
  98. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/responsive-and-accessibility.md +0 -0
  99. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/risk-classification.md +0 -0
  100. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/testing.md +0 -0
  101. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/rules/tool-design.md +0 -0
  102. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/scripts/init.sh +0 -0
  103. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/_references/accessibility-checklist.md +0 -0
  104. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/_references/orchestration-patterns.md +0 -0
  105. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/_references/performance-checklist.md +0 -0
  106. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/_references/security-checklist.md +0 -0
  107. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/_references/testing-patterns.md +0 -0
  108. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/accessibility-review/SKILL.md +0 -0
  109. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/api-and-interface-design/SKILL.md +0 -0
  110. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/api-integration/SKILL.md +0 -0
  111. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/archive-sprint/SKILL.md +0 -0
  112. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/backlog/SKILL.md +0 -0
  113. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/backlog/item-template.md +0 -0
  114. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/browser-testing-with-devtools/SKILL.md +0 -0
  115. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/bug-hunt/SKILL.md +0 -0
  116. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/ci-cd-and-automation/SKILL.md +0 -0
  117. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/code-review-and-quality/SKILL.md +0 -0
  118. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/code-simplification/SKILL.md +0 -0
  119. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/component-design/SKILL.md +0 -0
  120. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/consolidate-learnings/SKILL.md +0 -0
  121. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/context-engineering/SKILL.md +0 -0
  122. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/debugging-and-error-recovery/SKILL.md +0 -0
  123. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/decision/SKILL.md +0 -0
  124. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/decision/adr-template.md +0 -0
  125. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/deprecation-and-migration/SKILL.md +0 -0
  126. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/documentation-and-adrs/SKILL.md +0 -0
  127. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/doubt-driven-development/SKILL.md +0 -0
  128. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/execute/SKILL.md +0 -0
  129. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/frontend-ui-engineering/SKILL.md +0 -0
  130. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/git-workflow-and-versioning/SKILL.md +0 -0
  131. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/idea-refine/SKILL.md +0 -0
  132. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/idea-refine/examples.md +0 -0
  133. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/idea-refine/frameworks.md +0 -0
  134. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/idea-refine/refinement-criteria.md +0 -0
  135. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/idea-refine/scripts/idea-refine.sh +0 -0
  136. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/incident-postmortem/SKILL.md +0 -0
  137. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/incremental-implementation/SKILL.md +0 -0
  138. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/interview-me/SKILL.md +0 -0
  139. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/load-testing/SKILL.md +0 -0
  140. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/manual-test/SKILL.md +0 -0
  141. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/over-engineering-review/SKILL.md +0 -0
  142. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/performance-optimization/SKILL.md +0 -0
  143. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/planning-and-task-breakdown/SKILL.md +0 -0
  144. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/playwright-verification/SKILL.md +0 -0
  145. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/refresh-docs/SKILL.md +0 -0
  146. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/scope/SKILL.md +0 -0
  147. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/scope/scope-template.md +0 -0
  148. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/sdlc/SKILL.md +0 -0
  149. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/security-and-hardening/SKILL.md +0 -0
  150. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/security-verification/SKILL.md +0 -0
  151. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/shipping-and-launch/SKILL.md +0 -0
  152. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/simplification-debt/SKILL.md +0 -0
  153. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/smoke-test/SKILL.md +0 -0
  154. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/source-driven-development/SKILL.md +0 -0
  155. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/spec-driven-development/SKILL.md +0 -0
  156. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/sprint/SKILL.md +0 -0
  157. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/sprint/sprint-template.md +0 -0
  158. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/task-tracker-sync/SKILL.md +0 -0
  159. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/test-driven-development/SKILL.md +0 -0
  160. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/test-plan-review/SKILL.md +0 -0
  161. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/threat-model/SKILL.md +0 -0
  162. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/triage/SKILL.md +0 -0
  163. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/ui-ux-design/SKILL.md +0 -0
  164. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/unit-test/SKILL.md +0 -0
  165. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/skills/using-agent-skills/SKILL.md +0 -0
  166. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/__main__.py +0 -0
  167. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/cli.py +0 -0
  168. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/render.py +0 -0
  169. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/scaffold.py +0 -0
  170. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/upgrader.py +0 -0
  171. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/src/claude_kit/validator.py +0 -0
  172. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/CLAUDE.md +0 -0
  173. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/CLAUDE.stack.md.tmpl +0 -0
  174. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/CONTINUITY.template.md +0 -0
  175. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/README.claude-sdlc.md.tmpl +0 -0
  176. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/MEMORY.md +0 -0
  177. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/api/.gitkeep +0 -0
  178. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/architecture/.gitkeep +0 -0
  179. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/debugging/.gitkeep +0 -0
  180. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/gotchas/.gitkeep +0 -0
  181. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/patterns/.gitkeep +0 -0
  182. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/agent-memory/performance/.gitkeep +0 -0
  183. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/adr.md +0 -0
  184. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/api-change-report.md +0 -0
  185. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/feature-spec.md +0 -0
  186. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/release-plan.md +0 -0
  187. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/runbook.md +0 -0
  188. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/security-review.md +0 -0
  189. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/artifacts/test-plan.md +0 -0
  190. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/README.md +0 -0
  191. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/data-workflow-agent.md +0 -0
  192. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/founder-prototype-agent.md +0 -0
  193. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/internal-tools-builder.md +0 -0
  194. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/pm-copilot.md +0 -0
  195. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/staff-pm-reviewer.md +0 -0
  196. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/agents/support-ticket-engineer.md +0 -0
  197. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/devops-and-release/README.md +0 -0
  198. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/devops-and-release/pack.yaml +0 -0
  199. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/engineering-core/README.md +0 -0
  200. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/engineering-core/pack.yaml +0 -0
  201. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/non-engineer-builder/README.md +0 -0
  202. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/non-engineer-builder/pack.yaml +0 -0
  203. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/onboarding-and-docs/README.md +0 -0
  204. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/onboarding-and-docs/pack.yaml +0 -0
  205. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/product-to-code/README.md +0 -0
  206. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/product-to-code/pack.yaml +0 -0
  207. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/quality-and-review/README.md +0 -0
  208. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/quality-and-review/pack.yaml +0 -0
  209. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/security-and-compliance/README.md +0 -0
  210. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/packs/security-and-compliance/pack.yaml +0 -0
  211. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/ai-working-agreement.md +0 -0
  212. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/ambiguity-resolution.md +0 -0
  213. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/branch-and-pr-policy.md +0 -0
  214. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/compliance-policy.md +0 -0
  215. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/non-engineer-safe-coding.md +0 -0
  216. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/pii-policy.md +0 -0
  217. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/production-data-policy.md +0 -0
  218. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/prompt-to-task-conversion.md +0 -0
  219. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/prototype-boundaries.md +0 -0
  220. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/rules/secrets-policy.md +0 -0
  221. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/customer-issue-to-fix/SKILL.md +0 -0
  222. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/feature-from-idea/SKILL.md +0 -0
  223. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/prompt-to-safe-task/SKILL.md +0 -0
  224. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/prototype-to-production/SKILL.md +0 -0
  225. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/repo-onboarding/SKILL.md +0 -0
  226. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/review-scope/SKILL.md +0 -0
  227. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/review-sprint/SKILL.md +0 -0
  228. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/review-sprint-plan/SKILL.md +0 -0
  229. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/org/skills/review-ux-flow/SKILL.md +0 -0
  230. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/backend/go/net-http/rules/go-patterns.md +0 -0
  231. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/backend/python/fastapi/rules/fastapi-patterns.md +0 -0
  232. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/mongodb/agents/migration-specialist.md +0 -0
  233. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/mongodb/agents/mongodb-specialist.md +0 -0
  234. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/mongodb/rules/mongodb-patterns.md +0 -0
  235. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/postgres/agents/db-performance-reviewer.md +0 -0
  236. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/postgres/agents/migration-specialist.md +0 -0
  237. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/postgres/agents/postgres-specialist.md +0 -0
  238. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/postgres/rules/database-performance.md +0 -0
  239. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/db/postgres/rules/postgres-patterns.md +0 -0
  240. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/frontend/react/rules/design-system-compliance.md +0 -0
  241. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/frontend/react/rules/mobile-design-guidelines.md +0 -0
  242. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/frontend/react/rules/react-patterns.md +0 -0
  243. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/frontend/react/rules/ui-design-system.md +0 -0
  244. {claude_code_kit-0.16.0 → claude_code_kit-0.17.1}/templates/stacks/frontend/react/rules/ux-patterns.md +0 -0
@@ -10,7 +10,7 @@
10
10
  "name": "claude-kit",
11
11
  "source": "./",
12
12
  "description": "Cookiecutter-style scaffolder for an autonomous Claude Code SDLC config (no app code, no Docker): install CLAUDE.md + .claude/ (rules, the profile's agents/skills, hooks, artifact templates) + optional .mcp.json, then run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates, working memory, and a self-improving learnings loop.",
13
- "version": "0.16.0",
13
+ "version": "0.17.1",
14
14
  "license": "MIT",
15
15
  "keywords": ["sdlc", "agents", "orchestration", "quality-gates", "workflow", "scaffold", "cookiecutter"]
16
16
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-kit",
3
- "version": "0.16.0",
3
+ "version": "0.17.1",
4
4
  "description": "Cookiecutter-style scaffolder for an autonomous Claude Code SDLC config (no app code, no Docker). `claude-kit init` asks ordered questions and installs CLAUDE.md + .claude/ (rules, the profile's agents/skills, hooks, artifact templates) + optional .mcp.json; run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates with working memory and a self-improving learnings loop.",
5
5
  "author": {
6
6
  "name": "Arjunsingh Yadav",
@@ -4,6 +4,96 @@ All notable changes to claude-kit are documented here. The format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/), and the project uses
5
5
  [semantic versioning](https://semver.org/).
6
6
 
7
+ ## [0.17.1] — 2026-06-17
8
+
9
+ **Fix: the plugin's hooks now load.** `.claude-plugin/plugin.json` points its `hooks` field at a file
10
+ (`./hooks/hooks.json`), and Claude Code requires a *referenced* hooks file to be shaped like a
11
+ settings fragment — a top-level `hooks` record mapping events to matcher groups. The kit had shipped
12
+ that file as a **flat** event map since 0.7.0, so the plugin loader rejected it (`invalid_type … path:
13
+ ["hooks"] … expected record, received undefined`) and **none of the plugin's hooks loaded** (the
14
+ destructive-command guards, context loaders, capture, and learning-detection). This affected only the
15
+ **plugin** channel; the pip CLI was always fine because it builds `.claude/settings.json` from
16
+ `HOOK_REGISTRY` (`src/claude_kit/hooks.py`), a separate source. Run `/reload-plugins` then `/doctor`
17
+ after upgrading to confirm the error is gone.
18
+
19
+ ### Fixed
20
+ - **`hooks/hooks.json`** is now wrapped under a top-level `hooks` key (inner content otherwise
21
+ byte-identical — every matcher group and prompt preserved). This matches every other Claude Code
22
+ plugin that references a hooks file (superpowers, hookify, vercel, …).
23
+
24
+ ### Added
25
+ - **`tests/test_plugin.py`** — a regression guard asserting the plugin hooks file is wrapped and
26
+ well-formed (known events, non-empty `hooks` lists, `command`/`prompt` entry types), so a flat file
27
+ can't ship again. Suite now 99 passing.
28
+
29
+ ### Not adopted (deliberately)
30
+ - **Inlining the hooks into `plugin.json`** (the other valid shape) — kept the external file because the
31
+ `UserPromptSubmit` routing and learning-detection prompts are long and read far better in a dedicated
32
+ file than inlined in the manifest.
33
+
34
+ ## [0.17.0] — 2026-06-17
35
+
36
+ **Make agent-side learning capture an init-time, cost-aware choice — and make it actually remember.**
37
+ The kit can now reflect on what *Claude itself* changed during a session and record durable learnings
38
+ into `.claude/agent-memory/` (recalled next session by `load-learnings.sh`), via a fully-detached
39
+ background `claude` job that **never blocks your session or next prompt**. How often that runs is the
40
+ token-cost knob, so it is now a question at `claude-kit init` (`capture_mode`) rather than a fixed
41
+ behavior — "everyone has their own way to memorize." Four modes (see `catalog/capture.yaml`):
42
+
43
+ - **`off`** — no auto-capture; record with `/remember` when you choose (zero background cost).
44
+ - **`session-end`** — one background capture when a session ends (~1/session). Lost on abrupt close.
45
+ - **`session-end-catchup`** *(default, recommended)* — adds a SessionStart **catch-up** that, on the
46
+ next launch, captures any prior session that ended *without* being captured — i.e. one closed
47
+ abruptly with Ctrl-C / a hard kill / a closed terminal, where `SessionEnd` never ran. ~1/session,
48
+ robust to abrupt close.
49
+ - **`per-task`** — capture after each file-editing task (Stop), scoped to that task's edits via a
50
+ line-count sentinel. Most resilient, highest token cost.
51
+
52
+ One script (`hooks/scripts/capture-learnings.sh`) backs all of it, dispatched by an argument
53
+ (`end`/`stop`/`catchup`); a per-transcript "done" marker lets a clean exit tell catch-up "already
54
+ handled," so a session is never captured twice.
55
+
56
+ **Two correctness fixes folded in (the previous SessionEnd capture looked done but did not actually
57
+ remember):**
58
+ - **Recall now works.** The background agent wrote the learning file but could not index it in
59
+ `MEMORY.md`, which is the *only* file `load-learnings.sh` reads — so learnings were invisible to
60
+ future sessions. Root cause: `.claude/` is a Claude-Code-protected path that `--permission-mode
61
+ acceptEdits` cannot write from a detached, no-TTY background agent. The capture child now runs with
62
+ `--permission-mode bypassPermissions` (safe here: file tools only, no shell, prompt-confined to
63
+ `.claude/agent-memory/`), and the prompt makes indexing in `MEMORY.md` mandatory + self-verified.
64
+ Round-trip (write → index → recall) verified end-to-end.
65
+ - **`load-learnings.sh` zero-entry crash** — `grep -c … || echo 0` emitted `"0\n0"` → `integer
66
+ expected`; fixed with `|| true` + `${ENTRIES:-0}`.
67
+
68
+ Conservative + safe by construction (golden rule #1 — stack-agnostic, fail-safe): every mode degrades
69
+ to a silent no-op without `jq`/`claude`/a transcript or when the project has no `agent-memory/`, and
70
+ only spawns when there were actual file edits. The job inherits the user's logged-in auth, runs
71
+ hook-free (`--settings '{"disableAllHooks":true}'`); recursion is broken by `CLAUDE_KIT_NO_AUTOCAPTURE=1`
72
+ (passed to the child), which doubles as the user opt-out. `CLAUDE_KIT_CAPTURE_MODEL` optionally pins a
73
+ model (default: inherit the user's).
74
+
75
+ ### Added
76
+ - **`capture_mode` init choice** — new `catalog/capture.yaml` (the four modes → hook sets, default
77
+ `session-end-catchup`); a `Selection.capture_mode` field; an interactive prompt (profile-aware
78
+ default: **lean → off**, otherwise the recommended catch-up); `--config` / `--defaults` support;
79
+ `catalog.capture_mode_options()` + a branch-free `catalog._apply_capture_mode()` that swaps the
80
+ capture hooks for the chosen mode (golden rule #6 — pure data + set op).
81
+ - **Three capture triggers** in `HOOK_REGISTRY`, all backed by the one `capture-learnings.sh`:
82
+ `capture-learnings` (SessionEnd, `end`), `capture-learnings-catchup` (SessionStart, `catchup`),
83
+ `capture-learnings-stop` (Stop, `stop`). The recommended default is wired into the plugin
84
+ (`hooks/hooks.json`) and the no-pip fallback (`templates/settings.json`).
85
+
86
+ ### Changed
87
+ - `catalog/profiles.yaml` — the standard profile no longer hard-lists `capture-learnings`; capture is
88
+ installed by `capture_mode`, not profile membership (`load-learnings` recall stays profile-driven).
89
+ - **Docs** — `README.md`, `rules/agent-memory.md`, `docs/agentic-patterns.md` (Ch. 9),
90
+ `docs/coverage-audit.md`, `skills/remember/SKILL.md`, and `CONTRIBUTING.md` describe the configurable,
91
+ abrupt-close-robust capture.
92
+
93
+ ### Fixed
94
+ - Background capture now reliably **indexes** learnings in `MEMORY.md` (was write-only → unrecalled).
95
+ - `load-learnings.sh` no longer errors on a zero-entry index.
96
+
7
97
  ## [0.16.0] — 2026-06-16
8
98
 
9
99
  **Adopt a full React/Tailwind/Radix design-system rule set as always-on React overlay rules.** Three
@@ -39,7 +39,10 @@ locally, and how to release.
39
39
  - **Rule** → add `rules/<name>.md`; cross-reference siblings as `.claude/rules/<name>.md`.
40
40
  - **Hook** → add a script to `hooks/scripts/`, register it in the `HOOK_REGISTRY` in
41
41
  `src/claude_kit/hooks.py`, wire it in `hooks/hooks.json` (plugin), and list its id in the relevant
42
- profile's `hooks:`.
42
+ profile's `hooks:`. (Exception: the agent-side capture hooks `capture-learnings[-catchup|-stop]` are
43
+ **not** profile-listed — they're installed by the init-time `capture_mode` choice via
44
+ `catalog/capture.yaml` + `catalog._apply_capture_mode`. One script, three triggers, dispatched by an
45
+ arg.)
43
46
  - **Stack** (framework / database) → a **data change**: add an entry to `catalog/stacks.yaml`
44
47
  (`label`, `overlay_rules`, optional `overlay_agents`, `skills`, `stack_dir`, `commands`) and create
45
48
  `templates/stacks/<stack_dir>/rules/<name>.md` (+ `agents/` for a database). Mark not-yet-ready
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-code-kit
3
- Version: 0.16.0
3
+ Version: 0.17.1
4
4
  Summary: Cookiecutter-style scaffolder for an autonomous Claude Code SDLC configuration (no app code, no Docker). Asks ordered questions and installs CLAUDE.md + .claude/ (rules, the chosen profile's agents/skills, hooks, artifact templates) + optional .mcp.json; run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates, working memory, and a self-improving learnings loop.
5
5
  Project-URL: Homepage, https://github.com/ajyadav013/claude-kit
6
6
  Project-URL: Repository, https://github.com/ajyadav013/claude-kit
@@ -41,7 +41,7 @@ with a quality gate between every phase. **No application code. No Docker. Confi
41
41
  [![CI](https://github.com/ajyadav013/claude-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/ajyadav013/claude-kit/actions/workflows/ci.yml)
42
42
  [![Changelog](https://img.shields.io/badge/changelog-md-blue.svg)](CHANGELOG.md)
43
43
 
44
- 🚀 [Quick start](#quick-start) · 🧭 [How it works](#how-it-works) · 🔁 [The pipeline](#the-pipeline) · 🧪 [Example](examples/) · 🌱 [What we adopted](#influences--what-we-adopted) · 🤖 [Agents](#the-agents) · 🧩 [Catalog](#catalog--extensibility) · 🛠️ [CLI](#cli-reference) · 📖 [Agent guide](docs/agents.md)
44
+ ✨ [Features](#features) · 🚀 [Quick start](#quick-start) · 🧭 [How it works](#how-it-works) · 🔁 [The pipeline](#the-pipeline) · 🧪 [Example](examples/) · 🌱 [What we adopted](#influences--what-we-adopted) · 🤖 [Agents](#the-agents) · 🧩 [Catalog](#catalog--extensibility) · 🛠️ [CLI](#cli-reference) · 📖 [Agent guide](docs/agents.md)
45
45
 
46
46
  </div>
47
47
 
@@ -49,33 +49,45 @@ with a quality gate between every phase. **No application code. No Docker. Confi
49
49
 
50
50
  ## What is this?
51
51
 
52
- claude-kit installs a **complete software-delivery lifecycle** into Claude Code. Instead of one
53
- assistant doing everything in a single pass, your work flows through a pipeline of focused agents —
54
- a spec writer, a story planner, reviewers, a developer, code reviewers, testers, security scanners,
55
- and a PR raiser — coordinated by an **Orchestrator** that runs independent work in parallel and
56
- refuses to advance a phase until its **quality gate** passes. You drive it all with one command:
52
+ Claude Code is brilliant at single tasks — but a real change is never just one task. It's a spec, a
53
+ plan, code, review, tests, a security pass, a PR. **claude-kit turns that whole lifecycle into a
54
+ pipeline of focused agents and installs it into Claude Code as configuration.**
55
+
56
+ Instead of one assistant doing everything in a single pass, your request flows through specialists a
57
+ spec writer, a story planner, a developer, independent reviewers, testers, security scanners, a PR
58
+ raiser — coordinated by an **Orchestrator** that runs independent work in parallel and **refuses to
59
+ advance until each phase's quality gate passes**. You drive it all with one command:
57
60
  **`/sdlc <your task>`**.
58
61
 
59
- **At a glance:**
60
-
61
- - 🧱 **Stack-agnostic** — the pipeline assumes no language or framework. Pick a stack at `init` and it
62
- installs matching overlay rules (React · FastAPI · Go/net-http · PostgreSQL · MongoDB) and your exact
63
- lint/test/build commands. Picking React also installs a full design-system rule set (design tokens,
64
- UX patterns, mobile/Capacitor guidelines) that the UI skills and `ui-designer` agent read. It never
65
- writes your app code and never needs Docker.
66
- - 🎚️ **Dial the rigor with profiles** — `lean ⊊ standard ⊊ enterprise` decide how many agents, skills,
67
- hooks, and gates are active, from "fast track" to "full audit".
68
- - 👥 **Scope to your team** — `individual` / `team` (default) / `organization`. Org scope adds a
69
- vibe-coding layer so PMs, designers, QA, support, and founders can drive work safely too.
70
- - 🧠 **Remembers across sessions** — working memory (`CONTINUITY.md`) survives context compaction, and a
71
- learnings loop (`agent-memory/`) means the same mistake isn't made twice.
72
- - 📦 **Two channels, one source** — a first-class Claude Code **plugin** *and* a **pip** scaffolder.
62
+ It ships **no application code and needs no Docker** — only the rules, agents, skills, and gates that
63
+ govern *how* the work gets done. Choose your stack, rigor, and team scope at `init`; everything else
64
+ adapts.
73
65
 
74
66
  > Inspired by the autonomous-SDLC idea, rebuilt from the ground up **for Claude Code**, and kept small
75
67
  > by a **reuse-first** policy — see [what we adopted](#influences--what-we-adopted) and from where.
76
68
 
77
69
  ---
78
70
 
71
+ ## Features
72
+
73
+ The whole product at a glance — one line each. Expand **[Feature details](#feature-details)** (below
74
+ Quick start) for the full breakdown of any row.
75
+
76
+ | Area | What you get |
77
+ |------|--------------|
78
+ | 🔁 **Pipeline & quality gates** | Gate-enforced progression (zero open Critical/High/Medium to advance), per-profile gate sets, a fast-track for small changes, and an anti-sycophancy `devils-advocate` pass |
79
+ | 🤖 **Agent roster** | **28** tiered agents + per-database overlays + **6** org personas, led by an Orchestrator that never writes code |
80
+ | 🔍 **Self-verification & review** | RARV green-Verify (real commands, not imagined), blind parallel review, and read-only risk classification |
81
+ | 📐 **Rules & skills** | **23** stack-agnostic core rules (incl. 8 agent-operation rules) + **51** context-activated skills |
82
+ | 🧱 **Stacks & overlays** | Stack-agnostic core + **10** overlay rule sets (React · FastAPI · Go · Postgres · Mongo) wired to your exact commands, incl. a full React design system |
83
+ | 🎚️ **Profiles, scopes & org** | **3** rigor profiles · **3** scopes · **5** autonomy levels · **7** org packs + **10** policy rules |
84
+ | 🧠 **Memory & learning** | Working memory across context compaction + a cost-aware learnings loop (`capture_mode`) so the same mistake isn't repeated |
85
+ | 🛠️ **Hooks & guards** | **16** event hooks — blocking safety guards vs. advisory warnings — that no-op gracefully without `jq` |
86
+ | 📦 **Distribution & lifecycle** | Plugin **and** pip from one source, **9** ready MCP fragments, and edit-preserving `upgrade` |
87
+ | ♻️ **Reuse-first by design** | Adopt-only-the-new reviews, opt-in LLM/AI security (OWASP LLM Top 10), a worked example + self-test matrix |
88
+
89
+ ---
90
+
79
91
  ## Quick start
80
92
 
81
93
  <details open>
@@ -167,6 +179,166 @@ README.claude-sdlc.md
167
179
 
168
180
  ---
169
181
 
182
+ ## Feature details
183
+
184
+ Each area from the [Features](#features) table, expanded — the README stays short; open only what you
185
+ need.
186
+
187
+ <details>
188
+ <summary><b>🔁 Pipeline & quality gates</b></summary>
189
+
190
+ <br>
191
+
192
+ - **Gate-enforced progression** — every phase ends in a quality gate that passes *only* with zero open
193
+ Critical/High/Medium findings; no silent advancement (see [the pipeline](#the-pipeline)).
194
+ - **Profile-scoped gates** — `lean` runs `code-review · build-green`; `standard` adds spec / EM /
195
+ coverage / security / contract; `enterprise` adds `pipeline-green · observability-ready · acceptance`.
196
+ - **Fast-track mode** — changes under 5 files collapse to Developer → Code Reviewer → Tester → PR,
197
+ skipping the heavyweight stages.
198
+ - **Anti-sycophancy guard** — a *unanimous* PASS is treated as suspicious and triggers an adversarial
199
+ `devils-advocate` pass before the gate may close.
200
+
201
+ </details>
202
+
203
+ <details>
204
+ <summary><b>🤖 The agent roster</b></summary>
205
+
206
+ <br>
207
+
208
+ - **28 specialized agents** in [`agents/`](agents/), each tagged with a `tier`
209
+ (orchestrator · stage-lead · specialist · review) and installed per profile.
210
+ - **An Orchestrator that never writes code** — it decomposes work, runs independent lanes in parallel,
211
+ and blocks each phase on its gate.
212
+ - **Database overlay agents** layer in per database — PostgreSQL adds
213
+ `postgres-specialist · migration-specialist · db-performance-reviewer`; MongoDB adds
214
+ `mongodb-specialist · migration-specialist`.
215
+ - **6 organization personas** (`pm-copilot` · `founder-prototype-agent` · `support-ticket-engineer` ·
216
+ `data-workflow-agent` · `internal-tools-builder` · `staff-pm-reviewer`) unlock in org scope so
217
+ non-engineers can drive work safely.
218
+
219
+ </details>
220
+
221
+ <details>
222
+ <summary><b>🔍 Self-verification & review</b></summary>
223
+
224
+ <br>
225
+
226
+ - **RARV self-check** — every agent runs Reason → Act → Reflect → Verify and must show a *green Verify*
227
+ (real commands run, not imagined) before handing off.
228
+ - **Blind parallel review** — independent reviewers judge a work stream separately, and a
229
+ `merge-reviewer` reconciles parallel lanes at every join point.
230
+ - **Risk-classified work** — a read-only `risk-classifier` labels each task low/medium/high/restricted
231
+ and names the gates it requires (enterprise + org).
232
+
233
+ </details>
234
+
235
+ <details>
236
+ <summary><b>📐 Rules & skills</b></summary>
237
+
238
+ <br>
239
+
240
+ - **23 stack-agnostic core rules** in [`rules/`](rules/) — `mandatory-workflow`, `quality-gates`,
241
+ `rarv-cycle`, `continuity`, plus eight agent-operation rules and `autonomy-levels` +
242
+ `risk-classification` (see [`docs/agentic-patterns.md`](docs/agentic-patterns.md)).
243
+ - **51 on-demand skills** in [`skills/`](skills/) — spec-driven dev, planning, TDD, debugging, code
244
+ review, threat modeling, and more — activated by context and led by the `sdlc` entrypoint.
245
+ - **Profile-subset install** — each profile installs a strict subset of agents, skills, hooks, and
246
+ rules (`lean ⊂ standard ⊂ enterprise`), from fast track to full audit.
247
+
248
+ </details>
249
+
250
+ <details>
251
+ <summary><b>🧱 Stacks & overlays</b></summary>
252
+
253
+ <br>
254
+
255
+ - **Stack-agnostic core** — the pipeline assumes no language or framework; it never writes your app
256
+ code and never needs Docker.
257
+ - **10 stack overlay rules** layer matching guidance on top — React, FastAPI, Go/net-http, PostgreSQL,
258
+ MongoDB — wired to your exact lint/test/build commands.
259
+ - **A full React design system** — picking React installs design tokens, UX patterns, and
260
+ mobile/Capacitor guidelines that the UI skills and `ui-designer` agent read.
261
+
262
+ </details>
263
+
264
+ <details>
265
+ <summary><b>🎚️ Profiles, scopes & the org layer</b></summary>
266
+
267
+ <br>
268
+
269
+ - **3 rigor profiles** — `lean ⊊ standard ⊊ enterprise` decide how many agents, skills, hooks, and
270
+ gates are active.
271
+ - **3 usage scopes** — `individual` / `team` (default) / `organization`, with a vibe-coding layer in
272
+ org scope.
273
+ - **5 autonomy levels** — from Advisory (plan & review only) through Autonomous (PR) to
274
+ Enterprise-controlled, each adding deterministic guardrail hooks.
275
+ - **7 capability packs + 10 org policy rules** under [`templates/org/`](templates/org/) (secrets, PII,
276
+ compliance, production-data) install only in organization scope (see
277
+ [`docs/org-capabilities.md`](docs/org-capabilities.md)).
278
+
279
+ </details>
280
+
281
+ <details>
282
+ <summary><b>🧠 Memory & continuous learning</b></summary>
283
+
284
+ <br>
285
+
286
+ - **Working memory across sessions** — `CONTINUITY.md` survives context compaction so the pipeline
287
+ never loses its place.
288
+ - **A learnings loop** — `agent-memory/` captures fixes from your corrections *and*, in a non-blocking
289
+ background job, from what Claude changed, so the same mistake isn't made twice.
290
+ - **Cost-aware capture** — how aggressively learnings are captured (`capture_mode`: off · on clean
291
+ exit · + catch-up · per task) is a choice at `init`.
292
+
293
+ </details>
294
+
295
+ <details>
296
+ <summary><b>🛠️ Hooks & deterministic guards</b></summary>
297
+
298
+ <br>
299
+
300
+ - **16 event hook scripts** in [`hooks/`](hooks/) enforce the pipeline outside the model —
301
+ `guard-secrets`, `guard-destructive-git`, `lint-fix`, `type-check`, and `validate-settings` run
302
+ deterministically.
303
+ - **Advisory, never-blocking warnings** — `warn-llm-io`, `warn-large-edits`, `warn-missing-tests`, and
304
+ `warn-sensitive-files` flag risk without halting work.
305
+ - **Graceful degradation** — hooks need a POSIX shell + `jq` and silently no-op when absent, so the
306
+ kit still functions everywhere.
307
+
308
+ </details>
309
+
310
+ <details>
311
+ <summary><b>📦 Distribution & lifecycle</b></summary>
312
+
313
+ <br>
314
+
315
+ - **Two channels, one source** — a first-class Claude Code **plugin** *and* a `pip` scaffolder
316
+ (`claude-kit` / `ckit` / `claude-sdlc`) generate identical config.
317
+ - **Catalog-driven extensibility** — adding a stack, framework, database, profile, MCP server, or org
318
+ pack is a [`catalog/`](catalog/) YAML edit, never a code change; 9 MCP server fragments ship ready.
319
+ - **Safe, edit-preserving upgrades** — `upgrade` refreshes kit/overlay files via per-file `owner` +
320
+ checksum, never clobbers your edits, backs up changes, and restores deleted files (`diff` previews
321
+ first).
322
+
323
+ </details>
324
+
325
+ <details>
326
+ <summary><b>♻️ Reuse-first by design</b></summary>
327
+
328
+ <br>
329
+
330
+ - **Adopt only the genuinely-new** — each external review fetches the real source, adversarially maps
331
+ it against existing files, and ships only the non-duplicative gaps (see
332
+ [what we adopted](#influences--what-we-adopted)).
333
+ - **Opt-in LLM/AI security** — `security-and-hardening` covers the OWASP LLM Top 10 (input/output
334
+ guardrails, PII vault) as bypassable guidance, distinct from the mandatory appsec gate.
335
+ - **A worked example + self-test matrix** — [`examples/`](examples/) shows an end-to-end run, and a
336
+ profile×stack×scope test matrix backs the stack-agnostic claim.
337
+
338
+ </details>
339
+
340
+ ---
341
+
170
342
  ## How it works
171
343
 
172
344
  ```mermaid
@@ -302,7 +474,7 @@ It is **not** a runtime, an orchestration engine, or a code library. That framin
302
474
  | **[wshobson/agents](https://github.com/wshobson/agents)** & similar agent collections | Large libraries of individual subagent prompts you pick from | claude-kit ships a **smaller, opinionated set wired into a sequenced pipeline with owned quality gates** — agents aren't a menu, they're stages that hand off and block on each other. Adopt-by-reuse, not by accumulation. |
303
475
  | **[GitHub spec-kit](https://github.com/github/spec-kit)** | A spec-driven workflow (constitution → spec → tasks → analyze) | claude-kit **absorbed spec-kit's coverage-gate idea** (the `story-planner` 1f gate + `task-tracker-sync`) into a **broader** lifecycle that also covers review, security, build, test, release, and observability gates. Complementary, wider scope. |
304
476
  | **claude-flow / multi-agent runtimes** | Runtime orchestrators that *execute* swarms of agents | claude-kit produces **portable configuration**, not a running process — the orchestration is described in rules the host (Claude Code) executes. No daemon, no lock-in, no app code. |
305
- | **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | claude-kit is a **catalog-driven generator**: it resolves your stack/profile/scope into the right subset of 23 rules, ~28 agents, ~52 skills, gates, and hooks, and keeps them **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
477
+ | **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | claude-kit is a **catalog-driven generator**: it resolves your stack/profile/scope into the right subset of 23 rules, 28 agents, 51 skills, gates, and hooks, and keeps them **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
306
478
 
307
479
  **Choose claude-kit when** you want a consistent, reviewable, **gate-enforced** autonomous-SDLC setup
308
480
  that's the same across every repo and stack, installs in seconds, ships nothing you have to run, and
@@ -349,7 +521,7 @@ that's the same across every repo and stack, installs in seconds, ships nothing
349
521
  | `incident-responder` | Production-incident triage, mitigation, and postmortem (enterprise scope) |
350
522
  | `pr-raiser` | Final checks, commit hygiene, and PR creation |
351
523
  | **DB overlays** | installed for the selected database — PostgreSQL → `postgres-specialist` · `migration-specialist` · `db-performance-reviewer`; MongoDB → `mongodb-specialist` · `migration-specialist` |
352
- | **Org personas** | `pm-copilot` · `founder-prototype-agent` · `support-ticket-engineer` · `data-workflow-agent` · `internal-tools-builder` (organization scope only) |
524
+ | **Org personas** | `pm-copilot` · `founder-prototype-agent` · `support-ticket-engineer` · `data-workflow-agent` · `internal-tools-builder` · `staff-pm-reviewer` (organization scope only) |
353
525
 
354
526
  </details>
355
527