claude-code-kit 0.58.0__tar.gz → 0.58.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 (598) hide show
  1. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/.claude-plugin/marketplace.json +1 -1
  2. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/.claude-plugin/plugin.json +1 -1
  3. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/CHANGELOG.md +461 -1
  4. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/PKG-INFO +61 -21
  5. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/README.md +60 -20
  6. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/auditor.md +6 -2
  7. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/dependency-scanner.md +9 -5
  8. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/developer.md +10 -16
  9. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/devils-advocate.md +1 -1
  10. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/e2e-tester.md +12 -12
  11. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/em-reviewer.md +1 -1
  12. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/incident-responder.md +2 -3
  13. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/merge-reviewer.md +1 -1
  14. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/orchestrator.md +108 -34
  15. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/owasp-reviewer.md +2 -2
  16. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/policy-validator.md +2 -2
  17. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/sdlc-code-reviewer.md +1 -1
  18. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/secret-scanner.md +2 -2
  19. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/security-reviewer.md +4 -4
  20. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/senior-backend-dev.md +19 -3
  21. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/senior-frontend-dev.md +15 -0
  22. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/catalog/mcp.yaml +3 -3
  23. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/catalog/profiles.yaml +3 -6
  24. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/catalog/stacks.yaml +19 -3
  25. claude_code_kit-0.58.1/commands/init.md +98 -0
  26. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/agents.md +26 -0
  27. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/architecture.md +3 -3
  28. claude_code_kit-0.58.1/docs/autonomous-operation.md +194 -0
  29. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/cursor-export.md +7 -3
  30. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/road-to-1.0.md +1 -1
  31. claude_code_kit-0.58.1/docs/rules-context-budget.md +177 -0
  32. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/skill-audit.md +38 -4
  33. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/guard-destructive-git.sh +5 -1
  34. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/guard-kubectl-delete.sh +3 -1
  35. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/guard-push-main.sh +6 -1
  36. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/guard-secrets.sh +6 -2
  37. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/lint-fix.sh +21 -4
  38. claude_code_kit-0.58.1/hooks/scripts/type-check.sh +44 -0
  39. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/pyproject.toml +1 -1
  40. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/mandatory-workflow.md +5 -0
  41. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/model-tiers.md +35 -4
  42. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/wave-orchestration.md +31 -0
  43. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/check_docs_consistency.py +18 -1
  44. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/init.sh +8 -0
  45. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/SKILL.md +14 -286
  46. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-compose/SKILL.md +12 -365
  47. claude_code_kit-0.58.1/skills/docker-compose/references/compose-skeletons.md +370 -0
  48. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/SKILL.md +10 -108
  49. claude_code_kit-0.58.1/skills/grafana-dashboards-and-alerts/references/red-dashboard-skeleton.md +114 -0
  50. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/remember/SKILL.md +1 -1
  51. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/sdlc/SKILL.md +12 -6
  52. claude_code_kit-0.58.1/skills/security-and-hardening/SKILL.md +286 -0
  53. claude_code_kit-0.58.1/skills/security-and-hardening/references/input-validation-and-uploads.md +112 -0
  54. claude_code_kit-0.58.1/skills/security-and-hardening/references/llm-guardrails.md +45 -0
  55. claude_code_kit-0.58.1/skills/security-and-hardening/references/owasp-top10-prevention.md +262 -0
  56. claude_code_kit-0.58.1/skills/security-and-hardening/references/supply-chain-and-dependencies.md +103 -0
  57. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/__init__.py +1 -1
  58. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/catalog.py +5 -0
  59. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/cli.py +28 -12
  60. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/export.py +67 -13
  61. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/hooks.py +15 -0
  62. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/prompts.py +18 -8
  63. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/scaffold.py +75 -6
  64. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/upgrader.py +37 -12
  65. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/CLAUDE.stack.md.tmpl +26 -14
  66. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/README.claude-sdlc.md.tmpl +8 -2
  67. claude_code_kit-0.58.1/templates/scripts/sdlc-loop.sh +71 -0
  68. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/backend/go/net-http/rules/go-patterns.md +5 -0
  69. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/backend/python/fastapi/rules/fastapi-patterns.md +5 -0
  70. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/postgres/agents/db-performance-reviewer.md +2 -2
  71. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/postgres/rules/database-performance.md +8 -0
  72. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/postgres/rules/postgres-patterns.md +8 -0
  73. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/design-system-compliance.md +8 -0
  74. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/mobile-design-guidelines.md +8 -0
  75. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/react-patterns.md +8 -0
  76. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/ui-components.md +8 -0
  77. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/ui-design-system.md +8 -0
  78. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/ui-layout-and-motion.md +8 -0
  79. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/ux-dashboard-patterns.md +8 -0
  80. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/frontend/react/rules/ux-patterns.md +8 -0
  81. claude_code_kit-0.58.0/commands/init.md +0 -63
  82. claude_code_kit-0.58.0/hooks/scripts/type-check.sh +0 -23
  83. claude_code_kit-0.58.0/skills/security-and-hardening/SKILL.md +0 -718
  84. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/.gitignore +0 -0
  85. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/CLAUDE.md +0 -0
  86. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/CONTRIBUTING.md +0 -0
  87. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/LICENSE +0 -0
  88. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/acceptance-reviewer.md +0 -0
  89. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/devops-engineer.md +0 -0
  90. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/observability-engineer.md +0 -0
  91. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/pr-raiser.md +0 -0
  92. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/risk-classifier.md +0 -0
  93. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/senior-tester.md +0 -0
  94. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/spec-doc-writer.md +0 -0
  95. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/story-planner.md +0 -0
  96. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/technical-architect.md +0 -0
  97. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/tester.md +0 -0
  98. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/ui-designer.md +0 -0
  99. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/agents/unit-tester.md +0 -0
  100. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/catalog/capture.yaml +0 -0
  101. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/catalog/org.yaml +0 -0
  102. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/commands/abort.md +0 -0
  103. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/commands/sdlc.md +0 -0
  104. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/commands/status.md +0 -0
  105. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/KNOWN_LIMITATIONS.md +0 -0
  106. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/RELEASE-POLICY.md +0 -0
  107. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/agentic-patterns.md +0 -0
  108. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/capture-a-real-run.md +0 -0
  109. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/coverage-audit.md +0 -0
  110. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/eval-harness.md +0 -0
  111. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/awesome-prs.md +0 -0
  112. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/demo-script.md +0 -0
  113. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/directory-submission.md +0 -0
  114. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/github-about.md +0 -0
  115. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/posts.md +0 -0
  116. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/launch/seed-issues.md +0 -0
  117. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/org-capabilities.md +0 -0
  118. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/stack-skills/GAP-ANALYSIS.md +0 -0
  119. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/stack-skills/README.md +0 -0
  120. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/docs/stack-skills/REPO-INVENTORY.md +0 -0
  121. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/hooks.json +0 -0
  122. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/audit-log.sh +0 -0
  123. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/capture-learnings.sh +0 -0
  124. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/load-autonomy.sh +0 -0
  125. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/load-continuity.sh +0 -0
  126. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/load-learnings.sh +0 -0
  127. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/validate-frontmatter.sh +0 -0
  128. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/validate-settings.sh +0 -0
  129. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/warn-large-edits.sh +0 -0
  130. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/warn-llm-io.sh +0 -0
  131. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/warn-missing-tests.sh +0 -0
  132. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/warn-sensitive-files.sh +0 -0
  133. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/hooks/scripts/warn-shared-modules.sh +0 -0
  134. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/agent-guardrails.md +0 -0
  135. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/agent-memory.md +0 -0
  136. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/agent-resilience.md +0 -0
  137. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/autonomy-levels.md +0 -0
  138. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/code-organization.md +0 -0
  139. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/continuity.md +0 -0
  140. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/design-patterns.md +0 -0
  141. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/devops-observability.md +0 -0
  142. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/documentation.md +0 -0
  143. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/evals.md +0 -0
  144. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/frontend-best-practices.md +0 -0
  145. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/goal-setting-and-monitoring.md +0 -0
  146. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/human-in-the-loop.md +0 -0
  147. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/linting-and-formatting.md +0 -0
  148. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/quality-gates.md +0 -0
  149. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/rarv-cycle.md +0 -0
  150. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/reasoning-techniques.md +0 -0
  151. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/resilience-engineering.md +0 -0
  152. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/responsive-and-accessibility.md +0 -0
  153. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/risk-classification.md +0 -0
  154. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/testing.md +0 -0
  155. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/rules/tool-design.md +0 -0
  156. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/README.md +0 -0
  157. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/catalog-capture.schema.json +0 -0
  158. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/catalog-mcp.schema.json +0 -0
  159. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/catalog-org.schema.json +0 -0
  160. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/catalog-profiles.schema.json +0 -0
  161. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/catalog-stacks.schema.json +0 -0
  162. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/mcp-lock.schema.json +0 -0
  163. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/org-pack.schema.json +0 -0
  164. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/schemas/pipeline-snapshot.schema.json +0 -0
  165. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/backfill-releases.sh +0 -0
  166. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/capture-sdlc-run.sh +0 -0
  167. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/check_mcp_pins.py +0 -0
  168. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/check_rule_sizes.py +0 -0
  169. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/check_skill_descriptions.py +0 -0
  170. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/scripts/gen_hooks.py +0 -0
  171. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/_references/accessibility-checklist.md +0 -0
  172. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/_references/orchestration-patterns.md +0 -0
  173. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/_references/performance-checklist.md +0 -0
  174. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/_references/security-checklist.md +0 -0
  175. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/_references/testing-patterns.md +0 -0
  176. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/accessibility-review/SKILL.md +0 -0
  177. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/README.md +0 -0
  178. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/SKILL.md +0 -0
  179. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/references/alembic-setup-and-env.md +0 -0
  180. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/references/async-and-multitenant-migrations.md +0 -0
  181. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/references/repo-evidence.md +0 -0
  182. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/references/troubleshooting-and-debugging.md +0 -0
  183. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/alembic-migrations/references/writing-migrations.md +0 -0
  184. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/anthropic-vertex-integration/README.md +0 -0
  185. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/anthropic-vertex-integration/SKILL.md +0 -0
  186. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/anthropic-vertex-integration/references/generate-helpers-and-retry.md +0 -0
  187. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/anthropic-vertex-integration/references/repo-evidence.md +0 -0
  188. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/anthropic-vertex-integration/references/vertex-client-and-auth.md +0 -0
  189. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-and-interface-design/SKILL.md +0 -0
  190. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-integration/SKILL.md +0 -0
  191. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-pagination-filtering-sorting/README.md +0 -0
  192. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-pagination-filtering-sorting/SKILL.md +0 -0
  193. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-pagination-filtering-sorting/references/query-params-conventions.md +0 -0
  194. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-pagination-filtering-sorting/references/repo-evidence.md +0 -0
  195. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/api-pagination-filtering-sorting/references/response-metadata.md +0 -0
  196. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/archive-sprint/SKILL.md +0 -0
  197. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/async-python-patterns/README.md +0 -0
  198. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/async-python-patterns/SKILL.md +0 -0
  199. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/async-python-patterns/references/async-boundaries.md +0 -0
  200. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/async-python-patterns/references/lifecycle-and-gather.md +0 -0
  201. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/async-python-patterns/references/repo-evidence.md +0 -0
  202. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/README.md +0 -0
  203. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/SKILL.md +0 -0
  204. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/references/auth-dependencies.md +0 -0
  205. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/references/rbac-and-permissions.md +0 -0
  206. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/references/repo-evidence.md +0 -0
  207. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/references/security-hardening.md +0 -0
  208. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/auth-and-rbac/references/tokens-and-hashing.md +0 -0
  209. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/README.md +0 -0
  210. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/SKILL.md +0 -0
  211. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/references/deployment-patterns.md +0 -0
  212. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/references/entrypoint-and-config.md +0 -0
  213. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/references/repo-evidence.md +0 -0
  214. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/references/structure-patterns.md +0 -0
  215. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backend-repo-architecture/references/troubleshooting.md +0 -0
  216. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backlog/SKILL.md +0 -0
  217. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/backlog/item-template.md +0 -0
  218. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/browser-testing-with-devtools/SKILL.md +0 -0
  219. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/bug-hunt/SKILL.md +0 -0
  220. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/ci-cd-and-automation/SKILL.md +0 -0
  221. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/code-review-and-quality/SKILL.md +0 -0
  222. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/code-simplification/SKILL.md +0 -0
  223. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/component-design/SKILL.md +0 -0
  224. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/configargparse-yaml-env-layering/README.md +0 -0
  225. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/configargparse-yaml-env-layering/SKILL.md +0 -0
  226. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/configargparse-yaml-env-layering/references/config-layering-anatomy.md +0 -0
  227. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/configargparse-yaml-env-layering/references/mode-dispatch-and-precedence.md +0 -0
  228. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/configargparse-yaml-env-layering/references/repo-evidence.md +0 -0
  229. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/consolidate-learnings/SKILL.md +0 -0
  230. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/README.md +0 -0
  231. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/deployment-and-secrets.md +0 -0
  232. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/dockerfile-and-compose.md +0 -0
  233. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/entrypoint-and-modes.md +0 -0
  234. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/kerberos-kinit-bootstrap.md +0 -0
  235. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/makefile-dev-workflow.md +0 -0
  236. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/containerization-and-deployment/references/repo-evidence.md +0 -0
  237. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/context-engineering/SKILL.md +0 -0
  238. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/README.md +0 -0
  239. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/SKILL.md +0 -0
  240. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/references/choosing-and-operations.md +0 -0
  241. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/references/kubernetes-cronjob.md +0 -0
  242. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/references/repo-evidence.md +0 -0
  243. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/cron-and-scheduled-jobs/references/temporal-schedules.md +0 -0
  244. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/README.md +0 -0
  245. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/SKILL.md +0 -0
  246. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/references/bigquery-advanced-patterns.md +0 -0
  247. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/references/bigquery-gcs-io.md +0 -0
  248. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/references/medallion-architecture.md +0 -0
  249. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/references/repo-evidence.md +0 -0
  250. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/data-engineering-bigquery-gcs/references/temp-table-merge-pattern.md +0 -0
  251. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/debugging-and-error-recovery/SKILL.md +0 -0
  252. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/decision/SKILL.md +0 -0
  253. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/decision/adr-template.md +0 -0
  254. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dependency-verification/SKILL.md +0 -0
  255. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/deprecation-and-migration/SKILL.md +0 -0
  256. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/README.md +0 -0
  257. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/SKILL.md +0 -0
  258. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/anti-patterns.md +0 -0
  259. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/naming-and-layout.md +0 -0
  260. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/patterns-catalog.md +0 -0
  261. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/repo-evidence.md +0 -0
  262. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/testing-patterns.md +0 -0
  263. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-patterns-and-conventions/references/troubleshooting.md +0 -0
  264. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/README.md +0 -0
  265. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/SKILL.md +0 -0
  266. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/references/ai-readiness.md +0 -0
  267. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/references/drift-detection.md +0 -0
  268. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/references/governance-and-adoption.md +0 -0
  269. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/references/system-health-and-maturity.md +0 -0
  270. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/design-system-ops/references/token-architecture.md +0 -0
  271. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/doc-consolidation/SKILL.md +0 -0
  272. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-compose/README.md +0 -0
  273. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-compose/references/compose-services-and-healthchecks.md +0 -0
  274. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-compose/references/dev-vs-prod-variants.md +0 -0
  275. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-compose/references/repo-evidence.md +0 -0
  276. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/README.md +0 -0
  277. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/SKILL.md +0 -0
  278. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/references/dockerignore-and-build-secrets.md +0 -0
  279. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/references/repo-evidence.md +0 -0
  280. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/references/shared-base-images.md +0 -0
  281. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/docker-shared/references/shared-compose-fragments.md +0 -0
  282. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-backend/README.md +0 -0
  283. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-backend/SKILL.md +0 -0
  284. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-backend/references/backend-dockerfile-anatomy.md +0 -0
  285. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-backend/references/repo-evidence.md +0 -0
  286. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-backend/references/system-deps-and-caching.md +0 -0
  287. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-frontend/README.md +0 -0
  288. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-frontend/SKILL.md +0 -0
  289. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-frontend/references/build-args-and-nginx.md +0 -0
  290. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-frontend/references/frontend-dockerfile-anatomy.md +0 -0
  291. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/dockerfile-frontend/references/repo-evidence.md +0 -0
  292. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/documentation-and-adrs/SKILL.md +0 -0
  293. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/doubt-driven-development/SKILL.md +0 -0
  294. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/edge-to-service-trust-boundary/README.md +0 -0
  295. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/edge-to-service-trust-boundary/SKILL.md +0 -0
  296. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/edge-to-service-trust-boundary/references/repo-evidence.md +0 -0
  297. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/edge-to-service-trust-boundary/references/trust-contract.md +0 -0
  298. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/execute/SKILL.md +0 -0
  299. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/README.md +0 -0
  300. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/SKILL.md +0 -0
  301. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/api-versioning.md +0 -0
  302. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/app-factory-and-lifespan.md +0 -0
  303. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/custom-route-and-middleware.md +0 -0
  304. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/dependency-injection.md +0 -0
  305. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/model-and-serialization-patterns.md +0 -0
  306. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/fastapi-service-patterns/references/repo-evidence.md +0 -0
  307. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/file-export-and-reporting/README.md +0 -0
  308. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/file-export-and-reporting/SKILL.md +0 -0
  309. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/file-export-and-reporting/references/excel-generation.md +0 -0
  310. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/file-export-and-reporting/references/repo-evidence.md +0 -0
  311. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/file-export-and-reporting/references/streaming-and-downloads.md +0 -0
  312. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/README.md +0 -0
  313. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/SKILL.md +0 -0
  314. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/references/api-layer-and-types.md +0 -0
  315. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/references/divergences.md +0 -0
  316. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/references/repo-evidence.md +0 -0
  317. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/references/structure-and-state.md +0 -0
  318. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-repo-architecture/references/testing-patterns.md +0 -0
  319. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/frontend-ui-engineering/SKILL.md +0 -0
  320. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcp-cloud-run-github-actions/README.md +0 -0
  321. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcp-cloud-run-github-actions/SKILL.md +0 -0
  322. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcp-cloud-run-github-actions/references/cloud-run-deploy.md +0 -0
  323. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcp-cloud-run-github-actions/references/repo-evidence.md +0 -0
  324. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcp-cloud-run-github-actions/references/workflow-structure.md +0 -0
  325. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcs-file-storage-patterns/README.md +0 -0
  326. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcs-file-storage-patterns/SKILL.md +0 -0
  327. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcs-file-storage-patterns/references/client-and-uploads.md +0 -0
  328. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcs-file-storage-patterns/references/repo-evidence.md +0 -0
  329. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/gcs-file-storage-patterns/references/signed-urls-and-reads.md +0 -0
  330. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/git-workflow-and-versioning/SKILL.md +0 -0
  331. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/README.md +0 -0
  332. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/references/dashboard-json-and-templating.md +0 -0
  333. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/references/provisioning-and-organization.md +0 -0
  334. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/references/red-metrics-queries.md +0 -0
  335. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/references/repo-evidence.md +0 -0
  336. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/grafana-dashboards-and-alerts/references/unified-alerting.md +0 -0
  337. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/README.md +0 -0
  338. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/SKILL.md +0 -0
  339. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/references/apollo-client-frontend.md +0 -0
  340. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/references/apollo-client-setup.md +0 -0
  341. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/references/repo-evidence.md +0 -0
  342. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/references/strawberry-backend.md +0 -0
  343. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/graphql-patterns/references/when-to-use-graphql.md +0 -0
  344. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/idea-refine/SKILL.md +0 -0
  345. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/idea-refine/examples.md +0 -0
  346. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/idea-refine/frameworks.md +0 -0
  347. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/idea-refine/refinement-criteria.md +0 -0
  348. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/idea-refine/scripts/idea-refine.sh +0 -0
  349. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/incident-postmortem/SKILL.md +0 -0
  350. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/incremental-implementation/SKILL.md +0 -0
  351. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/interview-me/SKILL.md +0 -0
  352. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/README.md +0 -0
  353. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/SKILL.md +0 -0
  354. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/references/config-and-sasl-kerberos.md +0 -0
  355. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/references/consumer-producer-patterns.md +0 -0
  356. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/references/repo-evidence.md +0 -0
  357. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kafka-config-driven/references/troubleshooting-and-patterns.md +0 -0
  358. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/README.md +0 -0
  359. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/SKILL.md +0 -0
  360. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/references/command-reference.md +0 -0
  361. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/references/context-namespace-rbac.md +0 -0
  362. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/references/debugging-playbooks.md +0 -0
  363. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/references/output-formats-and-selectors.md +0 -0
  364. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubectl-operations/references/repo-evidence.md +0 -0
  365. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubernetes-workload-hardening/README.md +0 -0
  366. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubernetes-workload-hardening/SKILL.md +0 -0
  367. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubernetes-workload-hardening/references/networkpolicy-and-rbac.md +0 -0
  368. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubernetes-workload-hardening/references/repo-evidence.md +0 -0
  369. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/kubernetes-workload-hardening/references/securitycontext-and-podsecurity.md +0 -0
  370. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/langfuse-llm-tracing/README.md +0 -0
  371. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/langfuse-llm-tracing/SKILL.md +0 -0
  372. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/langfuse-llm-tracing/references/langfuse-client-and-tracing.md +0 -0
  373. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/langfuse-llm-tracing/references/python-and-typescript.md +0 -0
  374. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/langfuse-llm-tracing/references/repo-evidence.md +0 -0
  375. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/library-review/SKILL.md +0 -0
  376. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/load-testing/SKILL.md +0 -0
  377. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/manual-test/SKILL.md +0 -0
  378. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/README.md +0 -0
  379. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/SKILL.md +0 -0
  380. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/references/migration-best-practices.md +0 -0
  381. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/references/pydantic-v1-to-v2.md +0 -0
  382. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/references/repo-evidence.md +0 -0
  383. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/references/shared-internal-library.md +0 -0
  384. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/modernization-and-migration/references/sqlalchemy-14-to-20.md +0 -0
  385. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/README.md +0 -0
  386. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/SKILL.md +0 -0
  387. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/references/caching-patterns.md +0 -0
  388. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/references/isolation-strategies.md +0 -0
  389. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/references/repo-evidence.md +0 -0
  390. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/multi-tenancy-patterns/references/tenant-resolution.md +0 -0
  391. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/README.md +0 -0
  392. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/SKILL.md +0 -0
  393. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/references/app-factory-and-mode-dispatch.md +0 -0
  394. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/references/config-and-module-alias.md +0 -0
  395. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/references/middleware-patterns.md +0 -0
  396. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-express-service/references/repo-evidence.md +0 -0
  397. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-objection-knex/README.md +0 -0
  398. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-objection-knex/SKILL.md +0 -0
  399. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-objection-knex/references/migrations-and-validation.md +0 -0
  400. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-objection-knex/references/objection-model-and-knex.md +0 -0
  401. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/node-objection-knex/references/repo-evidence.md +0 -0
  402. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/notifications-and-messaging/README.md +0 -0
  403. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/notifications-and-messaging/SKILL.md +0 -0
  404. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/notifications-and-messaging/references/provider-abstraction.md +0 -0
  405. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/notifications-and-messaging/references/repo-evidence.md +0 -0
  406. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/notifications-and-messaging/references/templates-and-fallback.md +0 -0
  407. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/README.md +0 -0
  408. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/SKILL.md +0 -0
  409. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/health-and-readiness.md +0 -0
  410. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/logging-and-structlog.md +0 -0
  411. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/outbound-metrics-and-multi-mode.md +0 -0
  412. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/pii-redaction.md +0 -0
  413. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/repo-evidence.md +0 -0
  414. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/observability-and-logging/references/tracing-and-metrics.md +0 -0
  415. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/README.md +0 -0
  416. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/SKILL.md +0 -0
  417. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/collector.md +0 -0
  418. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/correlation.md +0 -0
  419. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/gotchas.md +0 -0
  420. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/instrumentation.md +0 -0
  421. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/sampling.md +0 -0
  422. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/otel-tracing/references/tempo.md +0 -0
  423. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/over-engineering-review/SKILL.md +0 -0
  424. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/performance-optimization/SKILL.md +0 -0
  425. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/planning-and-task-breakdown/SKILL.md +0 -0
  426. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/playwright-verification/SKILL.md +0 -0
  427. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/README.md +0 -0
  428. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/SKILL.md +0 -0
  429. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/references/repo-evidence.md +0 -0
  430. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/references/settings-and-validation.md +0 -0
  431. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/references/troubleshooting-and-common-errors.md +0 -0
  432. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/pydantic-schema-patterns/references/v1-vs-v2.md +0 -0
  433. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/README.md +0 -0
  434. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/SKILL.md +0 -0
  435. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/advanced-query-patterns.md +0 -0
  436. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/basedao-and-sessions.md +0 -0
  437. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/mongodb-advanced.md +0 -0
  438. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/other-db-mongodb.md +0 -0
  439. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/repo-evidence.md +0 -0
  440. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/python-dao-and-database/references/sqlalchemy-1x-vs-2x.md +0 -0
  441. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/radix-tailwind-component-patterns/README.md +0 -0
  442. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/radix-tailwind-component-patterns/SKILL.md +0 -0
  443. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/radix-tailwind-component-patterns/references/radix-primitives-and-variants.md +0 -0
  444. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/radix-tailwind-component-patterns/references/repo-evidence.md +0 -0
  445. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/radix-tailwind-component-patterns/references/tailwind-theme-and-cn.md +0 -0
  446. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/react-hook-form-zod-patterns/README.md +0 -0
  447. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/react-hook-form-zod-patterns/SKILL.md +0 -0
  448. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/react-hook-form-zod-patterns/references/form-setup-and-zod.md +0 -0
  449. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/react-hook-form-zod-patterns/references/multi-step-and-modes.md +0 -0
  450. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/react-hook-form-zod-patterns/references/repo-evidence.md +0 -0
  451. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/redis-caching-patterns/README.md +0 -0
  452. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/redis-caching-patterns/SKILL.md +0 -0
  453. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/redis-caching-patterns/references/cache-manager-and-fallback.md +0 -0
  454. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/redis-caching-patterns/references/namespacing-and-invalidation.md +0 -0
  455. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/redis-caching-patterns/references/repo-evidence.md +0 -0
  456. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/refresh-docs/SKILL.md +0 -0
  457. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/safety-critical-patterns/SKILL.md +0 -0
  458. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/scope/SKILL.md +0 -0
  459. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/scope/scope-template.md +0 -0
  460. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/security-verification/SKILL.md +0 -0
  461. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/shannon-ai-pentest/README.md +0 -0
  462. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/shannon-ai-pentest/SKILL.md +0 -0
  463. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/shannon-ai-pentest/references/operating-guide.md +0 -0
  464. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/shell-review/SKILL.md +0 -0
  465. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/shipping-and-launch/SKILL.md +0 -0
  466. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/simplification-debt/SKILL.md +0 -0
  467. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/smoke-test/SKILL.md +0 -0
  468. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/source-driven-development/SKILL.md +0 -0
  469. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/spec-driven-development/SKILL.md +0 -0
  470. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/sprint/SKILL.md +0 -0
  471. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/sprint/sprint-template.md +0 -0
  472. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/tanstack-react-query-patterns/README.md +0 -0
  473. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/tanstack-react-query-patterns/SKILL.md +0 -0
  474. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/tanstack-react-query-patterns/references/mutations-and-cache.md +0 -0
  475. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/tanstack-react-query-patterns/references/query-keys-and-hooks.md +0 -0
  476. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/tanstack-react-query-patterns/references/repo-evidence.md +0 -0
  477. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/task-tracker-sync/SKILL.md +0 -0
  478. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/README.md +0 -0
  479. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/SKILL.md +0 -0
  480. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/config-and-retry-idempotency.md +0 -0
  481. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/dag-dsl-interpreter.md +0 -0
  482. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/repo-evidence.md +0 -0
  483. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/schedule-registration.md +0 -0
  484. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/schedules-and-cron.md +0 -0
  485. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-config-driven/references/worker-workflow-activity-patterns.md +0 -0
  486. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/README.md +0 -0
  487. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/SKILL.md +0 -0
  488. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/cli.md +0 -0
  489. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/determinism.md +0 -0
  490. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/gotchas.md +0 -0
  491. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/languages.md +0 -0
  492. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/testing.md +0 -0
  493. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/temporal-developer/references/versioning.md +0 -0
  494. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/test-driven-development/SKILL.md +0 -0
  495. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/test-plan-review/SKILL.md +0 -0
  496. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/README.md +0 -0
  497. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/SKILL.md +0 -0
  498. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/async-and-mocking.md +0 -0
  499. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/coverage-gap-and-recommendations.md +0 -0
  500. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/github-actions-test-orchestration.md +0 -0
  501. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/pytest-and-fixtures.md +0 -0
  502. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/pytest-asyncio-modes.md +0 -0
  503. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/repo-evidence.md +0 -0
  504. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/security-regression-tests.md +0 -0
  505. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/testing-conventions/references/vitest-frontend-testing.md +0 -0
  506. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/threat-model/SKILL.md +0 -0
  507. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/triage/SKILL.md +0 -0
  508. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/ui-ux-design/SKILL.md +0 -0
  509. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/unit-test/SKILL.md +0 -0
  510. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/using-agent-skills/SKILL.md +0 -0
  511. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/vitest-rtl-msw-patterns/README.md +0 -0
  512. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/vitest-rtl-msw-patterns/SKILL.md +0 -0
  513. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/vitest-rtl-msw-patterns/references/msw-and-contract-tests.md +0 -0
  514. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/vitest-rtl-msw-patterns/references/repo-evidence.md +0 -0
  515. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/vitest-rtl-msw-patterns/references/vitest-rtl-setup.md +0 -0
  516. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/README.md +0 -0
  517. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/SKILL.md +0 -0
  518. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/references/operating-guide.md +0 -0
  519. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/scripts/endpoints.example.txt +0 -0
  520. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/scripts/requirements.txt +0 -0
  521. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zap-vapt-scanning/scripts/zap_vapt.py +0 -0
  522. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zustand-state-patterns/README.md +0 -0
  523. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zustand-state-patterns/SKILL.md +0 -0
  524. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zustand-state-patterns/references/async-polling-and-persistence.md +0 -0
  525. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zustand-state-patterns/references/repo-evidence.md +0 -0
  526. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/skills/zustand-state-patterns/references/store-structure-and-selectors.md +0 -0
  527. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/__main__.py +0 -0
  528. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/detect.py +0 -0
  529. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/models.py +0 -0
  530. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/pipeline.py +0 -0
  531. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/render.py +0 -0
  532. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/report.py +0 -0
  533. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/schemas.py +0 -0
  534. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/src/claude_kit/validator.py +0 -0
  535. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/CLAUDE.md +0 -0
  536. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/CONTINUITY.template.md +0 -0
  537. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/MEMORY.md +0 -0
  538. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/api/.gitkeep +0 -0
  539. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/architecture/.gitkeep +0 -0
  540. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/debugging/.gitkeep +0 -0
  541. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/gotchas/.gitkeep +0 -0
  542. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/patterns/.gitkeep +0 -0
  543. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/agent-memory/performance/.gitkeep +0 -0
  544. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/adr.md +0 -0
  545. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/api-change-report.md +0 -0
  546. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/change-proposal.md +0 -0
  547. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/feature-spec.md +0 -0
  548. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/release-plan.md +0 -0
  549. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/runbook.md +0 -0
  550. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/security-review.md +0 -0
  551. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/artifacts/test-plan.md +0 -0
  552. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/export/sdlc-workflow-guide.md.tmpl +0 -0
  553. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/README.md +0 -0
  554. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/data-workflow-agent.md +0 -0
  555. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/founder-prototype-agent.md +0 -0
  556. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/internal-tools-builder.md +0 -0
  557. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/pm-copilot.md +0 -0
  558. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/staff-pm-reviewer.md +0 -0
  559. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/agents/support-ticket-engineer.md +0 -0
  560. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/devops-and-release/README.md +0 -0
  561. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/devops-and-release/pack.yaml +0 -0
  562. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/engineering-core/README.md +0 -0
  563. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/engineering-core/pack.yaml +0 -0
  564. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/non-engineer-builder/README.md +0 -0
  565. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/non-engineer-builder/pack.yaml +0 -0
  566. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/onboarding-and-docs/README.md +0 -0
  567. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/onboarding-and-docs/pack.yaml +0 -0
  568. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/product-to-code/README.md +0 -0
  569. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/product-to-code/pack.yaml +0 -0
  570. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/quality-and-review/README.md +0 -0
  571. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/quality-and-review/pack.yaml +0 -0
  572. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/security-and-compliance/README.md +0 -0
  573. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/packs/security-and-compliance/pack.yaml +0 -0
  574. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/ai-working-agreement.md +0 -0
  575. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/ambiguity-resolution.md +0 -0
  576. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/branch-and-pr-policy.md +0 -0
  577. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/compliance-policy.md +0 -0
  578. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/non-engineer-safe-coding.md +0 -0
  579. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/pii-policy.md +0 -0
  580. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/production-data-policy.md +0 -0
  581. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/prompt-to-task-conversion.md +0 -0
  582. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/prototype-boundaries.md +0 -0
  583. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/rules/secrets-policy.md +0 -0
  584. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/customer-issue-to-fix/SKILL.md +0 -0
  585. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/feature-from-idea/SKILL.md +0 -0
  586. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/prompt-to-safe-task/SKILL.md +0 -0
  587. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/prototype-to-production/SKILL.md +0 -0
  588. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/repo-onboarding/SKILL.md +0 -0
  589. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/review-scope/SKILL.md +0 -0
  590. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/review-sprint/SKILL.md +0 -0
  591. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/review-sprint-plan/SKILL.md +0 -0
  592. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/org/skills/review-ux-flow/SKILL.md +0 -0
  593. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/settings.json +0 -0
  594. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/mongodb/agents/migration-specialist.md +0 -0
  595. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/mongodb/agents/mongodb-specialist.md +0 -0
  596. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/mongodb/rules/mongodb-patterns.md +0 -0
  597. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/postgres/agents/migration-specialist.md +0 -0
  598. {claude_code_kit-0.58.0 → claude_code_kit-0.58.1}/templates/stacks/db/postgres/agents/postgres-specialist.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.58.0",
