claude-code-kit 0.56.0__tar.gz → 0.58.0__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.
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/.claude-plugin/marketplace.json +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/.claude-plugin/plugin.json +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/CHANGELOG.md +94 -0
- claude_code_kit-0.58.0/CLAUDE.md +166 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/PKG-INFO +33 -7
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/README.md +32 -6
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/orchestrator.md +92 -2
- claude_code_kit-0.58.0/docs/RELEASE-POLICY.md +92 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/architecture.md +1 -1
- claude_code_kit-0.58.0/docs/launch/awesome-prs.md +118 -0
- claude_code_kit-0.58.0/docs/launch/demo-script.md +71 -0
- claude_code_kit-0.58.0/docs/launch/directory-submission.md +85 -0
- claude_code_kit-0.58.0/docs/launch/github-about.md +45 -0
- claude_code_kit-0.58.0/docs/launch/posts.md +129 -0
- claude_code_kit-0.58.0/docs/launch/road-to-1.0.md +171 -0
- claude_code_kit-0.58.0/docs/launch/seed-issues.md +205 -0
- claude_code_kit-0.58.0/docs/skill-audit.md +148 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/audit-log.sh +2 -2
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/capture-learnings.sh +15 -15
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/guard-destructive-git.sh +5 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/guard-kubectl-delete.sh +5 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/guard-push-main.sh +4 -4
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/guard-secrets.sh +4 -4
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/lint-fix.sh +5 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/load-continuity.sh +5 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/load-learnings.sh +4 -4
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/type-check.sh +2 -2
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/validate-frontmatter.sh +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/validate-settings.sh +2 -2
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/warn-large-edits.sh +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/warn-llm-io.sh +5 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/warn-missing-tests.sh +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/warn-sensitive-files.sh +2 -2
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/warn-shared-modules.sh +4 -4
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/pyproject.toml +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/human-in-the-loop.md +11 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/mandatory-workflow.md +1 -0
- claude_code_kit-0.58.0/rules/wave-orchestration.md +133 -0
- claude_code_kit-0.58.0/scripts/backfill-releases.sh +119 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/gen_hooks.py +2 -2
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/init.sh +8 -8
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/sdlc/SKILL.md +18 -5
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/__init__.py +1 -1
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/hooks.py +3 -3
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/validator.py +28 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/settings.json +8 -8
- claude_code_kit-0.56.0/CLAUDE.md +0 -81
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/.gitignore +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/CONTRIBUTING.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/LICENSE +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/acceptance-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/auditor.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/dependency-scanner.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/developer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/devils-advocate.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/devops-engineer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/e2e-tester.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/em-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/incident-responder.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/merge-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/observability-engineer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/owasp-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/policy-validator.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/pr-raiser.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/risk-classifier.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/sdlc-code-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/secret-scanner.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/security-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/senior-backend-dev.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/senior-frontend-dev.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/senior-tester.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/spec-doc-writer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/story-planner.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/technical-architect.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/tester.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/ui-designer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/agents/unit-tester.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/catalog/capture.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/catalog/mcp.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/catalog/org.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/catalog/profiles.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/catalog/stacks.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/commands/abort.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/commands/init.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/commands/sdlc.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/commands/status.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/KNOWN_LIMITATIONS.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/agentic-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/agents.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/capture-a-real-run.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/coverage-audit.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/cursor-export.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/eval-harness.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/org-capabilities.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/stack-skills/GAP-ANALYSIS.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/stack-skills/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/docs/stack-skills/REPO-INVENTORY.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/hooks.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/hooks/scripts/load-autonomy.sh +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/agent-guardrails.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/agent-memory.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/agent-resilience.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/autonomy-levels.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/code-organization.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/continuity.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/design-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/devops-observability.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/documentation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/evals.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/frontend-best-practices.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/goal-setting-and-monitoring.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/linting-and-formatting.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/model-tiers.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/quality-gates.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/rarv-cycle.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/reasoning-techniques.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/resilience-engineering.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/responsive-and-accessibility.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/risk-classification.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/testing.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/rules/tool-design.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/catalog-capture.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/catalog-mcp.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/catalog-org.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/catalog-profiles.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/catalog-stacks.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/mcp-lock.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/org-pack.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/schemas/pipeline-snapshot.schema.json +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/capture-sdlc-run.sh +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/check_docs_consistency.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/check_mcp_pins.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/check_rule_sizes.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/scripts/check_skill_descriptions.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/_references/accessibility-checklist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/_references/orchestration-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/_references/performance-checklist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/_references/security-checklist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/_references/testing-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/accessibility-review/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/references/alembic-setup-and-env.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/references/async-and-multitenant-migrations.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/references/troubleshooting-and-debugging.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/alembic-migrations/references/writing-migrations.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/anthropic-vertex-integration/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/anthropic-vertex-integration/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/anthropic-vertex-integration/references/generate-helpers-and-retry.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/anthropic-vertex-integration/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/anthropic-vertex-integration/references/vertex-client-and-auth.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-and-interface-design/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-integration/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-pagination-filtering-sorting/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-pagination-filtering-sorting/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-pagination-filtering-sorting/references/query-params-conventions.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-pagination-filtering-sorting/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/api-pagination-filtering-sorting/references/response-metadata.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/archive-sprint/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/async-python-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/async-python-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/async-python-patterns/references/async-boundaries.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/async-python-patterns/references/lifecycle-and-gather.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/async-python-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/references/auth-dependencies.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/references/rbac-and-permissions.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/references/security-hardening.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/auth-and-rbac/references/tokens-and-hashing.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/references/deployment-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/references/entrypoint-and-config.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/references/structure-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backend-repo-architecture/references/troubleshooting.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backlog/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/backlog/item-template.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/browser-testing-with-devtools/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/bug-hunt/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/ci-cd-and-automation/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/code-review-and-quality/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/code-simplification/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/component-design/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/configargparse-yaml-env-layering/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/configargparse-yaml-env-layering/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/configargparse-yaml-env-layering/references/config-layering-anatomy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/configargparse-yaml-env-layering/references/mode-dispatch-and-precedence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/configargparse-yaml-env-layering/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/consolidate-learnings/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/deployment-and-secrets.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/dockerfile-and-compose.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/entrypoint-and-modes.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/kerberos-kinit-bootstrap.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/makefile-dev-workflow.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/containerization-and-deployment/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/context-engineering/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/references/choosing-and-operations.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/references/kubernetes-cronjob.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/cron-and-scheduled-jobs/references/temporal-schedules.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/references/bigquery-advanced-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/references/bigquery-gcs-io.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/references/medallion-architecture.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/data-engineering-bigquery-gcs/references/temp-table-merge-pattern.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/debugging-and-error-recovery/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/decision/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/decision/adr-template.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dependency-verification/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/deprecation-and-migration/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/anti-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/naming-and-layout.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/patterns-catalog.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/testing-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-patterns-and-conventions/references/troubleshooting.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/references/ai-readiness.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/references/drift-detection.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/references/governance-and-adoption.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/references/system-health-and-maturity.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/design-system-ops/references/token-architecture.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/doc-consolidation/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-compose/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-compose/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-compose/references/compose-services-and-healthchecks.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-compose/references/dev-vs-prod-variants.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-compose/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/references/dockerignore-and-build-secrets.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/references/shared-base-images.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/docker-shared/references/shared-compose-fragments.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-backend/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-backend/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-backend/references/backend-dockerfile-anatomy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-backend/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-backend/references/system-deps-and-caching.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-frontend/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-frontend/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-frontend/references/build-args-and-nginx.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-frontend/references/frontend-dockerfile-anatomy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/dockerfile-frontend/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/documentation-and-adrs/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/doubt-driven-development/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/edge-to-service-trust-boundary/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/edge-to-service-trust-boundary/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/edge-to-service-trust-boundary/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/edge-to-service-trust-boundary/references/trust-contract.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/execute/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/api-versioning.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/app-factory-and-lifespan.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/custom-route-and-middleware.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/dependency-injection.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/model-and-serialization-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/fastapi-service-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/file-export-and-reporting/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/file-export-and-reporting/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/file-export-and-reporting/references/excel-generation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/file-export-and-reporting/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/file-export-and-reporting/references/streaming-and-downloads.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/references/api-layer-and-types.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/references/divergences.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/references/structure-and-state.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-repo-architecture/references/testing-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/frontend-ui-engineering/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcp-cloud-run-github-actions/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcp-cloud-run-github-actions/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcp-cloud-run-github-actions/references/cloud-run-deploy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcp-cloud-run-github-actions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcp-cloud-run-github-actions/references/workflow-structure.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcs-file-storage-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcs-file-storage-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcs-file-storage-patterns/references/client-and-uploads.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcs-file-storage-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/gcs-file-storage-patterns/references/signed-urls-and-reads.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/git-workflow-and-versioning/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/references/dashboard-json-and-templating.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/references/provisioning-and-organization.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/references/red-metrics-queries.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/grafana-dashboards-and-alerts/references/unified-alerting.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/references/apollo-client-frontend.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/references/apollo-client-setup.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/references/strawberry-backend.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/graphql-patterns/references/when-to-use-graphql.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/idea-refine/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/idea-refine/examples.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/idea-refine/frameworks.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/idea-refine/refinement-criteria.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/idea-refine/scripts/idea-refine.sh +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/incident-postmortem/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/incremental-implementation/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/interview-me/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/references/config-and-sasl-kerberos.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/references/consumer-producer-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kafka-config-driven/references/troubleshooting-and-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/references/command-reference.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/references/context-namespace-rbac.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/references/debugging-playbooks.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/references/output-formats-and-selectors.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubectl-operations/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubernetes-workload-hardening/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubernetes-workload-hardening/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubernetes-workload-hardening/references/networkpolicy-and-rbac.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubernetes-workload-hardening/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/kubernetes-workload-hardening/references/securitycontext-and-podsecurity.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/langfuse-llm-tracing/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/langfuse-llm-tracing/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/langfuse-llm-tracing/references/langfuse-client-and-tracing.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/langfuse-llm-tracing/references/python-and-typescript.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/langfuse-llm-tracing/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/library-review/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/load-testing/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/manual-test/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/references/migration-best-practices.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/references/pydantic-v1-to-v2.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/references/shared-internal-library.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/modernization-and-migration/references/sqlalchemy-14-to-20.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/references/caching-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/references/isolation-strategies.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/multi-tenancy-patterns/references/tenant-resolution.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/references/app-factory-and-mode-dispatch.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/references/config-and-module-alias.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/references/middleware-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-express-service/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-objection-knex/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-objection-knex/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-objection-knex/references/migrations-and-validation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-objection-knex/references/objection-model-and-knex.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/node-objection-knex/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/notifications-and-messaging/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/notifications-and-messaging/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/notifications-and-messaging/references/provider-abstraction.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/notifications-and-messaging/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/notifications-and-messaging/references/templates-and-fallback.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/health-and-readiness.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/logging-and-structlog.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/outbound-metrics-and-multi-mode.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/pii-redaction.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/observability-and-logging/references/tracing-and-metrics.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/collector.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/correlation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/gotchas.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/instrumentation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/sampling.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/otel-tracing/references/tempo.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/over-engineering-review/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/performance-optimization/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/planning-and-task-breakdown/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/playwright-verification/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/references/settings-and-validation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/references/troubleshooting-and-common-errors.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/pydantic-schema-patterns/references/v1-vs-v2.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/advanced-query-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/basedao-and-sessions.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/mongodb-advanced.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/other-db-mongodb.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/python-dao-and-database/references/sqlalchemy-1x-vs-2x.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/radix-tailwind-component-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/radix-tailwind-component-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/radix-tailwind-component-patterns/references/radix-primitives-and-variants.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/radix-tailwind-component-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/radix-tailwind-component-patterns/references/tailwind-theme-and-cn.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/react-hook-form-zod-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/react-hook-form-zod-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/react-hook-form-zod-patterns/references/form-setup-and-zod.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/react-hook-form-zod-patterns/references/multi-step-and-modes.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/react-hook-form-zod-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/redis-caching-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/redis-caching-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/redis-caching-patterns/references/cache-manager-and-fallback.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/redis-caching-patterns/references/namespacing-and-invalidation.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/redis-caching-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/refresh-docs/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/remember/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/safety-critical-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/scope/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/scope/scope-template.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/security-and-hardening/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/security-verification/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/shannon-ai-pentest/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/shannon-ai-pentest/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/shannon-ai-pentest/references/operating-guide.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/shell-review/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/shipping-and-launch/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/simplification-debt/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/smoke-test/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/source-driven-development/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/spec-driven-development/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/sprint/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/sprint/sprint-template.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/tanstack-react-query-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/tanstack-react-query-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/tanstack-react-query-patterns/references/mutations-and-cache.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/tanstack-react-query-patterns/references/query-keys-and-hooks.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/tanstack-react-query-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/task-tracker-sync/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/config-and-retry-idempotency.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/dag-dsl-interpreter.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/schedule-registration.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/schedules-and-cron.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-config-driven/references/worker-workflow-activity-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/cli.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/determinism.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/gotchas.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/languages.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/testing.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/temporal-developer/references/versioning.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/test-driven-development/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/test-plan-review/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/async-and-mocking.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/coverage-gap-and-recommendations.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/github-actions-test-orchestration.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/pytest-and-fixtures.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/pytest-asyncio-modes.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/security-regression-tests.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/testing-conventions/references/vitest-frontend-testing.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/threat-model/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/triage/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/ui-ux-design/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/unit-test/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/using-agent-skills/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/vitest-rtl-msw-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/vitest-rtl-msw-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/vitest-rtl-msw-patterns/references/msw-and-contract-tests.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/vitest-rtl-msw-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/vitest-rtl-msw-patterns/references/vitest-rtl-setup.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/references/operating-guide.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/scripts/endpoints.example.txt +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/scripts/requirements.txt +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zap-vapt-scanning/scripts/zap_vapt.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zustand-state-patterns/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zustand-state-patterns/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zustand-state-patterns/references/async-polling-and-persistence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zustand-state-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/skills/zustand-state-patterns/references/store-structure-and-selectors.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/__main__.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/catalog.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/cli.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/detect.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/export.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/models.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/pipeline.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/prompts.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/render.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/report.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/scaffold.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/schemas.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/src/claude_kit/upgrader.py +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/CLAUDE.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/CLAUDE.stack.md.tmpl +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/CONTINUITY.template.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/README.claude-sdlc.md.tmpl +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/MEMORY.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/api/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/architecture/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/debugging/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/gotchas/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/patterns/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/agent-memory/performance/.gitkeep +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/adr.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/api-change-report.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/change-proposal.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/feature-spec.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/release-plan.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/runbook.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/security-review.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/artifacts/test-plan.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/export/sdlc-workflow-guide.md.tmpl +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/data-workflow-agent.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/founder-prototype-agent.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/internal-tools-builder.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/pm-copilot.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/staff-pm-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/agents/support-ticket-engineer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/devops-and-release/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/devops-and-release/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/engineering-core/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/engineering-core/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/non-engineer-builder/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/non-engineer-builder/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/onboarding-and-docs/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/onboarding-and-docs/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/product-to-code/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/product-to-code/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/quality-and-review/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/quality-and-review/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/security-and-compliance/README.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/packs/security-and-compliance/pack.yaml +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/ai-working-agreement.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/ambiguity-resolution.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/branch-and-pr-policy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/compliance-policy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/non-engineer-safe-coding.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/pii-policy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/production-data-policy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/prompt-to-task-conversion.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/prototype-boundaries.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/rules/secrets-policy.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/customer-issue-to-fix/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/feature-from-idea/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/prompt-to-safe-task/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/prototype-to-production/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/repo-onboarding/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/review-scope/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/review-sprint/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/review-sprint-plan/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/org/skills/review-ux-flow/SKILL.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/backend/go/net-http/rules/go-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/backend/python/fastapi/rules/fastapi-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/mongodb/agents/migration-specialist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/mongodb/agents/mongodb-specialist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/mongodb/rules/mongodb-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/postgres/agents/db-performance-reviewer.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/postgres/agents/migration-specialist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/postgres/agents/postgres-specialist.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/postgres/rules/database-performance.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/db/postgres/rules/postgres-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/design-system-compliance.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/mobile-design-guidelines.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/react-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/ui-components.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/ui-design-system.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/ui-layout-and-motion.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/ux-dashboard-patterns.md +0 -0
- {claude_code_kit-0.56.0 → claude_code_kit-0.58.0}/templates/stacks/frontend/react/rules/ux-patterns.md +0 -0
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"name": "claude-kit",
|
|
11
11
|
"source": "./",
|
|
12
12
|
"description": "Cookiecutter-style scaffolder for an autonomous Claude Code SDLC config (no app code, no Docker): install CLAUDE.md + .claude/ (rules, the profile's agents/skills, hooks, artifact templates) + optional .mcp.json, then run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates, working memory, and a self-improving learnings loop.",
|
|
13
|
-
"version": "0.
|
|
13
|
+
"version": "0.58.0",
|
|
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.
|
|
3
|
+
"version": "0.58.0",
|
|
4
4
|
"description": "Cookiecutter-style scaffolder for an autonomous Claude Code SDLC config (no app code, no Docker). `claude-kit init` asks ordered questions and installs CLAUDE.md + .claude/ (rules, the profile's agents/skills, hooks, artifact templates) + optional .mcp.json; run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates with working memory and a self-improving learnings loop.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Arjunsingh Yadav",
|
|
@@ -4,6 +4,100 @@ 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
|
|
8
|
+
|
|
9
|
+
**Wave orchestration — program-scale runs, explicit skill routing, and the inventory-approval
|
|
10
|
+
pattern.** Adopts the program-management patterns from Ryan Carson's public writeup of a
|
|
11
|
+
40-session orchestrated migration (one pure orchestrator, audit-first frozen manifest, risk-ordered
|
|
12
|
+
waves, disjoint file boundaries, gate-runner sessions, propose-inventory/human-approves,
|
|
13
|
+
stop-and-report escalation, docs-as-final-wave) into the `/sdlc` pipeline. Stack-agnostic,
|
|
14
|
+
catalog untouched. **+1 core rule (24 → 25); 0 new agents/skills.**
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- **`rules/wave-orchestration.md`** (new core rule, installed by every profile). Program mode for
|
|
19
|
+
migration-scale work: Wave 0 parallel read-only audits synthesized into **one frozen scope
|
|
20
|
+
manifest** committed to the repo (every unit gets a verdict + wave number; `UNKNOWN` = stop and
|
|
21
|
+
ask; no worker re-litigates scope); waves sequenced by **risk, not convenience** (irreversible
|
|
22
|
+
steps last, restore-point git tags); **disjoint file boundaries** stated in every parallel worker
|
|
23
|
+
prompt; **gate-runner workers** between waves (regression suite on an isolated branch, backup
|
|
24
|
+
audit + fresh snapshot before destructive waves); the **inventory pattern** for irreversible steps
|
|
25
|
+
(approve the list, not the idea); a pre-declared **escalation path** (workers stop and report,
|
|
26
|
+
never improvise); and a mandatory **knowledge-closeout wave** (docs/rules/skills/agent memory
|
|
27
|
+
updated to the new state of the world).
|
|
28
|
+
- **`orchestrator` Mode E — Program / Wave Mode.** New classification (`program-scale`: > ~20
|
|
29
|
+
files / multiple subsystems, or any irreversible step) and the wave pipeline above, plus three new
|
|
30
|
+
orchestrator sections: **Skill Routing** (every spawn prompt names the skill(s) the worker must
|
|
31
|
+
load for its stage — spec → `spec-driven-development`, implementation → `incremental-implementation`
|
|
32
|
+
+ lane overlays, closeout → `refresh-docs`/`remember`/`consolidate-learnings`, etc.; absent skills
|
|
33
|
+
drop silently), **Model Tiering** (cheap tier for audits/sweeps/scans, standard for build/review/
|
|
34
|
+
gates, top tier only for orchestration/hard reasoning, per `rules/model-tiers.md`), and an
|
|
35
|
+
**Escalation Protocol for Workers** (stop, report to the orchestrator, don't improvise; overrides
|
|
36
|
+
recorded in the manifest/CONTINUITY). Orchestrator rules 19–23 pin all of it.
|
|
37
|
+
- **`rules/human-in-the-loop.md` — "approve the inventory, not the idea."** Destructive/irreversible
|
|
38
|
+
asks must be inventory-shaped: dry-run list + counts proposed, the human approves that exact list,
|
|
39
|
+
the agent executes exactly it and re-verifies counts; deviations stop and re-enter the protocol.
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
- **`skills/sdlc/SKILL.md`** — classification now includes `program-scale` → Mode E;
|
|
44
|
+
`wave-orchestration.md` added to the load-the-contract list; new step 3 makes skill routing and
|
|
45
|
+
per-worker model tiering an explicit orchestrator instruction on every run.
|
|
46
|
+
- **`rules/mandatory-workflow.md`** — the "Which Workflow?" table routes migration-scale /
|
|
47
|
+
irreversible work to `wave-orchestration.md` (units inside a wave still run the bug-fix or
|
|
48
|
+
feature workflow).
|
|
49
|
+
- **`orchestrator` parallelism rules** — explicit **disjoint file boundaries are now mandatory for
|
|
50
|
+
every parallel spawn in every mode**, not just an early-intervention health signal.
|
|
51
|
+
- Docs/counts: README, `CLAUDE.md`, `docs/architecture.md`, `docs/skill-audit.md` updated for the
|
|
52
|
+
25-rule core.
|
|
53
|
+
|
|
54
|
+
## [0.57.0] — 2026-07-03
|
|
55
|
+
|
|
56
|
+
**Adoption & hardening — release automation, honest docs, and a credibility pass.** No new
|
|
57
|
+
capability and no change to the core promise: configuration-only SDLC scaffolding for Claude Code, no
|
|
58
|
+
application code, no Docker, stack-agnostic core, catalog-driven. This release closes the gap between
|
|
59
|
+
"published to PyPI" and "tagged/released on GitHub," adds an honest release + road-to-1.0 policy, audits
|
|
60
|
+
the skill surface, and tightens the README so every claim is verifiable. **0 new agents/skills/rules;
|
|
61
|
+
`catalog.resolve()` and `catalog/*.yaml` untouched.**
|
|
62
|
+
|
|
63
|
+
### Added
|
|
64
|
+
|
|
65
|
+
- **Automated git tag + GitHub Release on publish.** `publish.yml` gains a `github-release` job that,
|
|
66
|
+
after a successful PyPI publish, creates the `vX.Y.Z` tag and a GitHub Release whose body is that
|
|
67
|
+
version's `CHANGELOG.md` section. Idempotent (a re-run over an already-released version is a no-op) and
|
|
68
|
+
downstream of `publish` (a Release is only cut once the wheel is actually on PyPI).
|
|
69
|
+
- **`scripts/backfill-releases.sh` (`--dry-run`).** One-off, idempotent backfill that retroactively
|
|
70
|
+
creates the tag + Release for past versions that shipped via merge-to-main before the automation
|
|
71
|
+
existed. Anchors each tag to the commit that introduced that version into `pyproject.toml` (git
|
|
72
|
+
pickaxe), and skips — with a warning — any version whose release commit can't be located.
|
|
73
|
+
- **[`docs/RELEASE-POLICY.md`](docs/RELEASE-POLICY.md).** Versioning, latest-only support, the
|
|
74
|
+
five-place version bump + CHANGELOG, and the publish/tag/Release automation, in one place.
|
|
75
|
+
- **[`docs/launch/road-to-1.0.md`](docs/launch/road-to-1.0.md).** An honest, verifiable list of what
|
|
76
|
+
stands between the current `4 - Beta` and 1.0 (stack coverage, enforcement honesty, hook portability,
|
|
77
|
+
evidence base, export fidelity, API stability). The Development Status classifier stays `4 - Beta`.
|
|
78
|
+
- **[`docs/skill-audit.md`](docs/skill-audit.md).** Core-vs-collection classification, the per-profile
|
|
79
|
+
install footprint (agents/skills/rules + an on-disk token estimate), and the finding that the
|
|
80
|
+
`enterprise` profile's `skills: all` installs every collection skill regardless of the chosen stack.
|
|
81
|
+
Documents and recommends; changes no profile (skills load on demand, so this is selection, not
|
|
82
|
+
always-resident context).
|
|
83
|
+
- **Launch-prep assets under `docs/launch/`** (owner checklists, not code): `github-about.md`,
|
|
84
|
+
`demo-script.md`, `directory-submission.md`, `awesome-prs.md`, `posts.md`, and `seed-issues.md`.
|
|
85
|
+
|
|
86
|
+
### Changed
|
|
87
|
+
|
|
88
|
+
- **README credibility pass.** Strengthened the anti-sycophancy / evidence framing and added a
|
|
89
|
+
"What loads into your context" per-profile table (agents/skills/rules), so the footprint is explicit
|
|
90
|
+
before install. Counts remain pinned by `scripts/check_docs_consistency.py`.
|
|
91
|
+
|
|
92
|
+
### Not adopted (deliberately)
|
|
93
|
+
|
|
94
|
+
- **No version-parity CI addition** — `scripts/check_docs_consistency.py::check_versions()` already
|
|
95
|
+
enforces parity across the four manifests, `SECURITY.md`, and the latest CHANGELOG heading.
|
|
96
|
+
- **No `profiles.yaml` change** for the `skills: all` finding — flagged and recommended in the audit;
|
|
97
|
+
any opt-in must stay a catalog/config change with no `resolve()` branching (golden rule #6).
|
|
98
|
+
- **Development Status stays `4 - Beta`** — the classifier is not flipped until the road-to-1.0 gaps
|
|
99
|
+
are met.
|
|
100
|
+
|
|
7
101
|
## [0.56.0] — 2026-07-01
|
|
8
102
|
|
|
9
103
|
**`export` command — carry the config to Cursor / VS Code / GitHub Copilot.** A teammate who works in
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
+
|
|
5
|
+
# Developing claude-kit
|
|
6
|
+
|
|
7
|
+
This repository **is** claude-kit — a Cookiecutter-style scaffolder that installs a stack-agnostic,
|
|
8
|
+
autonomous-SDLC **configuration** (no application code, no Docker) into a Claude Code project. It is
|
|
9
|
+
distributed two ways from one source of truth:
|
|
10
|
+
|
|
11
|
+
1. **As a Claude Code plugin** — components are auto-discovered from the repo root.
|
|
12
|
+
2. **As a pip package** — `claude-kit` (CLI: `claude-kit` / `ckit` / `claude-sdlc`) scaffolds the
|
|
13
|
+
same content into any project's `.claude/`, driven by the `catalog/` (stacks · profiles · MCP).
|
|
14
|
+
|
|
15
|
+
> Note: the files in this repo are the **kit's payload**, not rules for this repo itself. The
|
|
16
|
+
> generic engineering ruleset that gets installed into user projects lives in
|
|
17
|
+
> `templates/CLAUDE.md`, **not** this file.
|
|
18
|
+
|
|
19
|
+
## Core architecture
|
|
20
|
+
|
|
21
|
+
The kit's central data flow is **Selection → catalog.resolve() → ResolvedPlan → scaffold.install_sdlc()**:
|
|
22
|
+
|
|
23
|
+
1. **`Selection`** (`models.py`) — user choices (stack, profile, MCP servers, scope, autonomy, …)
|
|
24
|
+
collected interactively by `prompts.py` or passed via `--defaults`/`--config`.
|
|
25
|
+
2. **`catalog.resolve()`** (`catalog.py`) — reads `catalog/stacks.yaml`, `profiles.yaml`,
|
|
26
|
+
`mcp.yaml`, `org.yaml` and resolves the Selection into a **`ResolvedPlan`**: which agents,
|
|
27
|
+
skills, hooks, overlay rules, overlay agents, gates, and MCP fragments to install. This
|
|
28
|
+
function must stay **branch-free** — no stack- or org-specific code paths.
|
|
29
|
+
3. **`scaffold.install_sdlc()`** (`scaffold.py`) — takes the ResolvedPlan and writes files into
|
|
30
|
+
the target project: `CLAUDE.md`, `.claude/{rules,agents,skills,hooks,templates,config}`,
|
|
31
|
+
optional `.mcp.json` and org packs. Records per-file checksums + ownership in
|
|
32
|
+
`.claude/config/init-options.json` for safe upgrades.
|
|
33
|
+
4. **`upgrader.upgrade()`** (`upgrader.py`) — compares the live install against the plan from the
|
|
34
|
+
current kit version, refreshes kit/overlay files whose checksums match, preserves user-edited
|
|
35
|
+
files (drops new versions as `.claude-kit` sidecars), and writes a transactional journal
|
|
36
|
+
(`upgrade-in-progress.json`) so an interrupted run can be safely resumed.
|
|
37
|
+
5. **`export`** (`export.py`) — projects the same `ResolvedPlan` into Cursor (`.cursor/rules/*.mdc`),
|
|
38
|
+
a root `AGENTS.md`, or GitHub Copilot (`.github/copilot-instructions.md`) for non-Claude-Code editors.
|
|
39
|
+
|
|
40
|
+
### key source modules
|
|
41
|
+
|
|
42
|
+
| Module | Role |
|
|
43
|
+
|--------|------|
|
|
44
|
+
| `cli.py` | Typer app — all CLI commands (`init`, `validate`, `doctor`, `diff`, `export`, `upgrade`, `pipeline`, `list-options`, `status`). Experimental/planned commands are hidden unless `CLAUDE_KIT_EXPERIMENTAL=1`. |
|
|
45
|
+
| `models.py` | Dataclass contracts: `Selection`, `ResolvedPlan`, `OrgPlan`, `InitOptions`, `FileRecord`, `UpgradeJournal`. The typed seam between prompts → resolver → installer → upgrader. |
|
|
46
|
+
| `catalog.py` | The resolver — converts a `Selection` into a `ResolvedPlan` by reading the catalog YAML files. Must stay branch-free. |
|
|
47
|
+
| `prompts.py` | Interactive `init` question flow (stack, profile, MCP, org scope, …). |
|
|
48
|
+
| `scaffold.py` | Writes the resolved plan to disk. Also provides `payload_dir()` which locates the bundled payload (source checkout or wheel `_payload/`). |
|
|
49
|
+
| `render.py` | Jinja2 rendering — `CLAUDE.md` and `README.claude-sdlc.md` templates. |
|
|
50
|
+
| `hooks.py` | The `HOOK_REGISTRY` (all hook definitions + script mappings) plus `PLUGIN_HOOK_IDS`, `STARTER_HOOK_IDS`, and `PLUGIN_ONLY_HOOKS`. Contains the drift-test logic used by `gen_hooks.py --check`. |
|
|
51
|
+
| `upgrader.py` | Safe, edit-preserving upgrade: checksum comparison, transactional journal, sidecar fallback for user-edited files. |
|
|
52
|
+
| `validator.py` | Structural validation of an installed config (`validate` + `--strict` mode). |
|
|
53
|
+
| `schemas.py` | JSON Schema definitions for catalog integrity checks (`validate --strict`). |
|
|
54
|
+
| `pipeline.py` | Deterministic `/sdlc` state-file ops (validate, status, close-gate, abort) — inspects the state files, does **not** run the pipeline. |
|
|
55
|
+
| `export.py` | Projection into Cursor / AGENTS.md / Copilot formats. |
|
|
56
|
+
| `detect.py` | Stack detection from a target repo (heuristic-based; non-blocking). |
|
|
57
|
+
| `report.py` | Human-readable reporting for `doctor` and `status` commands. |
|
|
58
|
+
| `__init__.py` | The `__version__` string — one of the five places that must be bumped on release. |
|
|
59
|
+
|
|
60
|
+
## Repository layout
|
|
61
|
+
|
|
62
|
+
| Path | Purpose |
|
|
63
|
+
|------|---------|
|
|
64
|
+
| `.claude-plugin/plugin.json` | Plugin manifest (name, version, hooks path) |
|
|
65
|
+
| `.claude-plugin/marketplace.json` | Marketplace entry so `/plugin marketplace add` works |
|
|
66
|
+
| `agents/` | SDLC pipeline subagents (auto-discovered by the plugin); each carries a `tier:` field |
|
|
67
|
+
| `skills/` | Agent skills (auto-discovered by the plugin); `skills/sdlc/` is the `/sdlc` entrypoint |
|
|
68
|
+
| `commands/` | Slash commands: `/claude-kit:init`, `:sdlc`, `:status`, `:abort` (init prefers the pip CLI, falls back to `init.sh`; sdlc delegates to the `sdlc` skill; abort tears down an in-progress `/sdlc` run) |
|
|
69
|
+
| `hooks/hooks.json` + `hooks/scripts/` | Event hooks (paths via `${CLAUDE_PLUGIN_ROOT}`) |
|
|
70
|
+
| `rules/` | The 25-file stack-agnostic engineering rule set (scaffolded into `.claude/rules/`), including the agent-operation rules (reasoning, guardrails, resilience, goal-setting, human-in-the-loop, model-tiers, evals, tool-design — see `docs/agentic-patterns.md`), the program-scale `wave-orchestration` rule, the service-level `resilience-engineering` rule, and the org-core rules `autonomy-levels` + `risk-classification` (see `docs/org-capabilities.md`) |
|
|
71
|
+
| `catalog/` | **Data-driven registry** — `stacks.yaml` · `profiles.yaml` · `mcp.yaml` · `org.yaml`. The only thing that decides what `resolve()` installs. Adding a stack/profile/server/pack is a data change here. |
|
|
72
|
+
| `templates/` | `CLAUDE.md`, `CLAUDE.stack.md.tmpl`, `README.claude-sdlc.md.tmpl`, `CONTINUITY.template.md`, `settings.json`, `artifacts/`, `agent-memory/` seed |
|
|
73
|
+
| `templates/stacks/<kind>/<id>/` | Per-stack **overlay** content: `rules/` (+ `agents/` for DB stacks). **No application code, no Docker** — the only place stack-specific content lives. |
|
|
74
|
+
| `templates/org/` | **Org overlay** content (scope-gated, organization only): `skills/`, `agents/` (personas), `rules/` (policy/vibe), `packs/<pack>/{pack.yaml,README.md}`, `README.md`. Wired via `catalog/org.yaml`. The only place org-specific content lives. |
|
|
75
|
+
| `scripts/init.sh` | Thin no-pip fallback scaffolder (copies the full payload; no catalog resolution) |
|
|
76
|
+
| `src/claude_kit/` | The pip CLI (Typer): `cli.py`, `catalog.py` (resolver), `prompts.py`, `models.py`, `scaffold.py` (installer), `render.py` (Jinja2), `hooks.py`, `validator.py` (incl. `validate --strict` + `check_catalog`), `upgrader.py`, `pipeline.py` (deterministic `/sdlc` state-file ops) |
|
|
77
|
+
| `tests/` | pytest suite (catalog, render, scaffold, validator, upgrader, CLI; incl. the profile×stack×scope self-test matrix) |
|
|
78
|
+
| `examples/` | Synthetic end-to-end `/sdlc` worked example (repo reference; **not** bundled into the wheel) |
|
|
79
|
+
| `docs/architecture.md` · `docs/agents.md` · `docs/coverage-audit.md` · `docs/eval-harness.md` | Architecture diagrams · agent guide · the GATED-vs-RULE-vs-SKILL enforcement audit · the with/without eval template |
|
|
80
|
+
| `pyproject.toml` | Packaging (deps: typer/jinja2/pyyaml); `[tool.hatch...force-include]` bundles the payload into the wheel |
|
|
81
|
+
|
|
82
|
+
**One source of truth:** `agents/ skills/ commands/ hooks/ rules/ templates/ catalog/` at the repo
|
|
83
|
+
root are read directly by the plugin **and** bundled into the wheel (mapped to
|
|
84
|
+
`claude_kit/_payload/`) for the pip CLI. Never duplicate this content.
|
|
85
|
+
|
|
86
|
+
## Golden rules for changes here
|
|
87
|
+
|
|
88
|
+
1. **Keep the core payload stack-agnostic.** No FastAPI/React/Python/TypeScript/Docker/etc.
|
|
89
|
+
specifics in `rules/`, `agents/`, or `skills/`. Use neutral phrasing ("the project's linter /
|
|
90
|
+
test runner / build"); the `devops-engineer` is **container-optional**, never Docker-required.
|
|
91
|
+
The backend/frontend split may appear only as the canonical example of two independent parallel
|
|
92
|
+
lanes. **All** stack-specific content (overlay rules like `fastapi-patterns.md`, DB overlay agents
|
|
93
|
+
like `postgres-specialist`, exact commands) lives **only** under `templates/stacks/<kind>/<id>/`
|
|
94
|
+
and is wired up via `catalog/stacks.yaml` — never leak it into the agnostic core, and never add
|
|
95
|
+
application code or Docker anywhere.
|
|
96
|
+
2. **Reference rules by their canonical filename** under `.claude/rules/…` (that's where they
|
|
97
|
+
land in a user project). The current core rule set is the 25 files in `rules/` (org policy/vibe
|
|
98
|
+
rules under `templates/org/rules/` install only in organization scope).
|
|
99
|
+
3. **Plugin components live at the repo root**, never inside `.claude-plugin/` (only the
|
|
100
|
+
manifest goes there).
|
|
101
|
+
4. **Hook scripts use `${CLAUDE_PLUGIN_ROOT}`** for plugin context and degrade to no-ops when
|
|
102
|
+
a tool isn't present (stack detection, never hard failure).
|
|
103
|
+
5. **Never hand-edit `hooks/hooks.json` or `templates/settings.json`.** These are generated by
|
|
104
|
+
`python scripts/gen_hooks.py` from the `HOOK_REGISTRY` in `src/claude_kit/hooks.py`. Adding a
|
|
105
|
+
hook means: add the script → register it in `hooks.py` → list it in the relevant profile(s) →
|
|
106
|
+
run `gen_hooks.py`. A drift test (`gen_hooks.py --check`) fails CI if the generated files
|
|
107
|
+
diverge from the registry.
|
|
108
|
+
6. **Bump the version in all five places** together for a release — `pyproject.toml`,
|
|
109
|
+
`.claude-plugin/plugin.json`, the `.claude-plugin/marketplace.json` entry,
|
|
110
|
+
`src/claude_kit/__init__.py` (`__version__`), and `SECURITY.md` — and add a `CHANGELOG.md`
|
|
111
|
+
entry (including a "Not adopted (deliberately)" block). `check_docs_consistency.py` enforces
|
|
112
|
+
parity across all five + the latest CHANGELOG.md heading.
|
|
113
|
+
7. **Extend via the catalog, not code.** A new framework/database/profile/MCP server is a
|
|
114
|
+
`catalog/*.yaml` edit plus a `templates/stacks/<dir>/` folder; a new org pack/team/autonomy level
|
|
115
|
+
is a `catalog/org.yaml` edit plus content under `templates/org/`. `catalog.resolve()` must not grow
|
|
116
|
+
stack- or org-specific branches (the org layer is the same scope-gated lookup/union as profiles/mcp).
|
|
117
|
+
Mark not-yet-shipped entries `status: planned`.
|
|
118
|
+
8. **Keep the org layer scope-gated and reuse-first.** Org content installs **only** when
|
|
119
|
+
`scope == organization`; packs MAP roles to existing components (`existing: true`) and create only
|
|
120
|
+
genuinely-new content (`existing: false`) — never a competing duplicate of an existing
|
|
121
|
+
agent/skill/rule. Org rules/skills/agents are stack-agnostic too. See `docs/org-capabilities.md`.
|
|
122
|
+
|
|
123
|
+
## Dogfooding / local testing
|
|
124
|
+
|
|
125
|
+
- **Plugin:** `claude` → `/plugin marketplace add .` → `/plugin install claude-kit` (loads the
|
|
126
|
+
agents/skills/commands/hooks from this checkout).
|
|
127
|
+
- **CLI:** `pip install -e '.[dev]'` then `claude-kit init /tmp/demo --defaults` (or interactive),
|
|
128
|
+
`claude-kit validate /tmp/demo`, `claude-kit diff /tmp/demo`, and inspect the result.
|
|
129
|
+
- **Tests:** `pytest` runs the full suite. Run a single test with `pytest tests/test_catalog.py -k "test_name"`.
|
|
130
|
+
The suite calls library functions directly (no subprocess) for speed and determinism, using the
|
|
131
|
+
bundled payload resolved via `scaffold.payload_dir()`. Key invariants asserted: no-Docker,
|
|
132
|
+
profile-subset (`lean ⊂ standard ⊂ enterprise`), MCP-gating, upgrade-safety, and export parity.
|
|
133
|
+
- **Lint & drift (all run in CI — keep them green locally):**
|
|
134
|
+
```bash
|
|
135
|
+
ruff check src scripts tests && ruff format --check src scripts tests
|
|
136
|
+
mypy
|
|
137
|
+
shellcheck -S warning hooks/scripts/*.sh scripts/*.sh
|
|
138
|
+
python scripts/gen_hooks.py --check # hooks.json + settings.json drift
|
|
139
|
+
python scripts/check_docs_consistency.py # version parity + CHANGELOG heading
|
|
140
|
+
```
|
|
141
|
+
- **Stack-leakage guard:** `grep -rInE 'fastapi|sqlalchemy|alembic|docker' rules agents skills` — should
|
|
142
|
+
be clean (balanced multi-framework *example* lists are acceptable; a real leak is agnostic logic
|
|
143
|
+
branching on a specific stack).
|
|
144
|
+
- **Build:** `python3 -m build && python3 -m twine check dist/*`.
|
|
145
|
+
- **CI:** Tests + lint + drift checks run on every PR. Publishing to PyPI happens automatically on
|
|
146
|
+
merge to `main` via OIDC trusted publishing when the version is new (`.github/workflows/publish.yml`).
|
|
147
|
+
|
|
148
|
+
### Test conventions
|
|
149
|
+
|
|
150
|
+
- Tests mirror the `src/claude_kit/` module they exercise: `test_catalog.py` tests `catalog.py`, etc.
|
|
151
|
+
- `tests/_helpers.py` provides reusable factory functions.
|
|
152
|
+
- `tests/conftest.py` exposes a session-scoped `payload` fixture pointing at the bundled payload root.
|
|
153
|
+
- The profile×stack×scope self-test matrix backs the stack-agnostic claim — every profile installs a
|
|
154
|
+
strict subset of the next (`lean ⊂ standard ⊂ enterprise`).
|
|
155
|
+
|
|
156
|
+
### Releasing
|
|
157
|
+
|
|
158
|
+
1. Bump the version in **all five** places (see golden rule #6 above).
|
|
159
|
+
2. Add a `CHANGELOG.md` entry with a **"Not adopted (deliberately)"** block.
|
|
160
|
+
3. Ensure `pytest` + all lint/drift checks are green.
|
|
161
|
+
4. Build: `python3 -m build && python3 -m twine check dist/*`.
|
|
162
|
+
5. Merge to `main` — CI auto-publishes to PyPI (OIDC trusted publishing). Manual `twine upload` is
|
|
163
|
+
the fallback.
|
|
164
|
+
6. Tag the release and push so plugin users get the update.
|
|
165
|
+
|
|
166
|
+
See `CONTRIBUTING.md` for the full contributor workflow.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-code-kit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.58.0
|
|
4
4
|
Summary: Cookiecutter-style scaffolder for an autonomous Claude Code SDLC configuration (no app code, no Docker). Asks ordered questions and installs CLAUDE.md + .claude/ (rules, the chosen profile's agents/skills, hooks, artifact templates) + optional .mcp.json; run /sdlc to drive spec → review → build → test → security → ship through profile-aware quality gates, working memory, and a self-improving learnings loop.
|
|
5
5
|
Project-URL: Homepage, https://github.com/ajyadav013/claude-kit
|
|
6
6
|
Project-URL: Repository, https://github.com/ajyadav013/claude-kit
|
|
@@ -43,6 +43,12 @@ assumed, or partial-output "it works" is itself an auto-Critical finding — so
|
|
|
43
43
|
checks actually ran. A Cookiecutter-style scaffolder, installed as **configuration only — no
|
|
44
44
|
application code, no Docker.**
|
|
45
45
|
|
|
46
|
+
<!-- DEMO PLACEHOLDER — a 60–90s terminal capture of a gated `/sdlc` run belongs here once recorded.
|
|
47
|
+
Shot list, timing, and which real assets to show: docs/launch/demo-script.md.
|
|
48
|
+
The recording replays the genuine run already in examples/real-run/ (the devils-advocate catching a
|
|
49
|
+
Medium bug a unanimous review missed, and the gate refusing to advance until it was fixed).
|
|
50
|
+
Until the GIF exists, that folder IS the evidence — linked from "How it works" and "The pipeline" below. -->
|
|
51
|
+
|
|
46
52
|
[](https://pypi.org/project/claude-code-kit/)
|
|
47
53
|
[](https://pypi.org/project/claude-code-kit/)
|
|
48
54
|
[](LICENSE)
|
|
@@ -100,7 +106,7 @@ Quick start) for the full breakdown of any row.
|
|
|
100
106
|
| 🔁 **Pipeline & quality gates** | Gate-enforced progression (zero open Critical/High/Medium to advance), per-profile gate sets, a fast-track for small changes, and an anti-sycophancy `devils-advocate` pass |
|
|
101
107
|
| 🤖 **Agent roster** | **28** tiered agents + per-database overlays + **6** org personas, led by an Orchestrator that never writes code |
|
|
102
108
|
| 🔍 **Self-verification & review** | RARV green-Verify (real commands, not imagined), blind parallel review, and read-only risk classification |
|
|
103
|
-
| 📐 **Rules & skills** | **
|
|
109
|
+
| 📐 **Rules & skills** | **25** stack-agnostic core rules (incl. 8 agent-operation rules) + **104** context-activated skills (56 core + 48 stack-collection) |
|
|
104
110
|
| 🧱 **Stacks & overlays** | Stack-agnostic core + **10** overlay rule sets (React · FastAPI · Go · Postgres · Mongo) wired to your exact commands, incl. a full React design system |
|
|
105
111
|
| 🎚️ **Profiles, scopes & org** | **3** rigor profiles · **3** scopes · **5** autonomy levels · **7** org packs + **10** policy rules |
|
|
106
112
|
| 🧠 **Memory & learning** | Working memory across context compaction + a cost-aware learnings loop (`capture_mode`) so the same mistake isn't repeated |
|
|
@@ -324,8 +330,8 @@ need.
|
|
|
324
330
|
|
|
325
331
|
<br>
|
|
326
332
|
|
|
327
|
-
- **
|
|
328
|
-
`rarv-cycle`, `continuity`, plus eight agent-operation rules and `autonomy-levels` +
|
|
333
|
+
- **25 stack-agnostic core rules** in [`rules/`](rules/) — `mandatory-workflow`, `quality-gates`,
|
|
334
|
+
`rarv-cycle`, `continuity`, `wave-orchestration`, plus eight agent-operation rules and `autonomy-levels` +
|
|
329
335
|
`risk-classification` (see [`docs/agentic-patterns.md`](docs/agentic-patterns.md)).
|
|
330
336
|
- **104 on-demand skills** in [`skills/`](skills/) (56 core + 48 stack-collection) — spec-driven dev, planning, TDD, debugging, code
|
|
331
337
|
review, threat modeling, and more — activated by context and led by the `sdlc` entrypoint.
|
|
@@ -363,6 +369,26 @@ need.
|
|
|
363
369
|
compliance, production-data) install only in organization scope (see
|
|
364
370
|
[`docs/org-capabilities.md`](docs/org-capabilities.md)).
|
|
365
371
|
|
|
372
|
+
**What loads into your context** — the profile you pick decides how much lands in `.claude/`. Measured
|
|
373
|
+
on a React + FastAPI + PostgreSQL project, individual scope:
|
|
374
|
+
|
|
375
|
+
| Profile | Agents | Skills | Rules |
|
|
376
|
+
|---------|-------:|-------:|------:|
|
|
377
|
+
| `lean` | 8 | 14 | 35 |
|
|
378
|
+
| `standard` (default) | 26 | 42 | 35 |
|
|
379
|
+
| `enterprise` | 31 | 104 | 35 |
|
|
380
|
+
|
|
381
|
+
- **Rules are profile-independent** — every profile installs the same 25 core rules + the selected
|
|
382
|
+
stack's overlays (11 for this stack = 35); rigor changes the *agents and gates*, not the rule set.
|
|
383
|
+
- **Skills activate on demand** — they are installed and available, then pulled into context by task
|
|
384
|
+
relevance, not all held resident at once. The count is what's on disk, not a fixed context tax.
|
|
385
|
+
- **Counts include stack overlays** — the numbers above already fold in the chosen stack (e.g. the
|
|
386
|
+
Postgres overlay adds 3 agents, which is why `enterprise` shows 31 against a 28-agent core roster). A
|
|
387
|
+
different stack shifts them by a few.
|
|
388
|
+
- **`enterprise` installs the whole skill collection** (`skills: all`) — all 104 skills, including
|
|
389
|
+
collection skills for stacks you didn't select. That's disk/selection footprint, not always-resident
|
|
390
|
+
context, but if you want a tighter install prefer `standard`. See [`docs/skill-audit.md`](docs/skill-audit.md).
|
|
391
|
+
|
|
366
392
|
</details>
|
|
367
393
|
|
|
368
394
|
<details>
|
|
@@ -483,7 +509,7 @@ owned gates, and the rule that **no gate passes on an unproven verdict**.
|
|
|
483
509
|
| **[wshobson/agents](https://github.com/wshobson/agents)** & similar agent collections | Large libraries of individual subagent prompts you pick from | A **smaller, opinionated set wired into a sequenced pipeline with owned quality gates** — agents aren't a menu, they're stages that hand off and block on each other. Adopt-by-reuse, not by accumulation. |
|
|
484
510
|
| **[GitHub spec-kit](https://github.com/github/spec-kit)** | A spec-driven workflow (constitution → spec → tasks → analyze) | The same coverage-gate idea (the `story-planner` 1f gate + `task-tracker-sync`) **absorbed into a broader** lifecycle that also covers review, security, build, test, release, and observability gates. Complementary, wider scope. |
|
|
485
511
|
| **claude-flow / multi-agent runtimes** | Runtime orchestrators that *execute* swarms of agents | **Portable configuration**, not a running process — the orchestration is described in rules the host (Claude Code) executes. No daemon, no lock-in, no app code. |
|
|
486
|
-
| **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | A **catalog-driven generator**: resolves your stack/profile/scope into the right subset of
|
|
512
|
+
| **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | A **catalog-driven generator**: resolves your stack/profile/scope into the right subset of 25 rules, 28 agents, 104 skills, gates, and hooks, kept **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
|
|
487
513
|
|
|
488
514
|
**Choose claude-kit when** you want a consistent, reviewable, **gate-enforced** autonomous-SDLC setup
|
|
489
515
|
that's the same across every repo and stack, installs in seconds, ships nothing you have to run, and
|
|
@@ -686,7 +712,7 @@ rollback) in `security-and-hardening` (from `Netflix/repokid`).
|
|
|
686
712
|
|
|
687
713
|
## Rules & skills
|
|
688
714
|
|
|
689
|
-
**Rules** ([`rules/`](rules/)) are the
|
|
715
|
+
**Rules** ([`rules/`](rules/)) are the 25 stack-agnostic contracts every agent obeys — the
|
|
690
716
|
`mandatory-workflow` pipeline, `quality-gates`, `rarv-cycle`, `continuity`, `documentation`,
|
|
691
717
|
`testing`, the eight agent-operation rules (`reasoning-techniques`, `agent-guardrails`,
|
|
692
718
|
`agent-resilience`, `goal-setting-and-monitoring`, `human-in-the-loop`, `model-tiers`, `evals`,
|
|
@@ -838,7 +864,7 @@ build attestations** for supply-chain provenance. Report vulnerabilities private
|
|
|
838
864
|
```
|
|
839
865
|
claude-kit/
|
|
840
866
|
├── .claude-plugin/ plugin.json + marketplace.json
|
|
841
|
-
├── agents/ 28 SDLC agents rules/
|
|
867
|
+
├── agents/ 28 SDLC agents rules/ 25 engineering rules
|
|
842
868
|
├── skills/ on-demand skills templates/ CLAUDE.md, settings, artifacts, memory seeds
|
|
843
869
|
├── commands/ /claude-kit:* commands hooks/ hooks.json + scripts/
|
|
844
870
|
├── catalog/ stacks·profiles·mcp·org templates/stacks/ per-stack overlay rules + agents
|
|
@@ -10,6 +10,12 @@ assumed, or partial-output "it works" is itself an auto-Critical finding — so
|
|
|
10
10
|
checks actually ran. A Cookiecutter-style scaffolder, installed as **configuration only — no
|
|
11
11
|
application code, no Docker.**
|
|
12
12
|
|
|
13
|
+
<!-- DEMO PLACEHOLDER — a 60–90s terminal capture of a gated `/sdlc` run belongs here once recorded.
|
|
14
|
+
Shot list, timing, and which real assets to show: docs/launch/demo-script.md.
|
|
15
|
+
The recording replays the genuine run already in examples/real-run/ (the devils-advocate catching a
|
|
16
|
+
Medium bug a unanimous review missed, and the gate refusing to advance until it was fixed).
|
|
17
|
+
Until the GIF exists, that folder IS the evidence — linked from "How it works" and "The pipeline" below. -->
|
|
18
|
+
|
|
13
19
|
[](https://pypi.org/project/claude-code-kit/)
|
|
14
20
|
[](https://pypi.org/project/claude-code-kit/)
|
|
15
21
|
[](LICENSE)
|
|
@@ -67,7 +73,7 @@ Quick start) for the full breakdown of any row.
|
|
|
67
73
|
| 🔁 **Pipeline & quality gates** | Gate-enforced progression (zero open Critical/High/Medium to advance), per-profile gate sets, a fast-track for small changes, and an anti-sycophancy `devils-advocate` pass |
|
|
68
74
|
| 🤖 **Agent roster** | **28** tiered agents + per-database overlays + **6** org personas, led by an Orchestrator that never writes code |
|
|
69
75
|
| 🔍 **Self-verification & review** | RARV green-Verify (real commands, not imagined), blind parallel review, and read-only risk classification |
|
|
70
|
-
| 📐 **Rules & skills** | **
|
|
76
|
+
| 📐 **Rules & skills** | **25** stack-agnostic core rules (incl. 8 agent-operation rules) + **104** context-activated skills (56 core + 48 stack-collection) |
|
|
71
77
|
| 🧱 **Stacks & overlays** | Stack-agnostic core + **10** overlay rule sets (React · FastAPI · Go · Postgres · Mongo) wired to your exact commands, incl. a full React design system |
|
|
72
78
|
| 🎚️ **Profiles, scopes & org** | **3** rigor profiles · **3** scopes · **5** autonomy levels · **7** org packs + **10** policy rules |
|
|
73
79
|
| 🧠 **Memory & learning** | Working memory across context compaction + a cost-aware learnings loop (`capture_mode`) so the same mistake isn't repeated |
|
|
@@ -291,8 +297,8 @@ need.
|
|
|
291
297
|
|
|
292
298
|
<br>
|
|
293
299
|
|
|
294
|
-
- **
|
|
295
|
-
`rarv-cycle`, `continuity`, plus eight agent-operation rules and `autonomy-levels` +
|
|
300
|
+
- **25 stack-agnostic core rules** in [`rules/`](rules/) — `mandatory-workflow`, `quality-gates`,
|
|
301
|
+
`rarv-cycle`, `continuity`, `wave-orchestration`, plus eight agent-operation rules and `autonomy-levels` +
|
|
296
302
|
`risk-classification` (see [`docs/agentic-patterns.md`](docs/agentic-patterns.md)).
|
|
297
303
|
- **104 on-demand skills** in [`skills/`](skills/) (56 core + 48 stack-collection) — spec-driven dev, planning, TDD, debugging, code
|
|
298
304
|
review, threat modeling, and more — activated by context and led by the `sdlc` entrypoint.
|
|
@@ -330,6 +336,26 @@ need.
|
|
|
330
336
|
compliance, production-data) install only in organization scope (see
|
|
331
337
|
[`docs/org-capabilities.md`](docs/org-capabilities.md)).
|
|
332
338
|
|
|
339
|
+
**What loads into your context** — the profile you pick decides how much lands in `.claude/`. Measured
|
|
340
|
+
on a React + FastAPI + PostgreSQL project, individual scope:
|
|
341
|
+
|
|
342
|
+
| Profile | Agents | Skills | Rules |
|
|
343
|
+
|---------|-------:|-------:|------:|
|
|
344
|
+
| `lean` | 8 | 14 | 35 |
|
|
345
|
+
| `standard` (default) | 26 | 42 | 35 |
|
|
346
|
+
| `enterprise` | 31 | 104 | 35 |
|
|
347
|
+
|
|
348
|
+
- **Rules are profile-independent** — every profile installs the same 25 core rules + the selected
|
|
349
|
+
stack's overlays (11 for this stack = 35); rigor changes the *agents and gates*, not the rule set.
|
|
350
|
+
- **Skills activate on demand** — they are installed and available, then pulled into context by task
|
|
351
|
+
relevance, not all held resident at once. The count is what's on disk, not a fixed context tax.
|
|
352
|
+
- **Counts include stack overlays** — the numbers above already fold in the chosen stack (e.g. the
|
|
353
|
+
Postgres overlay adds 3 agents, which is why `enterprise` shows 31 against a 28-agent core roster). A
|
|
354
|
+
different stack shifts them by a few.
|
|
355
|
+
- **`enterprise` installs the whole skill collection** (`skills: all`) — all 104 skills, including
|
|
356
|
+
collection skills for stacks you didn't select. That's disk/selection footprint, not always-resident
|
|
357
|
+
context, but if you want a tighter install prefer `standard`. See [`docs/skill-audit.md`](docs/skill-audit.md).
|
|
358
|
+
|
|
333
359
|
</details>
|
|
334
360
|
|
|
335
361
|
<details>
|
|
@@ -450,7 +476,7 @@ owned gates, and the rule that **no gate passes on an unproven verdict**.
|
|
|
450
476
|
| **[wshobson/agents](https://github.com/wshobson/agents)** & similar agent collections | Large libraries of individual subagent prompts you pick from | A **smaller, opinionated set wired into a sequenced pipeline with owned quality gates** — agents aren't a menu, they're stages that hand off and block on each other. Adopt-by-reuse, not by accumulation. |
|
|
451
477
|
| **[GitHub spec-kit](https://github.com/github/spec-kit)** | A spec-driven workflow (constitution → spec → tasks → analyze) | The same coverage-gate idea (the `story-planner` 1f gate + `task-tracker-sync`) **absorbed into a broader** lifecycle that also covers review, security, build, test, release, and observability gates. Complementary, wider scope. |
|
|
452
478
|
| **claude-flow / multi-agent runtimes** | Runtime orchestrators that *execute* swarms of agents | **Portable configuration**, not a running process — the orchestration is described in rules the host (Claude Code) executes. No daemon, no lock-in, no app code. |
|
|
453
|
-
| **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | A **catalog-driven generator**: resolves your stack/profile/scope into the right subset of
|
|
479
|
+
| **dotfiles / `CLAUDE.md` starters** | A single rules file or settings snippet | A **catalog-driven generator**: resolves your stack/profile/scope into the right subset of 25 rules, 28 agents, 104 skills, gates, and hooks, kept **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
|
|
454
480
|
|
|
455
481
|
**Choose claude-kit when** you want a consistent, reviewable, **gate-enforced** autonomous-SDLC setup
|
|
456
482
|
that's the same across every repo and stack, installs in seconds, ships nothing you have to run, and
|
|
@@ -653,7 +679,7 @@ rollback) in `security-and-hardening` (from `Netflix/repokid`).
|
|
|
653
679
|
|
|
654
680
|
## Rules & skills
|
|
655
681
|
|
|
656
|
-
**Rules** ([`rules/`](rules/)) are the
|
|
682
|
+
**Rules** ([`rules/`](rules/)) are the 25 stack-agnostic contracts every agent obeys — the
|
|
657
683
|
`mandatory-workflow` pipeline, `quality-gates`, `rarv-cycle`, `continuity`, `documentation`,
|
|
658
684
|
`testing`, the eight agent-operation rules (`reasoning-techniques`, `agent-guardrails`,
|
|
659
685
|
`agent-resilience`, `goal-setting-and-monitoring`, `human-in-the-loop`, `model-tiers`, `evals`,
|
|
@@ -805,7 +831,7 @@ build attestations** for supply-chain provenance. Report vulnerabilities private
|
|
|
805
831
|
```
|
|
806
832
|
claude-kit/
|
|
807
833
|
├── .claude-plugin/ plugin.json + marketplace.json
|
|
808
|
-
├── agents/ 28 SDLC agents rules/
|
|
834
|
+
├── agents/ 28 SDLC agents rules/ 25 engineering rules
|
|
809
835
|
├── skills/ on-demand skills templates/ CLAUDE.md, settings, artifacts, memory seeds
|
|
810
836
|
├── commands/ /claude-kit:* commands hooks/ hooks.json + scripts/
|
|
811
837
|
├── catalog/ stacks·profiles·mcp·org templates/stacks/ per-stack overlay rules + agents
|
|
@@ -177,6 +177,34 @@ If the PRD contains **multiple independent features**, decompose into separate p
|
|
|
177
177
|
### Mode D: Fast-Track (bug fixes, small changes)
|
|
178
178
|
Minimal pipeline for changes touching < 5 files or bug fixes. Skips spec, design, review chain. Goes straight to: Developer → Code Reviewer → Tester → PR Raiser.
|
|
179
179
|
|
|
180
|
+
### Mode E: Program / Wave Mode (migrations, repo-wide refactors, irreversible steps)
|
|
181
|
+
For **program-scale** work — many files across multiple subsystems (> ~20 files or > 2 independent
|
|
182
|
+
lanes), or ANY run containing an irreversible step (production data mutation, schema migration,
|
|
183
|
+
deletion sweep, dependency prune). Governed by `.claude/rules/wave-orchestration.md`:
|
|
184
|
+
|
|
185
|
+
```
|
|
186
|
+
Wave 0: parallel read-only AUDIT workers (one disjoint slice each: routes, entry points,
|
|
187
|
+
schema, shared libs, scripts, docs, CI)
|
|
188
|
+
→ synthesize ONE manifest committed to the repo (docs/specs/{program}_manifest.md):
|
|
189
|
+
every unit gets a verdict + wave number; unknowns marked UNKNOWN = stop and ask
|
|
190
|
+
→ restore-point git tag
|
|
191
|
+
Wave 1..N: risk-ordered execution waves (safest first, irreversible LAST)
|
|
192
|
+
— within a wave: parallel workers with explicitly DISJOINT file boundaries
|
|
193
|
+
— between waves: dedicated GATE-RUNNER workers (regression suite on an isolated
|
|
194
|
+
branch/worktree; backup audit + fresh snapshot before any destructive wave; git tag
|
|
195
|
+
per landed wave)
|
|
196
|
+
— irreversible steps: worker proposes a dry-run INVENTORY (exact units + counts),
|
|
197
|
+
human approves the list, worker executes exactly that list, counts re-verified
|
|
198
|
+
Final wave: knowledge closeout — update CLAUDE.md/rules/skills/runbooks + agent memory
|
|
199
|
+
to describe the NEW state (refresh-docs, remember, consolidate-learnings)
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
Inside each manifest unit, workers still follow the normal pipeline stages for their scope (a
|
|
203
|
+
unit that is feature-sized runs Mode A/D internally). You remain a pure orchestrator: hold the
|
|
204
|
+
manifest, the wave state, and the scope rulings; write zero code. Scope surprises are absorbed by
|
|
205
|
+
YOU as manifest overrides — workers stop and report, never improvise (see Escalation Protocol for
|
|
206
|
+
Workers below).
|
|
207
|
+
|
|
180
208
|
---
|
|
181
209
|
|
|
182
210
|
## Execution Protocol
|
|
@@ -185,8 +213,10 @@ Minimal pipeline for changes touching < 5 files or bug fixes. Skips spec, design
|
|
|
185
213
|
- Parse the incoming PRD or unstructured requirements.
|
|
186
214
|
- Resolve ambiguities with the human before proceeding.
|
|
187
215
|
- **Classify work type**: `backend-only`, `frontend-only`, or `full-stack`.
|
|
188
|
-
- **Classify scope**: `fast-track` (< 5 files, bug fix), `single-feature`,
|
|
189
|
-
-
|
|
216
|
+
- **Classify scope**: `fast-track` (< 5 files, bug fix), `single-feature`, `multi-feature`, or
|
|
217
|
+
`program-scale` (> ~20 files / multiple subsystems, or any irreversible step — see
|
|
218
|
+
`.claude/rules/wave-orchestration.md`; use the `risk-classifier` agent when in doubt).
|
|
219
|
+
- Choose execution mode: **D** (fast-track), **A** (single-stack), **B** (full-stack parallel), **C** (multi-feature), or **E** (program/wave).
|
|
190
220
|
- Create pipeline state: `PIPELINE: Stage 0 - Mode {A|B|C} selected`.
|
|
191
221
|
|
|
192
222
|
### Stage 1-2: Spec & Doc Writer (combined)
|
|
@@ -448,6 +478,14 @@ If any tester or senior tester (across any testing lane) finds issues:
|
|
|
448
478
|
- All Testers complete → then All Senior Testers start → then Merge Reviewer verifies test coverage
|
|
449
479
|
- PR Raiser → after test coverage merge reviewer passes
|
|
450
480
|
|
|
481
|
+
### Disjoint file boundaries (mandatory for EVERY parallel spawn):
|
|
482
|
+
Every prompt you give a parallel worker MUST name the exact files/directories it may touch, and the
|
|
483
|
+
boundaries of concurrently-running workers MUST be mutually disjoint. No two agents may have the
|
|
484
|
+
same file in scope at the same time; a file in no boundary is out of scope for everyone. A worker
|
|
485
|
+
needing a file outside its boundary stops and reports to you — it never edits it. This is what makes
|
|
486
|
+
parallelism safe: no merge conflicts, no cross-lane coordination
|
|
487
|
+
(`.claude/rules/wave-orchestration.md` §3).
|
|
488
|
+
|
|
451
489
|
### Spawning parallel agents:
|
|
452
490
|
When forking, launch ALL agents in the parallel lanes simultaneously:
|
|
453
491
|
```
|
|
@@ -489,6 +527,53 @@ status`; never edit code yourself.
|
|
|
489
527
|
|
|
490
528
|
---
|
|
491
529
|
|
|
530
|
+
## Skill Routing (every spawn names its skills)
|
|
531
|
+
|
|
532
|
+
Workers do not discover skills by luck. **Every spawn prompt names the skill(s) the agent must
|
|
533
|
+
load** for its stage — from the installed set (check `.claude/skills/`; the `using-agent-skills`
|
|
534
|
+
decision tree is the fallback router). Baseline map:
|
|
535
|
+
|
|
536
|
+
| Stage / worker | Instruct it to use |
|
|
537
|
+
|----------------|--------------------|
|
|
538
|
+
| Spec & dev docs | `spec-driven-development` · `interview-me` (if ambiguous) · `scope` |
|
|
539
|
+
| Story planning | `planning-and-task-breakdown` |
|
|
540
|
+
| Design (UI) | `ui-ux-design` · `component-design` |
|
|
541
|
+
| Implementation | `incremental-implementation` · `context-engineering` · the stack overlay skills for the lane (e.g. API lane → `api-and-interface-design`; UI lane → `frontend-ui-engineering`) · `doubt-driven-development` when stakes are high/unfamiliar |
|
|
542
|
+
| Code review | `code-review-and-quality` · `over-engineering-review` (when warranted) |
|
|
543
|
+
| Testing | `test-driven-development` · `unit-test` · `browser-testing-with-devtools` (UI) · `test-plan-review` (senior) |
|
|
544
|
+
| Security | `security-and-hardening` · `security-verification` · `threat-model` (new surface) |
|
|
545
|
+
| Audit workers (Mode E Wave 0) | read-only exploration + `scope`; report format per the manifest |
|
|
546
|
+
| Gate runners | `smoke-test` / `manual-test` / the project's regression suite |
|
|
547
|
+
| Debugging / defect loop | `debugging-and-error-recovery` · `bug-hunt` |
|
|
548
|
+
| PR / delivery | `git-workflow-and-versioning` · `shipping-and-launch` |
|
|
549
|
+
| Knowledge closeout (Mode E final wave) | `refresh-docs` · `documentation-and-adrs` · `remember` · `consolidate-learnings` |
|
|
550
|
+
|
|
551
|
+
Only route to skills that are actually installed (profiles install different subsets); when a listed
|
|
552
|
+
skill is absent, drop it silently rather than blocking.
|
|
553
|
+
|
|
554
|
+
## Model Tiering (match the model to the worker)
|
|
555
|
+
|
|
556
|
+
Pick each spawned agent's model per `.claude/rules/model-tiers.md` — don't run everything on the top
|
|
557
|
+
tier. Rule of thumb: read-only audits, mechanical sweeps, and scanners → cheap tier; implementation,
|
|
558
|
+
review, and gate adjudication → standard tier; orchestration and genuinely hard architectural
|
|
559
|
+
reasoning → top tier. In Mode E the audit wave should be the cheapest line item in the program.
|
|
560
|
+
|
|
561
|
+
## Escalation Protocol for Workers
|
|
562
|
+
|
|
563
|
+
State this in **every** worker prompt: *if reality disagrees with your instructions (or, in Mode E,
|
|
564
|
+
with the manifest) — a dependency the plan missed, a file outside your boundary you seem to need, a
|
|
565
|
+
verdict that looks wrong — STOP and report to the orchestrator. Do not improvise, do not expand your
|
|
566
|
+
own scope, do not "fix it while you're there."*
|
|
567
|
+
|
|
568
|
+
You absorb the surprise into the plan: re-route, re-scope a lane, demote a Mode E unit to a later
|
|
569
|
+
wave, record the override (in the manifest for Mode E; in CONTINUITY.md always), or escalate to the
|
|
570
|
+
human per `.claude/rules/human-in-the-loop.md`. Workers never make scope decisions. For irreversible
|
|
571
|
+
steps, apply the **inventory pattern**: the worker proposes the exact list (dry-run counts), the
|
|
572
|
+
human approves the list — not the idea — and the worker executes exactly that list
|
|
573
|
+
(`.claude/rules/wave-orchestration.md` §5).
|
|
574
|
+
|
|
575
|
+
---
|
|
576
|
+
|
|
492
577
|
## State Tracking
|
|
493
578
|
|
|
494
579
|
```
|
|
@@ -617,3 +702,8 @@ When an agent fails, follow this escalation:
|
|
|
617
702
|
16. **Persist working memory.** Read/write `.claude/CONTINUITY.md` every turn and at every stage transition; recover from it after compaction. Mirror gate-precise state into `.claude/state/pipeline-snapshot.json` and resume from it by *reloading* (re-enter after `last_gate_passed`), never by re-running passed gates or re-applying committed edits.
|
|
618
703
|
17. **Anti-sycophancy.** In standard+, the plan is critiqued by `devils-advocate` before approval is final (Stage PC); and a unanimous PASS at the test-coverage gate is not VERIFIED until `devils-advocate` returns CONFIRMED.
|
|
619
704
|
18. **Operability gates.** For deployable/observable changes, run DevOps (Pipeline Green) and Observability (Observability Ready) before the PR Raiser.
|
|
705
|
+
19. **Name the skills in every spawn.** Each worker prompt states which skill(s) to load for its stage (Skill Routing table); never assume a worker will find them itself.
|
|
706
|
+
20. **Disjoint boundaries in every parallel spawn.** Every parallel worker prompt names its exact file boundary; concurrent boundaries never overlap.
|
|
707
|
+
21. **Program-scale work goes through Mode E.** Audit-first frozen manifest, risk-ordered waves (irreversible last), gate-runner workers between waves, inventory approval for irreversible steps, knowledge closeout as the final wave (`.claude/rules/wave-orchestration.md`).
|
|
708
|
+
22. **Workers propose; humans approve.** Merges to the mainline, data changes, schema migrations, and UNKNOWN scope rulings are human decisions on a precise proposed inventory — approve the list, not the idea.
|
|
709
|
+
23. **Match the model to the worker** per `.claude/rules/model-tiers.md` — cheap tier for audits/sweeps/scans, standard for build/review/gates, top tier only for orchestration and hard reasoning.
|