13
+ "version": "0.58.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.58.0",
3
+ "version": "0.58.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,7 +4,467 @@ 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.58.0] — 2026-07-06
7
+ ## [0.58.1] — 2026-07-07
8
+
9
+ **Pipeline agents can now actually persist what their prompts mandate.** An industry-review pass
10
+ (4 web researchers + 4 repo specialists, adversarially synthesized) found the kit's flagship
11
+ resumable-pipeline promise structurally broken: nine agents ran `permissionMode: plan` (read-only)
12
+ while their prompts *required* file writes — the orchestrator's `CONTINUITY.md` +
13
+ `.claude/state/pipeline-snapshot.json` updates, every security scanner's `docs/security/*` report,
14
+ the merge-reviewer's API change report, and the incident-responder's incident log. Plus the docs-truth sweep the same review surfaced.
15
+ 0 new agents/skills/rules. Catalog data edits only where features required them: `stacks.yaml`
16
+ gains the `none` frontend/backend lanes and `profiles.yaml` trims six stack-coupled skills from
17
+ the standard core (they now arrive via the selected stack's lane instead) — no resolver changes.
18
+
19
+ ### Added
20
+
21
+ - **CI/issue-triggered runs get a design contract instead of a vendor YAML** (round-2 R18, the
22
+ landscape item; every claim verified against the GitHub API first: spec-kit 0.12.4 (2026-07-02)
23
+ shipped the label-driven `bug-fix` (#3258) and `bug-test` (#3257) agentic workflows and 0.12.2
24
+ the bounded fan-out (#3224); PR #3258's design was read in full). New
25
+ `docs/autonomous-operation.md` §6 records the five lines to hold when wiring `/sdlc` to CI —
26
+ a human-applied **label is the authorization** (never issue content); issue text is untrusted
27
+ input (`env:`, never `run:` interpolation, adversarial-assumption permissions); stages consume
28
+ the prior stage's artifact and *stop and ask* when it's missing; **draft-PR** delivery under the
29
+ `autonomous-pr` ceiling (`Refs`, never `Closes`); §3-style bounds (budget, minimal token, branch
30
+ protection). Shipping an actual GitHub workflow template was **deliberately deferred** — it
31
+ would be the kit's first CI-vendor-specific artifact and the posture, not the boilerplate, is
32
+ the durable part. The README spec-kit comparison row is refreshed to describe 0.12.x honestly
33
+ (workflow engine, extension catalog, label-driven CI stages) and state the complementary split:
34
+ their CI stages, this kit's in-session gate depth.
35
+ - **The bounded headless loop ships as an installed artifact** — `.claude/scripts/sdlc-loop.sh`
36
+ (from new `templates/scripts/`, wired in both installers: `scaffold.install_sdlc` copies + chmods
37
+ it, and the no-pip `init.sh` fallback installs it too). Prompted by a verified landscape shift:
38
+ BMAD-METHOD v6.10.0 (2026-07-03) graduated its unattended dev loop from experimental to an
39
+ installer-selectable module (`bmad-loop` + the `bmad-dev-auto` single-iteration worker polled off
40
+ a spec-frontmatter state machine) — the same architecture the kit already had as `/sdlc` +
41
+ `CONTINUITY.md` + `pipeline-snapshot.json`, except the kit's loop runner was an untested code
42
+ block in `docs/autonomous-operation.md` §3. Now it's a tested file: each iteration runs
43
+ `claude -p` under the one-gate contract with three brakes (iteration cap, per-iteration
44
+ `--max-budget-usd`, stall detection → nonzero exit **for a human**); the exit condition
45
+ self-configures from the execution-ordered `gates:` list in `stack-catalog.snapshot.yaml`
46
+ (last entry = finish line) and every knob is an `SDLC_*` env var — which is why it ships
47
+ kit-owned (upgrades keep the brakes current; hand-edits still get checksum-sidecar protection).
48
+ After the fallback install (no catalog resolution → no snapshot) it *refuses to guess* a finish
49
+ line and requires `SDLC_FINAL_GATE` explicitly. Eight behavioral tests run the real script with
50
+ a fake `claude` shim (completion, last-not-first gate autodetection against the exact
51
+ `yaml.safe_dump` shape scaffold writes, env override, stall, iteration cap, finish-line refusal,
52
+ project-root guard, nonzero-claude tolerance); CI shellcheck now covers `templates/scripts/`;
53
+ §3 keeps the rationale and points at the shipped file as source of truth.
54
+ - **Native dynamic workflows routed against the wave pattern** (verified against the official
55
+ workflows doc + the Claude Code changelog: engine introduced **2.1.154**, trigger keyword renamed
56
+ `workflow` → `ultracode` at 2.1.160, size guideline setting at 2.1.202). The round-2 review found
57
+ all four program-scale routing sites silent on Claude Code's in-product dynamic-workflows engine —
58
+ a reader could think the wave pattern competes with it. Now `rules/wave-orchestration.md` gains a
59
+ "Native dynamic workflows as the wave substrate" section built on the docs' own constraint (the
60
+ runtime accepts **no mid-run user input**; its advice for sign-off between stages is one workflow
61
+ per stage — which maps one-to-one onto *one workflow run per wave, humans between runs*): the rule
62
+ is the **contract** (manifest, gate-runners, inventory approval), the engine is an **execution
63
+ substrate** a wave's fan-out may run on; irreversible steps never go inside a run; committed
64
+ artifacts stay the durable record because resume is session-scoped; and availability is never
65
+ assumed (paid-plan-gated, Pro opt-in, org-disableable) so Agent-tool fan-out remains the default.
66
+ The orchestrator's Mode E, the `/sdlc` classification step, and the `mandatory-workflow.md`
67
+ "Which Workflow?" table each gain a short pointer (the table's is a naming disambiguation:
68
+ dynamic workflows are not a fourth row).
69
+ - **The stack→collection-skill mapping, measured** — `docs/skill-audit.md` gains the classification
70
+ the audit's own "evaluate `skills: stack-relevant`" item called for: all 48 collection skills
71
+ classified against the lanes actually selectable today. Headline: **22 of 48 are
72
+ infra/platform-orthogonal** (Kafka/Temporal/Redis/GCP/k8s/observability — choices `init`'s three
73
+ stack questions never ask about) and 4 more are stack-generic, so a lane-based filter installs
74
+ **46 of 48 for the default react+fastapi+postgres selection** (only the two planned-stack Node
75
+ skills drop) — refuting the audit's "roughly a dozen-plus instead of 48" estimate. The only
76
+ selection where filtering is material is go backend-only (26 of 48). The table ships as the
77
+ reusable input for a future **infrastructure axis** at init, which is the real lever.
78
+ - **Collection-skill size sweep** (the deferred follow-up from the skills-hygiene pass; measured
79
+ per-file first). All five oversized collection SKILL.md files turned out to already ship
80
+ `references/` — the earlier "no references/ yet" note was an artifact of a truncated directory
81
+ listing — and the fat in each was a `## Skeleton / example` section of complete worked files
82
+ injected on every trigger. Three fixed: **`docker-compose` 606 → 253** (the four full compose
83
+ files — base, dev, prod-test, profiles — moved verbatim to new `references/compose-skeletons.md`
84
+ behind an annotated pointer); **`grafana-dashboards-and-alerts` 535 → 437** (the RED dashboard
85
+ JSON + three-stage unified alert rule moved verbatim to new
86
+ `references/red-dashboard-skeleton.md`); **`containerization-and-deployment` 534 → 262** (its
87
+ five skeletons were verbatim *duplicates* of content already in its own references — grep-verified
88
+ block-by-block before deletion — so the section became a per-skeleton pointer map with zero
89
+ content loss). Two refused for consistency with the earlier `manual-test` (516) refusal:
90
+ `langfuse-llm-tracing` (508) and `redis-caching-patterns` (505) sit 1–2% over the ~500-line
91
+ guidance, under the same not-worth-the-cohesion-cost threshold.
92
+ - **Hooks-layer modernization review resolved with evidence** — the industry review's four
93
+ gen_hooks claims (left unverified when the hooks-specialist research agent died mid-workflow)
94
+ were each checked against the official hooks reference + the Claude Code changelog; **all four
95
+ were refuted or refused** (see *Not adopted*), so the hook layer ships unchanged — deliberately.
96
+ The verified facts are now recorded where they prevent re-litigation: a format-decisions comment
97
+ above `HOOK_REGISTRY` (exact-match matcher semantics; the exec-form 2.1.139 floor; exit-code-2
98
+ blocking is not deprecated), and `docs/autonomous-operation.md` §3 now documents `/goal` — Claude
99
+ Code's *built-in* session-scoped prompt-based Stop gate — as the zero-config alternative to the
100
+ bounded loop for single interactive sessions. All five registry events re-verified present in
101
+ the current event list (no drift).
102
+ - **`docs/autonomous-operation.md` — autonomy grounded in the shipped CLI, not folklore** (every
103
+ flag and mode verified against Claude Code 2.1.178 `--help` + the official permissions docs
104
+ before writing). Headless `claude -p` documented with its three safety-relevant property changes
105
+ (prompts become denials, the trust dialog is skipped, invalid settings are *silently ignored* —
106
+ so validate before the run, not after); the `--bare` caveat spelled out concretely for a kit
107
+ project (it skips hooks **and** CLAUDE.md auto-discovery, so SessionStart context, every guard
108
+ hook, and the rules contract all vanish — including `load-autonomy.sh`, meaning a bare run
109
+ doesn't know its own ceiling); a bounded headless-loop pattern built on the kit's real resume
110
+ seam (`CONTINUITY.md` + `pipeline-snapshot.json` `last_gate_passed`) with three deliberate
111
+ brakes (iteration cap, `--max-budget-usd`, stall detection → nonzero exit for a human); the
112
+ five `autonomy-levels.md` levels mapped onto the six real permission modes (`acceptEdits` ·
113
+ `auto` · `bypassPermissions` · `manual` · `dontAsk` · `plan`), with `bypassPermissions`
114
+ explicitly mapped to **no** kit level (its own docs restrict it to isolated sandboxes) and
115
+ `enterprise-controlled` pinned via managed-settings `disableBypassPermissionsMode`; and an
116
+ anti-gaming table wiring five unattended-log warning signs to the shipped defenses
117
+ (`quality-gates.md` §2.5 evidence requirement, `continuity.md` verify-before-trust,
118
+ blind-review/Devil's-Advocate, `audit-log`). Correction to the review's claim recorded inline:
119
+ the CLI has **no `--max-turns`** flag (2.1.178; that's an Agent SDK feature) — iteration caps
120
+ belong in the loop script.
121
+ - **Skills hygiene: progressive disclosure for the heaviest core skill + honest triggers** (every
122
+ review claim measured first). `security-and-hardening/SKILL.md` — at 718 lines the largest
123
+ SKILL.md in the payload, injected wholesale on every trigger — is split along its decision seam:
124
+ the boundaries / per-class rules / checklists / red-flags layer stays in SKILL.md (286 lines),
125
+ and the code patterns and deep-dive practices move **verbatim** (license attributions included)
126
+ to four on-demand `references/` files — OWASP per-class patterns + continuous least-privilege ·
127
+ input-validation/uploads/archive-extraction/ReDoS · supply-chain triage/SBOM/reproducible-builds/
128
+ missing-patch · LLM guardrail specifics — the same convention 20+ collection skills already
129
+ follow. Everything external actors deep-link into the file (`warn-llm-io.sh` and
130
+ `owasp-reviewer` → *LLM / AI Feature Security*, `dependency-scanner` → *Triaging Dependency
131
+ Audit Results*, the scaffold test's three anchors) stays in SKILL.md under its original title.
132
+ Trigger honesty: `containerization-and-deployment`'s description stops claiming its four
133
+ siblings' territory (multi-stage builds → `dockerfile-backend`, compose local dev →
134
+ `docker-compose`) and owns the overview role explicitly; `remember`'s dangling "injects the
135
+ index below" now names what the hook actually injects (`.claude/agent-memory/MEMORY.md`).
136
+ - **Cost transparency** — `docs/agents.md` gains a "What a run costs" section measured from the
137
+ shipped frontmatter (4 `opus` agents — `orchestrator`, `developer`, `devils-advocate`,
138
+ `owasp-reviewer` — everything else `sonnet`, the Fast tier deliberately unassigned), with the
139
+ practical levers: the profile is the biggest knob (lean runs only 2 of the 4 `opus` agents), and
140
+ tier escalation stays investigation-gated. **Fan-out is now announced before it happens**: the
141
+ orchestrator (Spawning parallel agents), the `sdlc` skill (step 3), and the wave-orchestration
142
+ rule (Cost discipline) all require stating the planned lane/agent count and model tiers — in
143
+ chat and CONTINUITY.md — before any parallel phase forks, so a human can veto the scale before
144
+ tokens are spent.
145
+ - **Stack-true installs: `none` lanes + frontend skills ride the frontend stack** (every sub-claim
146
+ verified first). `catalog/stacks.yaml` gains `none` entries for frontend, backend, and database —
147
+ previously a pure-backend project was *forced* to select React and received 8 React overlay
148
+ rules, frontend skills, and npm commands in its CLAUDE.md. A `none` entry ships no
149
+ overlays/skills/commands/stack_dir, so the branch-free resolver makes it a true no-op lane; new
150
+ `has_frontend`/`has_backend`/`has_database` context flags (derived from stack_dir presence — data,
151
+ not stack names) let `CLAUDE.stack.md.tmpl` + `README.claude-sdlc.md.tmpl` render clean charters
152
+ for any combination, including all-`none`. The six frontend-specific skills
153
+ (`frontend-ui-engineering`, `component-design`, `ui-ux-design`, `unit-test` "frontend components
154
+ and hooks", `api-integration` client-side data fetching — verified by reading each skill's
155
+ content, and previously mis-filed under the *backend* stacks — and `manual-test` headed-browser
156
+ QA) moved from the standard profile core to the React entry's `skills:` union: a backend-only
157
+ standard install is six skills lighter, the default-stack standard count is unchanged (42), and
158
+ lean's default-stack count goes 14 → 15 (README + skill-audit updated; skill-audit's stale
159
+ 35-rules column also fixed to 36). The `none` combinations automatically join the
160
+ profile×stack×scope self-test matrix. The interactive frontend-language question is skipped for
161
+ a lane with no languages. Deferred to a future pass: the `skills: stack-relevant` enterprise
162
+ filter (needs a collection-skill→stack mapping measured, not assumed).
163
+ - **`init` now emits a root `AGENTS.md`** — the cross-tool agent-instructions convention behind the
164
+ most-requested Claude Code integration (anthropics/claude-code#6235, 4.3k 👍, re-verified OPEN and
165
+ still non-native before adoption: Claude Code reads `CLAUDE.md` only, so this file serves the
166
+ *other* agents in the repo — Cursor, Copilot, Codex — with zero double-load risk). The scaffolder
167
+ reuses the `export` projection verbatim (charter + single-agent SDLC checklist + rule index +
168
+ fidelity note), never clobbers a pre-existing `AGENTS.md` (sidecar), and records the file as
169
+ `user-editable` so `upgrade` preserves edits. **User-file writes are now idempotent** across
170
+ `init` and `export`: a byte-identical existing file is reported as "already current" instead of
171
+ spraying `.claude-kit` sidecars on every re-run — real differences still sidecar.
172
+ - **Path-scoped overlay rules** — 12 of the 13 stack overlay rule files now open with `paths:` YAML
173
+ frontmatter (Claude Code's official scoped rule loading, verified against
174
+ code.claude.com/docs/en/memory before adoption), so React/FastAPI/Go/Postgres guidance enters
175
+ context only when Claude touches matching files instead of riding every session. Globs live in the
176
+ overlay files themselves — the stack-agnostic core rules stay deliberately unscoped (always-on
177
+ contract), and `mongodb-patterns.md` stays unscoped on purpose: a document store has no reliable
178
+ file signal, and a glob that never matches would mean the rule *never* loads (the same judgment
179
+ `export._DB_GLOBS` already encodes). The Cursor exporter now projects a rule's own `paths:` list
180
+ verbatim into `.mdc` `globs` (comma-joined; list form chosen over brace expansion precisely so it
181
+ ports) and strips the source block so no export carries a double frontmatter; the language/db
182
+ table remains as fallback for frontmatter-less overlays. New `tests/test_rule_frontmatter.py`
183
+ pins all four invariants (scoped overlays valid, Mongo exception, core rules clean, scaffold
184
+ copies verbatim).
185
+ - **Rule-count drift guards in CI** — `scripts/check_docs_consistency.py` now anchors the overlay
186
+ rule-file count, the README's default-stack worked example (25 core + 11 overlays = 36), and the
187
+ rule counts quoted in `docs/architecture.md`, so the count drift fixed below cannot recur silently.
188
+
189
+ ### Added (continued — round-2 test-gap closure)
190
+
191
+ - **The interactive `init` parsers finally have tests that answer questions** (round-2 R5; a
192
+ line-tracer proof showed only the EOFError→default branch ever executed — the numeric-selection,
193
+ re-prompt, multi-select, and yes/no paths a real human hits had zero coverage). 18 new cases in
194
+ `tests/test_prompts.py` monkeypatch `input()`: `_choose_one` by number and by id, re-prompt-until-
195
+ valid (bad id, out-of-range number), planned lanes visible-but-unselectable with live-only
196
+ numbering; `_ask_bool`'s eight recognised answers plus garbage→default; `_choose_many` empty/
197
+ `none`, mixed ids+numbers, order-preserving dedup, unknown-token warnings; and three end-to-end
198
+ `interactive()` flows — the full default path driven by numbers and ids, the `none` frontend
199
+ lane proving the language question is skipped (answer alignment breaks if it leaks back), and
200
+ the organization scope unlocking the teams/autonomy/strictness/packs block.
201
+
202
+ - **Behavioral tests for the eleven remaining never-executed hook scripts** (round-2 R4; the
203
+ verifier had proved only 4 of 18 scripts were ever run by tests). New `tests/test_hook_scripts.py`
204
+ (31 cases) executes each script against real stdin JSON, temp project dirs, and live git repos:
205
+ the SessionStart loaders (continuity small/capped/template-seeded/silent, learnings
206
+ index/empty/10th-session consolidation nudge, autonomy level surfaced/silent), the audit log
207
+ (append shape, 120-char target truncation, garbage-stdin survival), the four `warn-*` advisories
208
+ (flag + stay-silent cases, always exit 0), `validate-frontmatter` (agent/skill field warnings),
209
+ `validate-settings` (blocks only an invalid settings-JSON write), and the Stop hooks' degrade
210
+ paths — plus a behavioral proof of the P0-3 scoping guarantee: `lint-fix.sh` formats the changed
211
+ file while a committed, untouched file stays byte-identical.
212
+
213
+ ### Added (continued — round-2 landscape adoption)
214
+
215
+ - **The tier policy gained its enforcement lever — documented with its real limits** (round-2 R10;
216
+ syntax and semantics verified in the permissions reference, feature changelog-pinned to
217
+ 2.1.178). `model-tiers.md` closes with "Enforcing the tier policy": deny/ask rules matching tool
218
+ input parameters (`Agent(model:opus)`), the wildcard form for full model IDs, and — the caveat
219
+ the review missed — that an *omitted* parameter never matches, so the kit's Critical-tier agents
220
+ (opus **in frontmatter**, not in the spawning call) are gated by agent-**name** rules
221
+ (`Agent(devils-advocate)`) or a frontmatter edit, not by a `model:` rule. The kit still ships
222
+ zero permission rules (posture belongs to the user). `docs/autonomous-operation.md` §4 adds the
223
+ headless variant: under `-p` prompts become denials, so `deny` is the operative form, with
224
+ `--max-budget-usd` as the how-much backstop beside the which-spend shape.
225
+
226
+ ### Fixed
227
+
228
+ - **🚨 Rules context-budget finding: measured, attributed, spec'd (fix pending a design
229
+ decision).** Claude Code natively auto-loads `.claude/rules/*.md` — rules without `paths:`
230
+ frontmatter load **at launch** at CLAUDE.md priority (official memory docs; shipped in CC
231
+ 2.0.64, i.e. the kit's whole life). Empirically measured with headless `-p` runs: a default
232
+ scaffolded project injects **103,916 tokens** at session start over an empty-dir baseline,
233
+ and removing `.claude/rules/` attributes **97,031 of that (93%) to the 25 unscoped core
234
+ rules** — everything else the kit installs totals a genuinely lean 6,885. This inverts the
235
+ "lean CLAUDE.md, on-demand rules" positioning. The load-at-launch semantics were *partially*
236
+ known — an earlier pass scoped 12 of 13 overlay rules for exactly this reason — but the core
237
+ set was declared an "always-on contract" without ever measuring its cost, CLAUDE.md kept
238
+ claiming on-demand, and no live session inside a scaffolded project had ever been measured
239
+ (the kit repo itself has no `.claude/rules/`, so dogfooding never felt it). Shipped now:
240
+ `docs/rules-context-budget.md` — verified semantics, the full measurement table, per-rule
241
+ weights, four candidate directions with a recommendation, the blast-radius list, and the
242
+ reproducible methodology — plus a worked **Direction A appendix**: the full 522-citation
243
+ graph (quality-gates 89 · human-in-the-loop 50 · risk-classification 46 are contracts →
244
+ covenant; the heavy how-tos all have existing skills as destinations, reuse-first) and a
245
+ measured covenant estimate of **~7.9k tokens, a 92% cut**, inside the ≤10k target. The
246
+ redesign itself is deliberately **not** rushed into this
247
+ release (it reshapes the payload layout and the README's headline claims); likewise the
248
+ documented mongodb-overlay exception stays untouched — reconsidering that ~3k-token trade
249
+ belongs inside the redesign, not a side patch against a test-pinned decision.
250
+ - **MCP pin freshness (issue #63)** — the two pins the monthly check flagged were bumped after
251
+ changelog review, per the pins' own bump-deliberately contract: `@playwright/mcp`
252
+ 0.0.76 → **0.0.77** (tag diff verified: five housekeeping commits — dev-dep bump, docs, engine
253
+ roll; no tool/invocation changes; no GitHub release exists for it yet, so the npm publish +
254
+ `v0.0.76...v0.0.77` compare was the review) and `@azure/mcp` 3.0.0-beta.21 → **3.0.0-beta.23**
255
+ (beta.22 argument cleanup + fixes, beta.23 adds read-only Resilience/Terraform toolsets; the
256
+ `server start` invocation shape unchanged). Pin-snapshot date refreshed to 2026-07-07;
257
+ `check_mcp_pins.py --check-latest` now reports all pins at the registry latest.
258
+ - **Round-2 low block (R13–R17) — five small truthfulness fixes, each reproduced before touching:**
259
+ (R13) `export` said "Wrote 39 file(s)" on a re-export that wrote nothing (mtime-proved) —
260
+ `export_targets` now returns `(written, already_current)` and only files that touched disk count
261
+ as written; the CLI prints `= <path> (already current)` lines, an honest "Wrote N file(s); M
262
+ already current" summary, and the `--json` payload gains `already_current` (pinned by an
263
+ mtime-asserting idempotency test). (R14) exported `AGENTS.md`/`000-project.mdc`/Copilot
264
+ instructions opened with "the agnostic pipeline rules **above** apply" when the charter is the
265
+ top of the document — the shared `CLAUDE.stack.md.tmpl` sentence is now position-neutral
266
+ (truthful in the installed CLAUDE.md too, where the rules genuinely are above). (R15) `status`
267
+ said 43 skills where init/validate say 42 — its counter treated the shared
268
+ `skills/_references/` support dir as a skill; it now counts SKILL.md-bearing directories,
269
+ matching validate (agreement pinned by a test). (R16) the README "All commands" table presented
270
+ `package-org-pack`/`install-org-pack` as working; they are hidden planned stubs that exit 2 —
271
+ the row now says so. (R17) the README init-flow Q6 MCP enumeration omitted Sentry, Repowise,
272
+ and the Google security fragments — now listed, with `claude-kit list-options` as the
273
+ authoritative source.
274
+ - **Stop hooks now feed their findings back to Claude instead of discarding them** (round-2 R9;
275
+ verified against the official hooks reference + the Claude Code changelog before adopting —
276
+ same discipline as the exec-form refusal, opposite verdict because the failure mode differs).
277
+ `type-check.sh` and `lint-fix.sh` printed failures to stdout and exited 0, but Stop-hook plain
278
+ stdout goes to the debug log only — the checks burned CPU with no effect. They now return
279
+ `hookSpecificOutput.additionalContext` JSON (Claude Code ≥ 2.1.163, changelog-pinned): the turn
280
+ continues as labeled "Stop hook feedback" so Claude fixes the failures before finishing,
281
+ bounded by the platform's 8-continuation cap **and** a `stop_hook_active` gate (one nudge per
282
+ stop chain, the hooks reference's own loop-protection practice — an unfixable failure can't
283
+ ping-pong the session). Adoptable where exec-form wasn't: on older versions the unread field
284
+ degrades to exactly the previous discard behavior, no guard is silently lost; without jq the
285
+ legacy plain-stdout path remains. Never `decision:block` — the kit's no-hard-block stance for
286
+ Stop hooks stands. Hermetic tests fake the toolchain with an `npm` shim (deterministic failure
287
+ output, JSON shape + one-nudge gating pinned for both scripts).
288
+ - **Same-version upgrade/init no longer churns sidecars or claims a "new version" exists**
289
+ (round-2 R6, cmp/mtime-verified by the empirical-UX lens: after one legitimate `CLAUDE.md`
290
+ edit, every run rewrote a byte-identical sidecar, announced "kept; new version →
291
+ CLAUDE.md.claude-kit", and `init`'s merge closed with "upgrade complete"). Now: when the
292
+ sidecar already holds exactly the kit's current copy the rewrite is skipped and the line reads
293
+ "your edits kept; sidecar already current" (mtime-pinned untouched); a written sidecar says
294
+ "kit's version →" (never "new version" — same-version runs have none) plus a one-time INFO
295
+ hint (`diff <file> <file>.claude-kit`, merge, delete); a stale/tampered sidecar is still
296
+ healed (content compare, not existence); and the merge path reports "merge complete" /
297
+ "nothing to merge". The diff preview's keep verb/note updated to match.
298
+ - **`upgrade --force` now actually does what it documents** (found by writing round-2 R7's
299
+ crash-path tests; reproduced empirically first). The docstring and CLI promised "overwrite
300
+ user-modified user-editable files instead of writing sidecars", but a user-edited user-editable
301
+ file always produces a `keep` action, and `_apply`'s keep branch ignored `force` — the flag was
302
+ a no-op for exactly the files it exists for (the force-guarded `update` condition was
303
+ unreachable). The keep branch now honors force: the user's copy is backed up to
304
+ `.claude-kit.bak-N/`, the canonical file restored, no sidecar. Default (no-force) behavior
305
+ unchanged and pinned by a control test. R7's other gaps are covered too: a **mid-apply crash**
306
+ (via a counting shutil shim confined to the upgrader module — the tree is left genuinely
307
+ half-upgraded, the journal stays open, and a plain re-run converges) and a **cross-version
308
+ upgrade** (consistent aged install: old content + matching old record → silent refresh, no
309
+ backups, version transition surfaced).
310
+ - **`guard-secrets.sh` no longer blocks committing `.env.example`-style placeholder files**
311
+ (surfaced by writing the guard's first behavioral tests, R2; reproduced empirically first).
312
+ The filename pattern `\.env($|\.)` — written to catch `.env.local`/`.env.production`, which do
313
+ hold real values — also caught `.env.example`, a names-only onboarding file most repos commit
314
+ deliberately. `.env.example`/`.sample`/`.template`/`.dist` are now spared via a negating grep
315
+ (POSIX ERE has no lookahead), applying the guard's own names-not-values philosophy to
316
+ filenames. Real env files still block; pinned by four new spare cases.
317
+ - **Guard scripts: quoted tokens no longer evade the word-boundary match** (round-2 test-gaps
318
+ review, R3; the verifier proved the bypass by piping real PreToolUse JSON). Shell word-splitting
319
+ keeps quote characters as literal token text, so `git push origin "main"` / `'main'` / `"+main"` /
320
+ `"HEAD:refs/heads/main"` — and even `"git" push origin main` — sailed past `guard-push-main.sh`,
321
+ `git checkout "."` past `guard-destructive-git.sh` rule 3, and `kubectl "delete" pod` past
322
+ `guard-kubectl-delete.sh`. All three now strip shell quoting chars (`"` `'` `\`) before matching —
323
+ safe because these guards only *match* the text, never execute it, so after stripping they see
324
+ what the shell would hand to git/kubectl. Legit branches that merely contain the substring stay
325
+ spared (`"feature/main-ui"`, `"remaster-ui"`). Pinned by 22 new behavioral test cases, including
326
+ the first *executed* tests for `guard-kubectl-delete.sh` (it previously had wiring-only coverage).
327
+ - **`init --config` with malformed YAML now fails friendly** (round-2 empirical-UX review; the
328
+ finder and an adversarial verifier each reproduced a ~150-line rich traceback through cli.py →
329
+ prompts.py → five PyYAML frames). `prompts.from_config` now converts `yaml.YAMLError` into the
330
+ same one-line `ValueError` the CLI already renders for its sibling error paths — output is now
331
+ `error: config file is not valid YAML: mapping values are not allowed here … line N, column M`,
332
+ exit 2, no partial install. Fixed at the parse site (not the CLI except-tuple) so every
333
+ `from_config` caller inherits the friendly path; regression-tested at both layers.
334
+ - **Orchestrator: gate set now conditions on the installed profile, ghosts removed, three
335
+ installed-but-never-spawned agents wired in** (every claim verified against the files first):
336
+ a **lean** install ships 5 agents (`orchestrator, developer, sdlc-code-reviewer, tester,
337
+ pr-raiser`) yet the orchestrator's NEVER-skip rules mandated ui-designer / technical-architect /
338
+ em-reviewer / merge-reviewer / senior-tester stages that don't exist there — every lean run had
339
+ to either violate a NEVER rule or stall. New **Active Gate Set** section: derive the run's gate
340
+ set from the installed roster + profile at Stage 0 (`SKIPPED (not in profile)` is noted, never
341
+ silent, never PASS; everything active stays mandatory), matching the `sdlc` skill's existing
342
+ profile table. Removed the ghost **Design Specialist** (D2) and the separate **Spec
343
+ Writer/Dev Doc Writer** stages from the diagram, feedback loops, comms pattern, state examples,
344
+ and rule 5 — the roster has only the combined `ui-designer` and `spec-doc-writer` (same ghost
345
+ fixed in `em-reviewer.md`). Wired in the three standard+ agents the pipeline never spawned:
346
+ `unit-tester` authors the 4c unit suites per lane, `e2e-tester` is a conditional 4th testing
347
+ lane (never installs frameworks), and `acceptance-reviewer` is new **Stage 5.6** gating on the
348
+ enterprise `acceptance` token — which `rules/quality-gates.md` line 116 already assumed runs.
349
+ New **Gate ↔ Stage Map** table gives `pipeline-snapshot.json` its canonical
350
+ `last_gate_passed` tokens (aligned with `catalog/profiles.yaml` + the `sdlc` skill).
351
+ - **Agent executability bundle** (each defect verified against the file before fixing):
352
+ `sdlc-code-reviewer` gains `Bash` — its own protocol names `git diff --name-only` "the checklist
353
+ of record" but its tool list couldn't run git. `auditor` drops its `tools:` allowlist (it excluded
354
+ the very Chrome-DevTools MCP tools the whole workflow drives) and moves `haiku` → `sonnet`
355
+ (multi-step browser-MCP orchestration is not "mechanical reporting"); `model-tiers.md` updated to
356
+ match, read-only now stated as explicit discipline. `developer`'s prerequisite health checks are
357
+ now conditional and stack-neutral — the old version hardcoded `localhost:8000/3000/5173` and
358
+ demanded a healthy stack "before writing any code", deadlocking fresh checkouts on pure code+test
359
+ tasks. `senior-backend-dev` / `senior-frontend-dev` gain the **Spec Review Mode** the
360
+ orchestrator's stages 3a-BE/3a-FE always expected of them (explicit `APPROVED`/`REVISE` verdict,
361
+ max-3-iterations contract); `senior-backend-dev`'s three dangling skill references
362
+ (`api-endpoint`, `database-migration`, `backend-unit-test` — none exist) now point at real
363
+ content. `e2e-tester` no longer installs packages unprompted — missing frameworks are reported
364
+ and routed through the developer lane per `dependency-verification` + the manifest-approval rule.
365
+ - **`/claude-kit:init` now actually works from Claude Code** — the plugin command told Claude to run
366
+ the CLI's *interactive* flow, but the Bash tool has no TTY: with no path argument the CLI aborted
367
+ outright (`input()` → EOFError), and with one it silently installed the **default stack without
368
+ asking a single question**. `commands/init.md` now instructs Claude to interview the user in chat
369
+ (AskUserQuestion; all 7 questions incl. the capture privacy note), write a temp `init.yaml`, and
370
+ run `init --config <file>` non-interactively — or pass through `--defaults`/`--config` verbatim
371
+ when given. The CLI probe chain also gains the third console script (`claude-sdlc`), and
372
+ `cli.py`'s target-path prompt is now EOF-tolerant (falls back to `.` like every other prompt
373
+ instead of aborting). README's quickstart claim updated to match, plus a worked `init.yaml`
374
+ example — the `--config` schema was previously documented only in source.
375
+ - **Docs-truth sweep** (every number re-verified on disk before fixing): the README said **35**
376
+ rules per profile and "**10** overlay rule sets" — reality is **36** installed for the default
377
+ React+FastAPI+PostgreSQL stack and **13** overlay rule files; `docs/architecture.md` said **24**
378
+ rules in two places (25 exist); `docs/launch/road-to-1.0.md` hardcoded **v0.57.0** (now points at
379
+ the CHANGELOG so it can't drift); `/claude-kit:abort` was missing from both command lists (README +
380
+ architecture) — a user whose run went sideways had no documented escape hatch; the README init-flow
381
+ list stopped at 6 questions while `init` actually asks 8 — the undocumented two now listed are
382
+ **learning capture** (with its privacy note and the `CLAUDE_KIT_NO_AUTOCAPTURE=1` opt-out) and
383
+ **usage scope** (organization scope asks four follow-ups); new troubleshooting row for
384
+ `pip install claude-kit` → the package is **`claude-code-kit`**; and `claude-kit --help` no longer
385
+ advertises the experimental `research` group whose only command is hidden (it now hides with it).
386
+
387
+ - **`orchestrator`** — dropped `permissionMode: plan`, granted `Write`/`Edit`, and added an explicit
388
+ **write-confinement hard rule**: state and gate evidence only (`.claude/CONTINUITY.md`,
389
+ `.claude/state/`, `.claude/artifacts/`, and gate reports handed back by read-only reviewers) —
390
+ never source code, tests, configs, or feature docs. The orchestrator is now the declared **scribe**
391
+ for read-only gate agents: it persists their returned reports verbatim and records their verdicts /
392
+ durable lessons on their behalf. "Never writes code" remains a hard rule.
393
+ - **`incident-responder`** — dropped `permissionMode: plan`, granted `Write`/`Edit` confined to the
394
+ incident log (`docs/incidents/`) and `CONTINUITY.md`. Its charter (keep the running log current at
395
+ every status change) was impossible read-only; mitigation stays delegated and human-gated.
396
+ - **Read-only gates made honest instead of self-contradictory** — `secret-scanner`,
397
+ `owasp-reviewer`, `policy-validator`, `dependency-scanner`, `security-reviewer`,
398
+ `devils-advocate`, `merge-reviewer` (and the postgres overlay `db-performance-reviewer`) keep
399
+ `permissionMode: plan`, but every "write your report to `docs/…`" / "log to CONTINUITY.md" /
400
+ "promote to agent-memory" mandate is rewritten as **return-in-handoff**: the spawner
401
+ (security-reviewer → Orchestrator) persists reports and learnings for them.
402
+ - **`dependency-scanner` no longer installs tooling** — the METHOD's `pip install pip-audit` line
403
+ (a mutation its own CONSTRAINT 3 forbids and plan mode blocks) is replaced with
404
+ use-only-if-present + degrade-to-manifest-review, matching the kit's degrade-to-no-op posture.
405
+
406
+ ### Not adopted (deliberately)
407
+
408
+ - **Compressing the orchestrator prompt to ~350 lines** (suggested by the review alongside the
409
+ gate-set fix) — refused: the verified defects were ghosts, missing wiring, and unconditioned
410
+ gates, not length. Every remaining section is load-bearing (wave mode, defect loop, health
411
+ monitoring, skill routing); the fix *added* ~60 lines of correctness rather than deleting
412
+ content to hit an arbitrary number.
413
+ - **Granting Write to the security scanners/reviewers** so they could keep writing their own
414
+ reports — read-only gates are a design asset (a reviewer that can edit the code it reviews is a
415
+ weaker gate); the scribe pattern preserves the artifact trail without weakening the boundary.
416
+ - **Routing orchestrator state through a new `ckit-state` helper binary** — the plan-mode block
417
+ applies to mutating Bash too, so a CLI detour would not have fixed the contradiction; a direct,
418
+ confined Write grant is simpler and matches how the kit already trusts `developer`/`pr-raiser`
419
+ with `acceptEdits`.
420
+ - **`owasp-reviewer` `opus` → `sonnet`** (suggested by the review) — refused: `model-tiers.md` §Notes
421
+ already documents keeping it `opus` for vulnerability reasoning as a deliberate exception to its
422
+ `sonnet` sibling scanners. A reviewer suggestion doesn't outrank a documented decision.
423
+ - **Dropping `Edit` from `tester`/`senior-tester`** — refused: they author test artifacts and
424
+ fixtures; the grant is load-bearing. No evidence of misuse was presented.
425
+ - **Rewriting `.claude/skills/_references/…` links as relative `../_references/` paths** (the review
426
+ claimed the hardcoded form "breaks in plugin context") — refused: `scaffold.py` installs
427
+ `_references/` at exactly that canonical path *on purpose* (its own comment says so), and prose
428
+ paths are resolved against the project CWD, so the relative form would break the scaffolded
429
+ install — the primary context — to serve plugin-without-init sessions where *every* `.claude/`
430
+ reference (rules included) dangles equally. That's the documented plugin+init model, not a
431
+ path-style bug.
432
+ - **The `skills: stack-relevant` profile value itself** — deferred with its premise corrected by
433
+ measurement (see the mapping table in `docs/skill-audit.md`): lane-based filtering yields a ~4%
434
+ reduction for the default stack because 26 of the 48 collection skills encode infrastructure
435
+ choices no stack question captures. Shipping the profile value anyway would have added a resolver
436
+ special-value and a `stacks.yaml` mapping that silently delivers almost nothing for most users.
437
+ The meaningful version requires an infra axis at init (Kafka? Temporal? GCP? k8s?) — a feature
438
+ design left for a deliberate future pass, with the measured table as its input. `skills: all`
439
+ stays the enterprise default, trade-off documented.
440
+ - **All four hooks-modernization claims from the industry review** (re-verified against the
441
+ official hooks reference + the anthropics/claude-code changelog after the original research
442
+ agent died unverified): **(1) exec-form hook commands** (`args: [...]`) — refused *for now*:
443
+ docs-recommended for path placeholders, but introduced only in Claude Code **2.1.139**; on any
444
+ older version an `args` entry degrades to bare `bash` consuming hook JSON on stdin — every guard
445
+ silently dead — while the kit's double-quoted shell form is already space/char-safe. Revisit
446
+ when the floor ages. **(2) `permissionDecision` JSON outputs with auto-allow for read-only
447
+ commands** — mechanism verified real, adoption refused: exit-code-2 blocking remains a fully
448
+ supported signaling path (only *top-level* decision/reason is deprecated, PreToolUse-only), the
449
+ JSON form adds a stdout-purity constraint to every bash guard for zero behavioral gain, and a
450
+ plugin auto-*allowing* commands would loosen the user's own permission posture from inside a
451
+ dependency. **(3) anchored `^name$` matchers** — refuted by the docs: matchers made only of
452
+ exact-match-set characters (`Bash`, `Read`, `Edit|Write`) are compared as exact strings, not
453
+ unanchored regexes; anchoring would move them onto the regex path for nothing. (Related
454
+ observation recorded: exact matching means `Edit|Write` does not cover `NotebookEdit` — left
455
+ as-is; no notebook overlay exists to warrant it.) **(4) a prompt-type Stop gate** — refused:
456
+ the product ships `/goal` as exactly that (a built-in session-scoped prompt-based Stop hook,
457
+ 8-consecutive-block cap); an always-on plugin Stop gate would tax every turn of every user with
458
+ a model call to duplicate it. Documented `/goal` instead.
459
+ - **Splitting `manual-test` (516 lines) and the five oversized stack-collection SKILL.md files**
460
+ (`docker-compose` 606 · `grafana-dashboards-and-alerts` 535 · `containerization-and-deployment`
461
+ 534 · `langfuse-llm-tracing` 508 · `redis-caching-patterns` 505) — deferred, not rushed:
462
+ `manual-test` is 3% over the ~500-line guidance and a split costs more cohesion than it buys;
463
+ the collection five deserve one measured sweep of their own. Claim correction recorded: the
464
+ review's "no references/ split" was false for the collection (20+ skills already ship
465
+ `references/`) — it was true only of `security-and-hardening`.
466
+
467
+
8
468
 
9
469
  **Wave orchestration — program-scale runs, explicit skill routing, and the inventory-approval
10
470
  pattern.** Adopts the program-management patterns from Ryan Carson's public writeup of a