claude-code-kit 0.52.0__tar.gz → 0.54.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.52.0 → claude_code_kit-0.54.0}/.claude-plugin/marketplace.json +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/.claude-plugin/plugin.json +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/CHANGELOG.md +128 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/CLAUDE.md +3 -3
- claude_code_kit-0.52.0/README.md → claude_code_kit-0.54.0/PKG-INFO +77 -24
- claude_code_kit-0.52.0/PKG-INFO → claude_code_kit-0.54.0/README.md +44 -54
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/devils-advocate.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/devops-engineer.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/incident-responder.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/policy-validator.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/security-reviewer.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/senior-frontend-dev.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/commands/init.md +20 -7
- claude_code_kit-0.54.0/docs/KNOWN_LIMITATIONS.md +63 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/architecture.md +4 -4
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/hooks.json +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/capture-learnings.sh +45 -16
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/guard-destructive-git.sh +43 -4
- claude_code_kit-0.54.0/hooks/scripts/guard-push-main.sh +60 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/guard-secrets.sh +39 -1
- claude_code_kit-0.54.0/hooks/scripts/lint-fix.sh +87 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/warn-llm-io.sh +1 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/warn-sensitive-files.sh +1 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/warn-shared-modules.sh +1 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/pyproject.toml +9 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/agent-resilience.md +4 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/devops-observability.md +30 -0
- claude_code_kit-0.54.0/rules/resilience-engineering.md +143 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/testing.md +38 -2
- claude_code_kit-0.54.0/schemas/README.md +38 -0
- claude_code_kit-0.54.0/schemas/catalog-capture.schema.json +41 -0
- claude_code_kit-0.54.0/schemas/catalog-mcp.schema.json +69 -0
- claude_code_kit-0.54.0/schemas/catalog-org.schema.json +102 -0
- claude_code_kit-0.54.0/schemas/catalog-profiles.schema.json +79 -0
- claude_code_kit-0.54.0/schemas/catalog-stacks.schema.json +122 -0
- claude_code_kit-0.54.0/schemas/mcp-lock.schema.json +40 -0
- claude_code_kit-0.54.0/schemas/org-pack.schema.json +111 -0
- claude_code_kit-0.54.0/schemas/pipeline-snapshot.schema.json +52 -0
- claude_code_kit-0.54.0/scripts/check_mcp_pins.py +157 -0
- claude_code_kit-0.54.0/scripts/check_skill_descriptions.py +82 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/accessibility-review/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/anthropic-vertex-integration/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-and-interface-design/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-pagination-filtering-sorting/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/async-python-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/browser-testing-with-devtools/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/bug-hunt/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/code-review-and-quality/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/code-simplification/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/configargparse-yaml-env-layering/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/consolidate-learnings/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dependency-verification/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/SKILL.md +1 -10
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/doc-consolidation/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-compose/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-backend/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-frontend/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/doubt-driven-development/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/edge-to-service-trust-boundary/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/file-export-and-reporting/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcp-cloud-run-github-actions/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcs-file-storage-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/SKILL.md +1 -12
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/idea-refine/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/incident-postmortem/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/interview-me/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubernetes-workload-hardening/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/langfuse-llm-tracing/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/library-review/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/load-testing/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-objection-knex/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/notifications-and-messaging/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/SKILL.md +1 -9
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/over-engineering-review/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/planning-and-task-breakdown/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/radix-tailwind-component-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/react-hook-form-zod-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/redis-caching-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/remember/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/safety-critical-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/sdlc/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/security-and-hardening/SKILL.md +29 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/shannon-ai-pentest/SKILL.md +1 -11
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/shell-review/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/simplification-debt/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/source-driven-development/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/spec-driven-development/SKILL.md +20 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/tanstack-react-query-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/task-tracker-sync/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/test-driven-development/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/test-plan-review/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/threat-model/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/vitest-rtl-msw-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/SKILL.md +1 -11
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zustand-state-patterns/SKILL.md +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/__init__.py +1 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/cli.py +169 -23
- claude_code_kit-0.54.0/src/claude_kit/detect.py +102 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/hooks.py +8 -12
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/models.py +60 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/prompts.py +5 -0
- claude_code_kit-0.54.0/src/claude_kit/report.py +66 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/scaffold.py +24 -5
- claude_code_kit-0.54.0/src/claude_kit/schemas.py +72 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/upgrader.py +70 -9
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/validator.py +118 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/README.claude-sdlc.md.tmpl +11 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/devops-and-release/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/engineering-core/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/non-engineer-builder/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/onboarding-and-docs/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/product-to-code/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/quality-and-review/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/security-and-compliance/pack.yaml +3 -1
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/settings.json +1 -1
- claude_code_kit-0.52.0/hooks/scripts/lint-fix.sh +0 -38
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/.gitignore +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/CONTRIBUTING.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/LICENSE +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/acceptance-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/auditor.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/dependency-scanner.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/developer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/e2e-tester.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/em-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/merge-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/observability-engineer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/orchestrator.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/owasp-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/pr-raiser.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/risk-classifier.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/sdlc-code-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/secret-scanner.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/senior-backend-dev.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/senior-tester.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/spec-doc-writer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/story-planner.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/technical-architect.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/tester.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/ui-designer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/agents/unit-tester.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/catalog/capture.yaml +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/catalog/mcp.yaml +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/catalog/org.yaml +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/catalog/profiles.yaml +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/catalog/stacks.yaml +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/commands/abort.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/commands/sdlc.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/commands/status.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/agentic-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/agents.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/capture-a-real-run.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/coverage-audit.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/eval-harness.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/org-capabilities.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/stack-skills/GAP-ANALYSIS.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/stack-skills/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/docs/stack-skills/REPO-INVENTORY.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/audit-log.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/guard-kubectl-delete.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/load-autonomy.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/load-continuity.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/load-learnings.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/type-check.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/validate-frontmatter.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/validate-settings.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/warn-large-edits.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/hooks/scripts/warn-missing-tests.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/agent-guardrails.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/agent-memory.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/autonomy-levels.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/code-organization.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/continuity.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/design-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/documentation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/evals.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/frontend-best-practices.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/goal-setting-and-monitoring.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/human-in-the-loop.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/linting-and-formatting.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/mandatory-workflow.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/model-tiers.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/quality-gates.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/rarv-cycle.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/reasoning-techniques.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/responsive-and-accessibility.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/risk-classification.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/rules/tool-design.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/scripts/capture-sdlc-run.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/scripts/check_docs_consistency.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/scripts/gen_hooks.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/scripts/init.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/_references/accessibility-checklist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/_references/orchestration-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/_references/performance-checklist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/_references/security-checklist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/_references/testing-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/references/alembic-setup-and-env.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/references/async-and-multitenant-migrations.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/references/troubleshooting-and-debugging.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/alembic-migrations/references/writing-migrations.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/anthropic-vertex-integration/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/anthropic-vertex-integration/references/generate-helpers-and-retry.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/anthropic-vertex-integration/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/anthropic-vertex-integration/references/vertex-client-and-auth.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-integration/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-pagination-filtering-sorting/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-pagination-filtering-sorting/references/query-params-conventions.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-pagination-filtering-sorting/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/api-pagination-filtering-sorting/references/response-metadata.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/archive-sprint/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/async-python-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/async-python-patterns/references/async-boundaries.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/async-python-patterns/references/lifecycle-and-gather.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/async-python-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/references/auth-dependencies.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/references/rbac-and-permissions.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/references/security-hardening.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/auth-and-rbac/references/tokens-and-hashing.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/references/deployment-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/references/entrypoint-and-config.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/references/structure-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backend-repo-architecture/references/troubleshooting.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backlog/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/backlog/item-template.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/ci-cd-and-automation/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/component-design/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/configargparse-yaml-env-layering/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/configargparse-yaml-env-layering/references/config-layering-anatomy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/configargparse-yaml-env-layering/references/mode-dispatch-and-precedence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/configargparse-yaml-env-layering/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/deployment-and-secrets.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/dockerfile-and-compose.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/entrypoint-and-modes.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/kerberos-kinit-bootstrap.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/makefile-dev-workflow.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/containerization-and-deployment/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/context-engineering/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/references/choosing-and-operations.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/references/kubernetes-cronjob.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/cron-and-scheduled-jobs/references/temporal-schedules.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/references/bigquery-advanced-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/references/bigquery-gcs-io.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/references/medallion-architecture.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/data-engineering-bigquery-gcs/references/temp-table-merge-pattern.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/debugging-and-error-recovery/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/decision/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/decision/adr-template.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/deprecation-and-migration/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/anti-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/naming-and-layout.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/patterns-catalog.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/testing-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-patterns-and-conventions/references/troubleshooting.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/references/ai-readiness.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/references/drift-detection.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/references/governance-and-adoption.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/references/system-health-and-maturity.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/design-system-ops/references/token-architecture.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-compose/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-compose/references/compose-services-and-healthchecks.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-compose/references/dev-vs-prod-variants.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-compose/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/references/dockerignore-and-build-secrets.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/references/shared-base-images.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/docker-shared/references/shared-compose-fragments.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-backend/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-backend/references/backend-dockerfile-anatomy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-backend/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-backend/references/system-deps-and-caching.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-frontend/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-frontend/references/build-args-and-nginx.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-frontend/references/frontend-dockerfile-anatomy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/dockerfile-frontend/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/documentation-and-adrs/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/edge-to-service-trust-boundary/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/edge-to-service-trust-boundary/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/edge-to-service-trust-boundary/references/trust-contract.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/execute/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/api-versioning.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/app-factory-and-lifespan.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/custom-route-and-middleware.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/dependency-injection.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/model-and-serialization-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/fastapi-service-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/file-export-and-reporting/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/file-export-and-reporting/references/excel-generation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/file-export-and-reporting/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/file-export-and-reporting/references/streaming-and-downloads.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/references/api-layer-and-types.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/references/divergences.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/references/structure-and-state.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-repo-architecture/references/testing-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/frontend-ui-engineering/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcp-cloud-run-github-actions/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcp-cloud-run-github-actions/references/cloud-run-deploy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcp-cloud-run-github-actions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcp-cloud-run-github-actions/references/workflow-structure.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcs-file-storage-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcs-file-storage-patterns/references/client-and-uploads.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcs-file-storage-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/gcs-file-storage-patterns/references/signed-urls-and-reads.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/git-workflow-and-versioning/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/references/dashboard-json-and-templating.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/references/provisioning-and-organization.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/references/red-metrics-queries.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/grafana-dashboards-and-alerts/references/unified-alerting.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/references/apollo-client-frontend.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/references/apollo-client-setup.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/references/strawberry-backend.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/graphql-patterns/references/when-to-use-graphql.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/idea-refine/examples.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/idea-refine/frameworks.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/idea-refine/refinement-criteria.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/idea-refine/scripts/idea-refine.sh +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/incremental-implementation/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/references/config-and-sasl-kerberos.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/references/consumer-producer-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kafka-config-driven/references/troubleshooting-and-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/references/command-reference.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/references/context-namespace-rbac.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/references/debugging-playbooks.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/references/output-formats-and-selectors.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubectl-operations/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubernetes-workload-hardening/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubernetes-workload-hardening/references/networkpolicy-and-rbac.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubernetes-workload-hardening/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/kubernetes-workload-hardening/references/securitycontext-and-podsecurity.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/langfuse-llm-tracing/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/langfuse-llm-tracing/references/langfuse-client-and-tracing.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/langfuse-llm-tracing/references/python-and-typescript.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/langfuse-llm-tracing/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/manual-test/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/references/migration-best-practices.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/references/pydantic-v1-to-v2.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/references/shared-internal-library.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/modernization-and-migration/references/sqlalchemy-14-to-20.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/references/caching-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/references/isolation-strategies.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/multi-tenancy-patterns/references/tenant-resolution.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/references/app-factory-and-mode-dispatch.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/references/config-and-module-alias.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/references/middleware-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-express-service/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-objection-knex/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-objection-knex/references/migrations-and-validation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-objection-knex/references/objection-model-and-knex.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/node-objection-knex/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/notifications-and-messaging/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/notifications-and-messaging/references/provider-abstraction.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/notifications-and-messaging/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/notifications-and-messaging/references/templates-and-fallback.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/health-and-readiness.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/logging-and-structlog.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/outbound-metrics-and-multi-mode.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/pii-redaction.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/observability-and-logging/references/tracing-and-metrics.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/collector.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/correlation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/gotchas.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/instrumentation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/sampling.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/otel-tracing/references/tempo.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/performance-optimization/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/playwright-verification/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/references/settings-and-validation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/references/troubleshooting-and-common-errors.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/pydantic-schema-patterns/references/v1-vs-v2.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/advanced-query-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/basedao-and-sessions.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/mongodb-advanced.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/other-db-mongodb.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/python-dao-and-database/references/sqlalchemy-1x-vs-2x.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/radix-tailwind-component-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/radix-tailwind-component-patterns/references/radix-primitives-and-variants.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/radix-tailwind-component-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/radix-tailwind-component-patterns/references/tailwind-theme-and-cn.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/react-hook-form-zod-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/react-hook-form-zod-patterns/references/form-setup-and-zod.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/react-hook-form-zod-patterns/references/multi-step-and-modes.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/react-hook-form-zod-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/redis-caching-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/redis-caching-patterns/references/cache-manager-and-fallback.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/redis-caching-patterns/references/namespacing-and-invalidation.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/redis-caching-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/refresh-docs/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/scope/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/scope/scope-template.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/security-verification/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/shannon-ai-pentest/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/shannon-ai-pentest/references/operating-guide.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/shipping-and-launch/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/smoke-test/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/sprint/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/sprint/sprint-template.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/tanstack-react-query-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/tanstack-react-query-patterns/references/mutations-and-cache.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/tanstack-react-query-patterns/references/query-keys-and-hooks.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/tanstack-react-query-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/config-and-retry-idempotency.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/dag-dsl-interpreter.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/schedule-registration.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/schedules-and-cron.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-config-driven/references/worker-workflow-activity-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/cli.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/determinism.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/gotchas.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/languages.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/testing.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/temporal-developer/references/versioning.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/async-and-mocking.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/coverage-gap-and-recommendations.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/github-actions-test-orchestration.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/pytest-and-fixtures.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/pytest-asyncio-modes.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/security-regression-tests.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/testing-conventions/references/vitest-frontend-testing.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/triage/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/ui-ux-design/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/unit-test/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/using-agent-skills/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/vitest-rtl-msw-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/vitest-rtl-msw-patterns/references/msw-and-contract-tests.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/vitest-rtl-msw-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/vitest-rtl-msw-patterns/references/vitest-rtl-setup.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/references/operating-guide.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/scripts/endpoints.example.txt +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/scripts/requirements.txt +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zap-vapt-scanning/scripts/zap_vapt.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zustand-state-patterns/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zustand-state-patterns/references/async-polling-and-persistence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zustand-state-patterns/references/repo-evidence.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/skills/zustand-state-patterns/references/store-structure-and-selectors.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/__main__.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/catalog.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/pipeline.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/src/claude_kit/render.py +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/CLAUDE.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/CLAUDE.stack.md.tmpl +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/CONTINUITY.template.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/MEMORY.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/api/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/architecture/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/debugging/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/gotchas/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/patterns/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/agent-memory/performance/.gitkeep +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/adr.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/api-change-report.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/change-proposal.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/feature-spec.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/release-plan.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/runbook.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/security-review.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/artifacts/test-plan.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/data-workflow-agent.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/founder-prototype-agent.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/internal-tools-builder.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/pm-copilot.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/staff-pm-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/agents/support-ticket-engineer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/devops-and-release/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/engineering-core/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/non-engineer-builder/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/onboarding-and-docs/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/product-to-code/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/quality-and-review/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/packs/security-and-compliance/README.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/ai-working-agreement.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/ambiguity-resolution.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/branch-and-pr-policy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/compliance-policy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/non-engineer-safe-coding.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/pii-policy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/production-data-policy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/prompt-to-task-conversion.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/prototype-boundaries.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/rules/secrets-policy.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/customer-issue-to-fix/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/feature-from-idea/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/prompt-to-safe-task/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/prototype-to-production/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/repo-onboarding/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/review-scope/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/review-sprint/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/review-sprint-plan/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/org/skills/review-ux-flow/SKILL.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/backend/go/net-http/rules/go-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/backend/python/fastapi/rules/fastapi-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/mongodb/agents/migration-specialist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/mongodb/agents/mongodb-specialist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/mongodb/rules/mongodb-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/postgres/agents/db-performance-reviewer.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/postgres/agents/migration-specialist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/postgres/agents/postgres-specialist.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/postgres/rules/database-performance.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/db/postgres/rules/postgres-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/frontend/react/rules/design-system-compliance.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/frontend/react/rules/mobile-design-guidelines.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/frontend/react/rules/react-patterns.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.0}/templates/stacks/frontend/react/rules/ui-design-system.md +0 -0
- {claude_code_kit-0.52.0 → claude_code_kit-0.54.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.54.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.54.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,134 @@ 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.54.0] — 2026-06-29
|
|
8
|
+
|
|
9
|
+
**Safety, correctness, and capability hardening pass.** Two reviews (a fresh practical review and an
|
|
10
|
+
external improvement brief) converged on a set of gaps; every premise was verified against the source
|
|
11
|
+
before acting. No change to the core promise — configuration-only SDLC scaffolding for Claude Code, no
|
|
12
|
+
application code, no Docker, stack-agnostic core, catalog-driven, evidence-backed gates, safe upgrades.
|
|
13
|
+
**0 new agents/skills.**
|
|
14
|
+
|
|
15
|
+
### Security
|
|
16
|
+
|
|
17
|
+
- **Learning capture is privacy-hardened (still on by default).** `capture-learnings.sh` now excludes
|
|
18
|
+
secret-bearing files (`.env`, `*.pem`/`*.key`, `credentials.*`) from the changed-file list, redacts
|
|
19
|
+
leaked-credential value shapes (private keys, `AKIA…`, `sk_live_…`, Slack/GitHub tokens) from
|
|
20
|
+
anything handed to the background job, bounds the payload with env-overridable
|
|
21
|
+
`CLAUDE_KIT_CAPTURE_MAX_LINES` / `CLAUDE_KIT_CAPTURE_MAX_BYTES`, and instructs the job never to record
|
|
22
|
+
secrets/PII. `init` prints a privacy notice (and a jq-missing caveat); `doctor` warns while capture is
|
|
23
|
+
wired; the same caveat is documented in `SECURITY.md` and the project README.
|
|
24
|
+
- **No raw slash-command argument interpolation.** `/claude-kit:init` no longer interpolates the
|
|
25
|
+
textually-substituted `$ARGUMENTS` into any executable shell block; the agent runs the CLI with the
|
|
26
|
+
user's arguments as separate, individually-quoted argv items. A CI test fails on `$ARGUMENTS` inside a
|
|
27
|
+
command's fenced code block.
|
|
28
|
+
- **Git guards hardened** against global-option and refspec bypasses (`git -c …` / `git -C …`,
|
|
29
|
+
`+main`, refspec forms); manual-stdin guards no-op on a TTY.
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- **Command discovery (`detect.py`).** `init`/`upgrade` inspect a populated target for unambiguous
|
|
34
|
+
package-manager signals and wire the real commands into `CLAUDE.md` — JavaScript (npm·pnpm·yarn·bun)
|
|
35
|
+
install + present `package.json` scripts, Python (uv·poetry·pdm·hatch) install. Fail-open and
|
|
36
|
+
conservative (an empty target is a no-op, preserving `init --dry-run` ≡ a real install).
|
|
37
|
+
`--detect-commands` / `--no-detect-commands` opt in/out; recorded in the stack snapshot.
|
|
38
|
+
- **Transactional upgrade journal.** `upgrade` writes `.claude/config/upgrade-in-progress.json` before
|
|
39
|
+
mutating and clears it after the new baseline commits; combined with convergent render-and-compare, an
|
|
40
|
+
interrupted upgrade is finished and cleared by the next run. `doctor` warns while a journal is present;
|
|
41
|
+
it is gitignored. `merge_install` is not journaled.
|
|
42
|
+
- **JSON Schema validation** for the catalog and persisted artifacts (`jsonschema` is an optional
|
|
43
|
+
`[schema]` extra; a no-op when absent). Wired into `validate --strict` and the catalog check.
|
|
44
|
+
- **`--json` output** for `validate`, `doctor`, `diff`, `status`, `pipeline validate|status`, and
|
|
45
|
+
`init --dry-run` via a structured `report` module (human output unchanged).
|
|
46
|
+
- **MCP pin freshness tooling** — an offline CI gate that fails on `@latest`/unpinned servers, plus a
|
|
47
|
+
scheduled workflow that opens a tracking issue when a pin falls behind the registry.
|
|
48
|
+
|
|
49
|
+
### Changed
|
|
50
|
+
|
|
51
|
+
- **`lint-fix.sh` scopes to changed files by default** (git diff vs HEAD + untracked), so a Stop hook
|
|
52
|
+
never reformats files the user didn't touch. `CLAUDE_KIT_AUTOFIX=1` restores whole-repo formatting;
|
|
53
|
+
falls back to whole-repo when git is unavailable.
|
|
54
|
+
- **Planned CLI commands are hidden** from `--help` unless `CLAUDE_KIT_EXPERIMENTAL=1` (still marked
|
|
55
|
+
`[planned]`, still exit non-zero) so they can't be mistaken for working features.
|
|
56
|
+
- **Skill/agent descriptions** front-load their triggers and fit the picker cap; a warn-only CI check
|
|
57
|
+
reports any that exceed it.
|
|
58
|
+
|
|
59
|
+
### Docs
|
|
60
|
+
|
|
61
|
+
- New `docs/KNOWN_LIMITATIONS.md` (guards are best-effort, not a security boundary; command discovery
|
|
62
|
+
scope; non-atomic first install; convergent/journalled upgrades) + a README "Who this is for" section
|
|
63
|
+
and reconciliation/reference fixes.
|
|
64
|
+
|
|
65
|
+
## [0.53.0] — 2026-06-28
|
|
66
|
+
|
|
67
|
+
**Adopt the verified wins from an exhaustive review of three GitHub orgs — `Netflix`, `aws`, and
|
|
68
|
+
`apple`** (all **1,214** public repos: Netflix 234 · aws 549 · apple 431). Every repo was surveyed (34
|
|
69
|
+
agents over every page across the three orgs — no repo skipped), candidates deep-read for license +
|
|
70
|
+
transferable practice, and the shortlist **adversarially verified** against the live source. These orgs
|
|
71
|
+
are overwhelmingly SDKs, CLIs, cloud-product code, and running services with nothing transferable to a
|
|
72
|
+
config scaffolder — but the review surfaced a real **gap**: the kit had `agent-resilience` (the coding
|
|
73
|
+
agent's own retries) yet **no service-level resilience rule at all**. **7 adoptions across the three
|
|
74
|
+
orgs; 1 new rule (`resilience-engineering`), the rest extensions to existing files — 0 new
|
|
75
|
+
agents/skills** (skill counts unchanged at 104/56/48; MCP fragments unchanged at 17; **core rules
|
|
76
|
+
23 → 24**). Everything re-derived **in prose, never vendored**; all sources Apache-2.0 or MIT/Apache-2.0.
|
|
77
|
+
|
|
78
|
+
A note on method: the per-repo deep-dive initially skipped several famous repos on "the source is a
|
|
79
|
+
library/tool, not documentation" grounds — but the kit ships *prose*, so a Java library or a C++ database
|
|
80
|
+
is a perfectly valid *source* for a re-derived discipline. The adversarial-verify pass (one skeptic per
|
|
81
|
+
item, reading the live README + license) judged the **discipline**, not the artifact type, and confirmed
|
|
82
|
+
all seven hold, are stack-agnostic, genuinely new, and permissively licensed.
|
|
83
|
+
|
|
84
|
+
Rules:
|
|
85
|
+
|
|
86
|
+
- **`resilience-engineering.md`** (NEW — the kit's first service-level resilience rule, explicitly
|
|
87
|
+
distinct from `agent-resilience.md`, which is about the coding agent's own machinery). Three sections:
|
|
88
|
+
(1) **stability patterns** at every remote-call boundary — timeout + deadline budget, retry with
|
|
89
|
+
budget/jitter, circuit breaker, bulkhead/isolation, backpressure, load shedding, graceful
|
|
90
|
+
degradation — plus **adaptive concurrency limiting** (TCP-congestion-control + Little's Law to find the
|
|
91
|
+
limit from latency instead of hand-tuning it, server- and client-side, with priority partitioning;
|
|
92
|
+
from the Apache-2.0 `Netflix/concurrency-limits`); (2) **distributed-time correctness** — never compare
|
|
93
|
+
raw wall-clocks across nodes; treat "now" as a `[earliest, latest]` interval and commit-wait for
|
|
94
|
+
cross-node ordering (from the MIT/Apache-2.0 `aws/clock-bound` + Google TrueTime); (3) **chaos
|
|
95
|
+
engineering** — steady-state hypothesis, vary real-world events, minimize blast radius with an automated
|
|
96
|
+
abort, prefer production, run continuously (from the Apache-2.0 `Netflix/chaosmonkey` + Principles of
|
|
97
|
+
Chaos).
|
|
98
|
+
- **`devops-observability.md`** — a **failure-domain-aware progressive rollout** section: update one
|
|
99
|
+
failure domain (zone/region/rack/cell/shard) at a time to contain blast radius, accelerate in
|
|
100
|
+
exponential batches with a readiness gate between them, roll back newest-first to escape a bad revision
|
|
101
|
+
fastest, and pause-on-alarm automatically (from the Apache-2.0 `aws/zone-aware-controllers-for-k8s`).
|
|
102
|
+
- **`testing.md`** — a **Deterministic Simulation Testing** section for concurrency/distributed-system
|
|
103
|
+
bugs: funnel all nondeterminism (clock, RNG, scheduling, IO, network) through injectable seams, drive
|
|
104
|
+
the system from a single seed in single-threaded virtual time so a failing run replays bit-for-bit, and
|
|
105
|
+
inject faults aggressively in-sim (the "buggify" idea); complements fuzzing + property-based testing
|
|
106
|
+
(from the Apache-2.0 `apple/foundationdb`).
|
|
107
|
+
|
|
108
|
+
Skills:
|
|
109
|
+
|
|
110
|
+
- **`spec-driven-development`** — a third proposal mode beyond full-spec and delta-spec: an **RFC track**
|
|
111
|
+
for one-way-door changes (public/cross-service APIs). Adds working-backwards artifacts (write the future
|
|
112
|
+
CHANGELOG/README first), a designated API **bar-raiser** with interface veto, a staged lifecycle
|
|
113
|
+
(feedback → final-comment → API sign-off → implementation planning), and separation of API approval from
|
|
114
|
+
implementation approval (from the Apache-2.0 `aws/aws-cdk-rfcs`).
|
|
115
|
+
- **`security-and-hardening`** — a **Continuous Least-Privilege** section: least privilege is a decay
|
|
116
|
+
loop, not a one-time grant — periodically audit which grants/scopes/roles were *actually exercised* over
|
|
117
|
+
a trailing window, auto-revoke the unused, snapshot policies for fast rollback, and keep an exempt-list
|
|
118
|
+
for break-glass access (from the Apache-2.0 `Netflix/repokid`).
|
|
119
|
+
|
|
120
|
+
Docs/counts: core rules **23 → 24** across `README.md` (5 anchors), `CLAUDE.md`, and
|
|
121
|
+
`docs/architecture.md`; `agent-resilience.md` cross-links the new service-level rule (and vice versa); a
|
|
122
|
+
new Influences row + depth blurb (kept to the latest three reviews — the microsoft 0.50 blurb rolls off).
|
|
123
|
+
|
|
124
|
+
What we **did not** add (already covered, or fails the bar): `Netflix/chaosmonkey`-the-tool,
|
|
125
|
+
`Netflix/dispatch` (archived incident-management *app* — covered by `incident-postmortem` +
|
|
126
|
+
`incident-responder`), `Netflix/maestro` (a workflow-orchestration *platform*, like Airflow/Temporal —
|
|
127
|
+
a tool to use, not a practice), `Netflix/security-bulletins` (disclosure output, covered by the security
|
|
128
|
+
layer); the AWS service/SDK material — `aws-sam-cli`, `aws-pdk`, `aws-lakeformation-best-practices`,
|
|
129
|
+
`aws-networking-best-practices`, `aws-sam-cli-pipeline-init-templates`, `device-storelibrary-cpp`,
|
|
130
|
+
`mcp-proxy-for-aws` (AWS-IAM auth transport, not a tool-exposing MCP server); and `apple`'s
|
|
131
|
+
`apple-root-program` (PKI/CA policy, no license), `batch-processing-gateway` (a Spark-on-K8s service), and
|
|
132
|
+
`pkl-evolution` (a language-evolution RFC — redundant with the richer `aws-cdk-rfcs` RFC track adopted
|
|
133
|
+
above).
|
|
134
|
+
|
|
7
135
|
## [0.52.0] — 2026-06-28
|
|
8
136
|
|
|
9
137
|
**Adopt the verified wins from an exhaustive review of the entire `facebook` (Meta) GitHub org** (all
|
|
@@ -20,9 +20,9 @@ distributed two ways from one source of truth:
|
|
|
20
20
|
| `.claude-plugin/marketplace.json` | Marketplace entry so `/plugin marketplace add` works |
|
|
21
21
|
| `agents/` | SDLC pipeline subagents (auto-discovered by the plugin); each carries a `tier:` field |
|
|
22
22
|
| `skills/` | Agent skills (auto-discovered by the plugin); `skills/sdlc/` is the `/sdlc` entrypoint |
|
|
23
|
-
| `commands/` | Slash commands: `/claude-kit:init`, `:sdlc`, `:status` (init prefers the pip CLI, falls back to `init.sh`; sdlc delegates to the `sdlc` skill) |
|
|
23
|
+
| `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) |
|
|
24
24
|
| `hooks/hooks.json` + `hooks/scripts/` | Event hooks (paths via `${CLAUDE_PLUGIN_ROOT}`) |
|
|
25
|
-
| `rules/` | The
|
|
25
|
+
| `rules/` | The 24-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 service-level `resilience-engineering` rule, and the org-core rules `autonomy-levels` + `risk-classification` (see `docs/org-capabilities.md`) |
|
|
26
26
|
| `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. |
|
|
27
27
|
| `templates/` | `CLAUDE.md`, `CLAUDE.stack.md.tmpl`, `README.claude-sdlc.md.tmpl`, `CONTINUITY.template.md`, `settings.json`, `artifacts/`, `agent-memory/` seed |
|
|
28
28
|
| `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. |
|
|
@@ -49,7 +49,7 @@ root are read directly by the plugin **and** bundled into the wheel (mapped to
|
|
|
49
49
|
and is wired up via `catalog/stacks.yaml` — never leak it into the agnostic core, and never add
|
|
50
50
|
application code or Docker anywhere.
|
|
51
51
|
2. **Reference rules by their canonical filename** under `.claude/rules/…` (that's where they
|
|
52
|
-
land in a user project). The current core rule set is the
|
|
52
|
+
land in a user project). The current core rule set is the 24 files in `rules/` (org policy/vibe
|
|
53
53
|
rules under `templates/org/rules/` install only in organization scope).
|
|
54
54
|
3. **Plugin components live at the repo root**, never inside `.claude-plugin/` (only the
|
|
55
55
|
manifest goes there).
|
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: claude-code-kit
|
|
3
|
+
Version: 0.54.0
|
|
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
|
+
Project-URL: Homepage, https://github.com/ajyadav013/claude-kit
|
|
6
|
+
Project-URL: Repository, https://github.com/ajyadav013/claude-kit
|
|
7
|
+
Project-URL: Issues, https://github.com/ajyadav013/claude-kit/issues
|
|
8
|
+
Author: Arjunsingh Yadav
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agentic,agents,automation,claude,claude-code,code-review,cookiecutter,fastapi,generator,orchestration,react,scaffold,sdlc,testing
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Software Development
|
|
17
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
|
+
Requires-Dist: jinja2>=3.1
|
|
20
|
+
Requires-Dist: pyyaml>=6.0
|
|
21
|
+
Requires-Dist: typer>=0.12
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: build>=1.2; extra == 'dev'
|
|
24
|
+
Requires-Dist: jsonschema>=4.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: ruff>=0.6; extra == 'dev'
|
|
28
|
+
Requires-Dist: shellcheck-py>=0.10; extra == 'dev'
|
|
29
|
+
Requires-Dist: twine>=5.0; extra == 'dev'
|
|
30
|
+
Provides-Extra: schema
|
|
31
|
+
Requires-Dist: jsonschema>=4.0; extra == 'schema'
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
1
34
|
<div align="center">
|
|
2
35
|
|
|
3
36
|
# claude-kit
|
|
@@ -36,14 +69,27 @@ advance until each phase's quality gate passes**. You drive it all with one comm
|
|
|
36
69
|
**`/sdlc <your task>`**.
|
|
37
70
|
|
|
38
71
|
It ships **no application code and needs no Docker** — only the rules, agents, skills, and gates that
|
|
39
|
-
govern *how* the work gets done.
|
|
40
|
-
|
|
72
|
+
govern *how* the work gets done. (Some skills *help Claude write* your Dockerfiles, CI, or k8s manifests
|
|
73
|
+
when you ask — but the scaffolder itself installs none.) Choose your stack, rigor, and team scope at
|
|
74
|
+
`init`; everything else adapts.
|
|
41
75
|
|
|
42
76
|
> Inspired by the autonomous-SDLC idea, rebuilt from the ground up **for Claude Code**, and kept small
|
|
43
77
|
> by a **reuse-first** policy — see [what we adopted](#influences--what-we-adopted) and from where.
|
|
44
78
|
|
|
45
79
|
---
|
|
46
80
|
|
|
81
|
+
## Who this is for
|
|
82
|
+
|
|
83
|
+
**Use claude-kit if** you drive real repository changes with Claude Code and want a repeatable
|
|
84
|
+
spec → review → test → security → PR workflow whose quality gates won't advance on an unproven verdict.
|
|
85
|
+
|
|
86
|
+
**Skip it if** you want a small prompt pack, don't want project config written into your repo, or need a
|
|
87
|
+
standalone runtime/daemon. claude-kit is **configuration for Claude Code**, not a separate runtime — and
|
|
88
|
+
its guard hooks are convenience guardrails (they need `jq` + a POSIX shell and no-op without them), **not
|
|
89
|
+
a hardened security boundary**. See [Known limitations](docs/KNOWN_LIMITATIONS.md).
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
47
93
|
## Features
|
|
48
94
|
|
|
49
95
|
The whole product at a glance — one line each. Expand **[Feature details](#feature-details)** (below
|
|
@@ -54,11 +100,11 @@ Quick start) for the full breakdown of any row.
|
|
|
54
100
|
| 🔁 **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 |
|
|
55
101
|
| 🤖 **Agent roster** | **28** tiered agents + per-database overlays + **6** org personas, led by an Orchestrator that never writes code |
|
|
56
102
|
| 🔍 **Self-verification & review** | RARV green-Verify (real commands, not imagined), blind parallel review, and read-only risk classification |
|
|
57
|
-
| 📐 **Rules & skills** | **
|
|
103
|
+
| 📐 **Rules & skills** | **24** stack-agnostic core rules (incl. 8 agent-operation rules) + **104** context-activated skills (56 core + 48 stack-collection) |
|
|
58
104
|
| 🧱 **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 |
|
|
59
105
|
| 🎚️ **Profiles, scopes & org** | **3** rigor profiles · **3** scopes · **5** autonomy levels · **7** org packs + **10** policy rules |
|
|
60
106
|
| 🧠 **Memory & learning** | Working memory across context compaction + a cost-aware learnings loop (`capture_mode`) so the same mistake isn't repeated |
|
|
61
|
-
| 🛠️ **Hooks & guards** | **
|
|
107
|
+
| 🛠️ **Hooks & guards** | **18** event hooks — blocking safety guards vs. advisory warnings — that no-op gracefully without `jq` |
|
|
62
108
|
| 📦 **Distribution & lifecycle** | Plugin **and** pip from one source, **17** ready MCP fragments, and edit-preserving `upgrade` |
|
|
63
109
|
| ♻️ **Reuse-first by design** | Adopt-only-the-new reviews, opt-in LLM/AI security (OWASP LLM Top 10), a worked example + self-test matrix |
|
|
64
110
|
|
|
@@ -248,7 +294,7 @@ need.
|
|
|
248
294
|
|
|
249
295
|
<br>
|
|
250
296
|
|
|
251
|
-
- **
|
|
297
|
+
- **24 stack-agnostic core rules** in [`rules/`](rules/) — `mandatory-workflow`, `quality-gates`,
|
|
252
298
|
`rarv-cycle`, `continuity`, plus eight agent-operation rules and `autonomy-levels` +
|
|
253
299
|
`risk-classification` (see [`docs/agentic-patterns.md`](docs/agentic-patterns.md)).
|
|
254
300
|
- **104 on-demand skills** in [`skills/`](skills/) (56 core + 48 stack-collection) — spec-driven dev, planning, TDD, debugging, code
|
|
@@ -308,7 +354,7 @@ need.
|
|
|
308
354
|
|
|
309
355
|
<br>
|
|
310
356
|
|
|
311
|
-
- **
|
|
357
|
+
- **18 event hook scripts** in [`hooks/`](hooks/) enforce the pipeline outside the model —
|
|
312
358
|
`guard-secrets`, `guard-destructive-git`, `lint-fix`, `type-check`, and `validate-settings` run
|
|
313
359
|
deterministically.
|
|
314
360
|
- **Advisory, never-blocking warnings** — `warn-llm-io`, `warn-large-edits`, `warn-missing-tests`, and
|
|
@@ -407,7 +453,7 @@ owned gates, and the rule that **no gate passes on an unproven verdict**.
|
|
|
407
453
|
| **[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. |
|
|
408
454
|
| **[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. |
|
|
409
455
|
| **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. |
|
|
410
|
-
| **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
|
|
456
|
+
| **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 24 rules, 28 agents, 104 skills, gates, and hooks, kept **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
|
|
411
457
|
|
|
412
458
|
**Choose claude-kit when** you want a consistent, reviewable, **gate-enforced** autonomous-SDLC setup
|
|
413
459
|
that's the same across every repo and stack, installs in seconds, ships nothing you have to run, and
|
|
@@ -490,6 +536,7 @@ non-duplicative gaps**, minimally and catalog-wired.
|
|
|
490
536
|
| **[microsoft](https://github.com/microsoft) org review** (all 8,147 repos) | OWASP Agentic Top-10 (ASI01–ASI10) agent threats; agent-aware evals (multi-judge panels, multi-turn degradation, tool-vs-response grading); validator-in-the-loop + Medprompt prompting; sandbox policy schema & layered prompt-injection defense; approval-gate implementation; security-lint layer & SBOM; operationalized GenAI red-teaming; priority-based prompt pruning; quantified-lines PR sizing; first-party MCP servers | Extensions across `agent-guardrails` (ASI01–ASI10 + sandbox policy + injection layers), `evals` (§3 panels, §8 multi-turn), `reasoning-techniques`, `human-in-the-loop`, `linting-and-formatting`, `threat-model`, `security-and-hardening` (SBOM), `context-engineering`, `code-review-and-quality` + 4 MCP fragments (Azure · Azure DevOps · MS Learn · Wassette) — **0 new agents/skills/rules** (from agent-governance-toolkit · mxc · llmail-inject-challenge · lost_in_conversation · llm-as-judge · EvalsforAgentsInterop · promptbase · dsl-copilot · agents-humanoversight · PyRIT · eslint-plugin-sdl · sbom-tool · vscode-prompt-tsx · PullRequestQuantifier) | `0.50.0` |
|
|
491
537
|
| **[google](https://github.com/google) org review** (all 2,881 repos) | Reproducible-build verification & source-level missing-patch detection; secure-by-construction injection defense; archive-extraction & ReDoS hardening; multi-party authorization / breakglass; coverage-guided & continuous fuzzing; parameterized + semantic-equality + parallel/flaky testing; compile-time logic-bug & license-header lint layers + deterministic block sorting; multi-window burn-rate alerting & log rate-limiting; long-document extraction; prompt-as-code; statistical browser benchmarking; durable atomic writes; record-replay API testing; first-party SecOps MCP servers | Prose extensions across `security-and-hardening` (reproducible-build · missing-patch · secure-by-construction · archive · ReDoS), `human-in-the-loop` (MPA/breakglass), `testing` (fuzzing · parameterized · semantic-equality · parallel/flaky), `linting-and-formatting` (logic-bug + license-header layers · block sorting), `devops-observability` (burn-rate · log rate-limit), `context-engineering` (long-doc extraction), `reasoning-techniques` (prompt-as-code), `performance-optimization` (statistical benchmarking), `tool-design` (durable atomic writes), `api-integration` (record-replay) + **4 first-party SecOps MCP fragments** (Chronicle SIEM · GTI · SCC · SOAR) — **0 new agents/skills/rules** (from oss-rebuild · vanir · safe-active-record/mug · safearchive · re2 · building-secure-and-reliable-systems · patrick · go-cmp · atheris/honggfuzz/clusterfuzzlite · gtest-parallel · error-prone · addlicense · keep-sorted · prometheus-slo-burn · flogger · langextract · dotprompt · tachometer · renameio · test-server · mcp-security) | `0.51.0` |
|
|
492
538
|
| **[facebook](https://github.com/facebook) (Meta) org review** (all 168 repos) | Interprocedural taint / data-flow security analysis (source→sink across functions); continuous A/B performance-regression CI gate; defense-in-depth agent-sandbox enforcement (argument validation + OS-level backstop) | Prose extensions to `linting-and-formatting` (taint/data-flow layer), `devops-observability` (perf-regression gate), `agent-guardrails` (§4 layered sandbox enforcement) — **0 new agents/skills/rules** (from pyre-check/Pysa · mariana-trench · FAI-PEP · mcpguard-dynamic; the org is mostly libraries/frameworks, so the verify pass *dropped* the rest — `DNE-TaaC`, `mbt`, plus already-covered `infer`/`mariana-trench`-as-tool, `fbt`, `memlab`, …) | `0.52.0` |
|
|
539
|
+
| **[Netflix](https://github.com/Netflix) · [aws](https://github.com/aws) · [apple](https://github.com/apple) org review** (all **1,214** repos) | Service-level resilience the kit lacked entirely — stability patterns (timeout/retry-budget/circuit-breaker/bulkhead) + adaptive concurrency limiting, chaos engineering, and bounded-clock distributed time; failure-domain-aware progressive rollout; deterministic simulation testing; a formal RFC process (working-backwards + API bar-raiser); continuous usage-based least-privilege | The **new `resilience-engineering` rule** (chaos + stability patterns + bounded clocks, from `Netflix/concurrency-limits` · `Netflix/chaosmonkey` · `aws/clock-bound`); plus prose extensions to `devops-observability` (failure-domain rollout, from `aws/zone-aware-controllers-for-k8s`), `testing` (deterministic simulation testing, from `apple/foundationdb`), `spec-driven-development` (RFC track, from `aws/aws-cdk-rfcs`), and `security-and-hardening` (continuous least-privilege, from `Netflix/repokid`) — **1 new rule, 0 new agents/skills** (the orgs are overwhelmingly SDKs/CLIs/services, so the survey kept only 7 of 1,214) | `0.53.0` |
|
|
493
540
|
|
|
494
541
|
> Each adoption is detailed in the [CHANGELOG](CHANGELOG.md) — including, for every review, what we
|
|
495
542
|
> deliberately **did not** add because the kit already covered it.
|
|
@@ -499,21 +546,6 @@ non-duplicative gaps**, minimally and catalog-wired.
|
|
|
499
546
|
|
|
500
547
|
<br>
|
|
501
548
|
|
|
502
|
-
**🟦 microsoft org review → agentic-AI hardening (0.50.0).** We reviewed **all 8,147 repos** in the
|
|
503
|
-
Microsoft org (165 survey agents over every page → deep-dive the top candidates → adversarially verify
|
|
504
|
-
the shortlist). The vast majority — SDKs, samples, Azure-product code, ML infra, OS/editor — carried
|
|
505
|
-
nothing transferable, and the verify pass *dropped* two plausible picks (`ToolTalk`, whose
|
|
506
|
-
ground-truth-sequence grading contradicts `evals`' "grade outcomes, not paths"; and `prompty`, an
|
|
507
|
-
LLM-app product, not an SDLC practice). Eighteen survived — all **prose extensions to existing files**,
|
|
508
|
-
zero new agents/skills/rules: the OWASP **Agentic Top-10 (ASI01–ASI10)** mapping, a sandbox **policy
|
|
509
|
-
schema**, and layered prompt-injection defense in `agent-guardrails`; agent-aware evals (multi-judge
|
|
510
|
-
panels in §3, multi-turn degradation in §8) in `evals`; validator-in-the-loop + Medprompt in
|
|
511
|
-
`reasoning-techniques`; approval-gate implementation in `human-in-the-loop`; a security-lint layer in
|
|
512
|
-
`linting-and-formatting`; operationalized GenAI red-teaming in `threat-model`; SBOM generation in
|
|
513
|
-
`security-and-hardening`; priority-based prompt pruning in `context-engineering`; quantified-lines PR
|
|
514
|
-
sizing in `code-review-and-quality`; and **4 first-party MCP fragments** (Azure · Azure DevOps · MS
|
|
515
|
-
Learn · Wassette).
|
|
516
|
-
|
|
517
549
|
**🔴 google org review → 21 hardening & testing patterns (0.51.0).** We reviewed **all 2,881 repos** in
|
|
518
550
|
the Google org (60 survey agents over every page → deep-dive the top ~300 candidates → adversarially
|
|
519
551
|
verify the shortlist). The vast majority — Android/Kotlin, C++ libraries, ML frameworks, language
|
|
@@ -550,6 +582,27 @@ to cancel environment noise, gate on the relative delta) in `devops-observabilit
|
|
|
550
582
|
**defense-in-depth agent-sandbox enforcement** (argument-validation layer + OS-level eBPF/seccomp backstop
|
|
551
583
|
*below* the existing declarative policy) in `agent-guardrails` §4 (from `mcpguard-dynamic`).
|
|
552
584
|
|
|
585
|
+
**⬛🟧 Netflix · aws · apple org review → resilience engineering & more (0.53.0).** We reviewed **all
|
|
586
|
+
1,214 repos** across the three orgs (34 survey agents over every page → deep-dive the candidates →
|
|
587
|
+
adversarially verify the shortlist). The orgs are overwhelmingly SDKs, CLIs, cloud-product code, and
|
|
588
|
+
running services — almost nothing transferable to a config scaffolder — and the verify pass scrutinized
|
|
589
|
+
each survivor against the live README + license. **Seven** genuine, stack-agnostic, permissively-licensed
|
|
590
|
+
disciplines survived. The biggest finding was a real **gap**: the kit had `agent-resilience` (the coding
|
|
591
|
+
agent's own retries) but **no service-level resilience rule at all**, so this review adds the kit's
|
|
592
|
+
**first new rule in many releases — `resilience-engineering`**: stability patterns
|
|
593
|
+
(timeout/retry-budget/circuit-breaker/bulkhead/load-shedding/fallback) + **adaptive concurrency limiting**
|
|
594
|
+
(TCP-congestion-control + Little's Law, from `Netflix/concurrency-limits`), **chaos engineering**
|
|
595
|
+
(steady-state hypothesis, blast-radius control, automated abort, from `Netflix/chaosmonkey`), and
|
|
596
|
+
**bounded-clock distributed time** (timestamps as `[earliest, latest]` + commit-wait, from
|
|
597
|
+
`aws/clock-bound`). The other four are prose extensions to existing files: **failure-domain-aware
|
|
598
|
+
progressive rollout** (one zone/region/cell at a time, exponential batches, reverse-order rollback) in
|
|
599
|
+
`devops-observability` (from `aws/zone-aware-controllers-for-k8s`); **deterministic simulation testing**
|
|
600
|
+
(single-seed control of all nondeterminism + in-sim fault injection) in `testing` (from
|
|
601
|
+
`apple/foundationdb`); a formal **RFC track** for one-way-door API changes (working-backwards artifacts +
|
|
602
|
+
API bar-raiser + staged sign-off) in `spec-driven-development` (from `aws/aws-cdk-rfcs`); and
|
|
603
|
+
**continuous, usage-based least-privilege** (audit exercised grants → auto-revoke the unused → versioned
|
|
604
|
+
rollback) in `security-and-hardening` (from `Netflix/repokid`).
|
|
605
|
+
|
|
553
606
|
</details>
|
|
554
607
|
|
|
555
608
|
> **Comparing claude-kit to native subagents / Agent Teams, agent collections, spec-kit, or
|
|
@@ -603,7 +656,7 @@ to cancel environment noise, gate on the relative delta) in `devops-observabilit
|
|
|
603
656
|
|
|
604
657
|
## Rules & skills
|
|
605
658
|
|
|
606
|
-
**Rules** ([`rules/`](rules/)) are the
|
|
659
|
+
**Rules** ([`rules/`](rules/)) are the 24 stack-agnostic contracts every agent obeys — the
|
|
607
660
|
`mandatory-workflow` pipeline, `quality-gates`, `rarv-cycle`, `continuity`, `documentation`,
|
|
608
661
|
`testing`, the eight agent-operation rules (`reasoning-techniques`, `agent-guardrails`,
|
|
609
662
|
`agent-resilience`, `goal-setting-and-monitoring`, `human-in-the-loop`, `model-tiers`, `evals`,
|
|
@@ -754,7 +807,7 @@ build attestations** for supply-chain provenance. Report vulnerabilities private
|
|
|
754
807
|
```
|
|
755
808
|
claude-kit/
|
|
756
809
|
├── .claude-plugin/ plugin.json + marketplace.json
|
|
757
|
-
├── agents/ 28 SDLC agents rules/
|
|
810
|
+
├── agents/ 28 SDLC agents rules/ 24 engineering rules
|
|
758
811
|
├── skills/ on-demand skills templates/ CLAUDE.md, settings, artifacts, memory seeds
|
|
759
812
|
├── commands/ /claude-kit:* commands hooks/ hooks.json + scripts/
|
|
760
813
|
├── catalog/ stacks·profiles·mcp·org templates/stacks/ per-stack overlay rules + agents
|
|
@@ -1,33 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: claude-code-kit
|
|
3
|
-
Version: 0.52.0
|
|
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
|
-
Project-URL: Homepage, https://github.com/ajyadav013/claude-kit
|
|
6
|
-
Project-URL: Repository, https://github.com/ajyadav013/claude-kit
|
|
7
|
-
Project-URL: Issues, https://github.com/ajyadav013/claude-kit/issues
|
|
8
|
-
Author: Arjunsingh Yadav
|
|
9
|
-
License-Expression: MIT
|
|
10
|
-
License-File: LICENSE
|
|
11
|
-
Keywords: agentic,agents,automation,claude,claude-code,code-review,cookiecutter,fastapi,generator,orchestration,react,scaffold,sdlc,testing
|
|
12
|
-
Classifier: Development Status :: 4 - Beta
|
|
13
|
-
Classifier: Environment :: Console
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Topic :: Software Development
|
|
17
|
-
Classifier: Topic :: Software Development :: Quality Assurance
|
|
18
|
-
Requires-Python: >=3.9
|
|
19
|
-
Requires-Dist: jinja2>=3.1
|
|
20
|
-
Requires-Dist: pyyaml>=6.0
|
|
21
|
-
Requires-Dist: typer>=0.12
|
|
22
|
-
Provides-Extra: dev
|
|
23
|
-
Requires-Dist: build>=1.2; extra == 'dev'
|
|
24
|
-
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
25
|
-
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
26
|
-
Requires-Dist: ruff>=0.6; extra == 'dev'
|
|
27
|
-
Requires-Dist: shellcheck-py>=0.10; extra == 'dev'
|
|
28
|
-
Requires-Dist: twine>=5.0; extra == 'dev'
|
|
29
|
-
Description-Content-Type: text/markdown
|
|
30
|
-
|
|
31
1
|
<div align="center">
|
|
32
2
|
|
|
33
3
|
# claude-kit
|
|
@@ -66,14 +36,27 @@ advance until each phase's quality gate passes**. You drive it all with one comm
|
|
|
66
36
|
**`/sdlc <your task>`**.
|
|
67
37
|
|
|
68
38
|
It ships **no application code and needs no Docker** — only the rules, agents, skills, and gates that
|
|
69
|
-
govern *how* the work gets done.
|
|
70
|
-
|
|
39
|
+
govern *how* the work gets done. (Some skills *help Claude write* your Dockerfiles, CI, or k8s manifests
|
|
40
|
+
when you ask — but the scaffolder itself installs none.) Choose your stack, rigor, and team scope at
|
|
41
|
+
`init`; everything else adapts.
|
|
71
42
|
|
|
72
43
|
> Inspired by the autonomous-SDLC idea, rebuilt from the ground up **for Claude Code**, and kept small
|
|
73
44
|
> by a **reuse-first** policy — see [what we adopted](#influences--what-we-adopted) and from where.
|
|
74
45
|
|
|
75
46
|
---
|
|
76
47
|
|
|
48
|
+
## Who this is for
|
|
49
|
+
|
|
50
|
+
**Use claude-kit if** you drive real repository changes with Claude Code and want a repeatable
|
|
51
|
+
spec → review → test → security → PR workflow whose quality gates won't advance on an unproven verdict.
|
|
52
|
+
|
|
53
|
+
**Skip it if** you want a small prompt pack, don't want project config written into your repo, or need a
|
|
54
|
+
standalone runtime/daemon. claude-kit is **configuration for Claude Code**, not a separate runtime — and
|
|
55
|
+
its guard hooks are convenience guardrails (they need `jq` + a POSIX shell and no-op without them), **not
|
|
56
|
+
a hardened security boundary**. See [Known limitations](docs/KNOWN_LIMITATIONS.md).
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
77
60
|
## Features
|
|
78
61
|
|
|
79
62
|
The whole product at a glance — one line each. Expand **[Feature details](#feature-details)** (below
|
|
@@ -84,11 +67,11 @@ Quick start) for the full breakdown of any row.
|
|
|
84
67
|
| 🔁 **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 |
|
|
85
68
|
| 🤖 **Agent roster** | **28** tiered agents + per-database overlays + **6** org personas, led by an Orchestrator that never writes code |
|
|
86
69
|
| 🔍 **Self-verification & review** | RARV green-Verify (real commands, not imagined), blind parallel review, and read-only risk classification |
|
|
87
|
-
| 📐 **Rules & skills** | **
|
|
70
|
+
| 📐 **Rules & skills** | **24** stack-agnostic core rules (incl. 8 agent-operation rules) + **104** context-activated skills (56 core + 48 stack-collection) |
|
|
88
71
|
| 🧱 **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 |
|
|
89
72
|
| 🎚️ **Profiles, scopes & org** | **3** rigor profiles · **3** scopes · **5** autonomy levels · **7** org packs + **10** policy rules |
|
|
90
73
|
| 🧠 **Memory & learning** | Working memory across context compaction + a cost-aware learnings loop (`capture_mode`) so the same mistake isn't repeated |
|
|
91
|
-
| 🛠️ **Hooks & guards** | **
|
|
74
|
+
| 🛠️ **Hooks & guards** | **18** event hooks — blocking safety guards vs. advisory warnings — that no-op gracefully without `jq` |
|
|
92
75
|
| 📦 **Distribution & lifecycle** | Plugin **and** pip from one source, **17** ready MCP fragments, and edit-preserving `upgrade` |
|
|
93
76
|
| ♻️ **Reuse-first by design** | Adopt-only-the-new reviews, opt-in LLM/AI security (OWASP LLM Top 10), a worked example + self-test matrix |
|
|
94
77
|
|
|
@@ -278,7 +261,7 @@ need.
|
|
|
278
261
|
|
|
279
262
|
<br>
|
|
280
263
|
|
|
281
|
-
- **
|
|
264
|
+
- **24 stack-agnostic core rules** in [`rules/`](rules/) — `mandatory-workflow`, `quality-gates`,
|
|
282
265
|
`rarv-cycle`, `continuity`, plus eight agent-operation rules and `autonomy-levels` +
|
|
283
266
|
`risk-classification` (see [`docs/agentic-patterns.md`](docs/agentic-patterns.md)).
|
|
284
267
|
- **104 on-demand skills** in [`skills/`](skills/) (56 core + 48 stack-collection) — spec-driven dev, planning, TDD, debugging, code
|
|
@@ -338,7 +321,7 @@ need.
|
|
|
338
321
|
|
|
339
322
|
<br>
|
|
340
323
|
|
|
341
|
-
- **
|
|
324
|
+
- **18 event hook scripts** in [`hooks/`](hooks/) enforce the pipeline outside the model —
|
|
342
325
|
`guard-secrets`, `guard-destructive-git`, `lint-fix`, `type-check`, and `validate-settings` run
|
|
343
326
|
deterministically.
|
|
344
327
|
- **Advisory, never-blocking warnings** — `warn-llm-io`, `warn-large-edits`, `warn-missing-tests`, and
|
|
@@ -437,7 +420,7 @@ owned gates, and the rule that **no gate passes on an unproven verdict**.
|
|
|
437
420
|
| **[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. |
|
|
438
421
|
| **[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. |
|
|
439
422
|
| **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. |
|
|
440
|
-
| **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
|
|
423
|
+
| **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 24 rules, 28 agents, 104 skills, gates, and hooks, kept **upgradeable** (`claude-kit upgrade` preserves your edits via owner + checksum). |
|
|
441
424
|
|
|
442
425
|
**Choose claude-kit when** you want a consistent, reviewable, **gate-enforced** autonomous-SDLC setup
|
|
443
426
|
that's the same across every repo and stack, installs in seconds, ships nothing you have to run, and
|
|
@@ -520,6 +503,7 @@ non-duplicative gaps**, minimally and catalog-wired.
|
|
|
520
503
|
| **[microsoft](https://github.com/microsoft) org review** (all 8,147 repos) | OWASP Agentic Top-10 (ASI01–ASI10) agent threats; agent-aware evals (multi-judge panels, multi-turn degradation, tool-vs-response grading); validator-in-the-loop + Medprompt prompting; sandbox policy schema & layered prompt-injection defense; approval-gate implementation; security-lint layer & SBOM; operationalized GenAI red-teaming; priority-based prompt pruning; quantified-lines PR sizing; first-party MCP servers | Extensions across `agent-guardrails` (ASI01–ASI10 + sandbox policy + injection layers), `evals` (§3 panels, §8 multi-turn), `reasoning-techniques`, `human-in-the-loop`, `linting-and-formatting`, `threat-model`, `security-and-hardening` (SBOM), `context-engineering`, `code-review-and-quality` + 4 MCP fragments (Azure · Azure DevOps · MS Learn · Wassette) — **0 new agents/skills/rules** (from agent-governance-toolkit · mxc · llmail-inject-challenge · lost_in_conversation · llm-as-judge · EvalsforAgentsInterop · promptbase · dsl-copilot · agents-humanoversight · PyRIT · eslint-plugin-sdl · sbom-tool · vscode-prompt-tsx · PullRequestQuantifier) | `0.50.0` |
|
|
521
504
|
| **[google](https://github.com/google) org review** (all 2,881 repos) | Reproducible-build verification & source-level missing-patch detection; secure-by-construction injection defense; archive-extraction & ReDoS hardening; multi-party authorization / breakglass; coverage-guided & continuous fuzzing; parameterized + semantic-equality + parallel/flaky testing; compile-time logic-bug & license-header lint layers + deterministic block sorting; multi-window burn-rate alerting & log rate-limiting; long-document extraction; prompt-as-code; statistical browser benchmarking; durable atomic writes; record-replay API testing; first-party SecOps MCP servers | Prose extensions across `security-and-hardening` (reproducible-build · missing-patch · secure-by-construction · archive · ReDoS), `human-in-the-loop` (MPA/breakglass), `testing` (fuzzing · parameterized · semantic-equality · parallel/flaky), `linting-and-formatting` (logic-bug + license-header layers · block sorting), `devops-observability` (burn-rate · log rate-limit), `context-engineering` (long-doc extraction), `reasoning-techniques` (prompt-as-code), `performance-optimization` (statistical benchmarking), `tool-design` (durable atomic writes), `api-integration` (record-replay) + **4 first-party SecOps MCP fragments** (Chronicle SIEM · GTI · SCC · SOAR) — **0 new agents/skills/rules** (from oss-rebuild · vanir · safe-active-record/mug · safearchive · re2 · building-secure-and-reliable-systems · patrick · go-cmp · atheris/honggfuzz/clusterfuzzlite · gtest-parallel · error-prone · addlicense · keep-sorted · prometheus-slo-burn · flogger · langextract · dotprompt · tachometer · renameio · test-server · mcp-security) | `0.51.0` |
|
|
522
505
|
| **[facebook](https://github.com/facebook) (Meta) org review** (all 168 repos) | Interprocedural taint / data-flow security analysis (source→sink across functions); continuous A/B performance-regression CI gate; defense-in-depth agent-sandbox enforcement (argument validation + OS-level backstop) | Prose extensions to `linting-and-formatting` (taint/data-flow layer), `devops-observability` (perf-regression gate), `agent-guardrails` (§4 layered sandbox enforcement) — **0 new agents/skills/rules** (from pyre-check/Pysa · mariana-trench · FAI-PEP · mcpguard-dynamic; the org is mostly libraries/frameworks, so the verify pass *dropped* the rest — `DNE-TaaC`, `mbt`, plus already-covered `infer`/`mariana-trench`-as-tool, `fbt`, `memlab`, …) | `0.52.0` |
|
|
506
|
+
| **[Netflix](https://github.com/Netflix) · [aws](https://github.com/aws) · [apple](https://github.com/apple) org review** (all **1,214** repos) | Service-level resilience the kit lacked entirely — stability patterns (timeout/retry-budget/circuit-breaker/bulkhead) + adaptive concurrency limiting, chaos engineering, and bounded-clock distributed time; failure-domain-aware progressive rollout; deterministic simulation testing; a formal RFC process (working-backwards + API bar-raiser); continuous usage-based least-privilege | The **new `resilience-engineering` rule** (chaos + stability patterns + bounded clocks, from `Netflix/concurrency-limits` · `Netflix/chaosmonkey` · `aws/clock-bound`); plus prose extensions to `devops-observability` (failure-domain rollout, from `aws/zone-aware-controllers-for-k8s`), `testing` (deterministic simulation testing, from `apple/foundationdb`), `spec-driven-development` (RFC track, from `aws/aws-cdk-rfcs`), and `security-and-hardening` (continuous least-privilege, from `Netflix/repokid`) — **1 new rule, 0 new agents/skills** (the orgs are overwhelmingly SDKs/CLIs/services, so the survey kept only 7 of 1,214) | `0.53.0` |
|
|
523
507
|
|
|
524
508
|
> Each adoption is detailed in the [CHANGELOG](CHANGELOG.md) — including, for every review, what we
|
|
525
509
|
> deliberately **did not** add because the kit already covered it.
|
|
@@ -529,21 +513,6 @@ non-duplicative gaps**, minimally and catalog-wired.
|
|
|
529
513
|
|
|
530
514
|
<br>
|
|
531
515
|
|
|
532
|
-
**🟦 microsoft org review → agentic-AI hardening (0.50.0).** We reviewed **all 8,147 repos** in the
|
|
533
|
-
Microsoft org (165 survey agents over every page → deep-dive the top candidates → adversarially verify
|
|
534
|
-
the shortlist). The vast majority — SDKs, samples, Azure-product code, ML infra, OS/editor — carried
|
|
535
|
-
nothing transferable, and the verify pass *dropped* two plausible picks (`ToolTalk`, whose
|
|
536
|
-
ground-truth-sequence grading contradicts `evals`' "grade outcomes, not paths"; and `prompty`, an
|
|
537
|
-
LLM-app product, not an SDLC practice). Eighteen survived — all **prose extensions to existing files**,
|
|
538
|
-
zero new agents/skills/rules: the OWASP **Agentic Top-10 (ASI01–ASI10)** mapping, a sandbox **policy
|
|
539
|
-
schema**, and layered prompt-injection defense in `agent-guardrails`; agent-aware evals (multi-judge
|
|
540
|
-
panels in §3, multi-turn degradation in §8) in `evals`; validator-in-the-loop + Medprompt in
|
|
541
|
-
`reasoning-techniques`; approval-gate implementation in `human-in-the-loop`; a security-lint layer in
|
|
542
|
-
`linting-and-formatting`; operationalized GenAI red-teaming in `threat-model`; SBOM generation in
|
|
543
|
-
`security-and-hardening`; priority-based prompt pruning in `context-engineering`; quantified-lines PR
|
|
544
|
-
sizing in `code-review-and-quality`; and **4 first-party MCP fragments** (Azure · Azure DevOps · MS
|
|
545
|
-
Learn · Wassette).
|
|
546
|
-
|
|
547
516
|
**🔴 google org review → 21 hardening & testing patterns (0.51.0).** We reviewed **all 2,881 repos** in
|
|
548
517
|
the Google org (60 survey agents over every page → deep-dive the top ~300 candidates → adversarially
|
|
549
518
|
verify the shortlist). The vast majority — Android/Kotlin, C++ libraries, ML frameworks, language
|
|
@@ -580,6 +549,27 @@ to cancel environment noise, gate on the relative delta) in `devops-observabilit
|
|
|
580
549
|
**defense-in-depth agent-sandbox enforcement** (argument-validation layer + OS-level eBPF/seccomp backstop
|
|
581
550
|
*below* the existing declarative policy) in `agent-guardrails` §4 (from `mcpguard-dynamic`).
|
|
582
551
|
|
|
552
|
+
**⬛🟧 Netflix · aws · apple org review → resilience engineering & more (0.53.0).** We reviewed **all
|
|
553
|
+
1,214 repos** across the three orgs (34 survey agents over every page → deep-dive the candidates →
|
|
554
|
+
adversarially verify the shortlist). The orgs are overwhelmingly SDKs, CLIs, cloud-product code, and
|
|
555
|
+
running services — almost nothing transferable to a config scaffolder — and the verify pass scrutinized
|
|
556
|
+
each survivor against the live README + license. **Seven** genuine, stack-agnostic, permissively-licensed
|
|
557
|
+
disciplines survived. The biggest finding was a real **gap**: the kit had `agent-resilience` (the coding
|
|
558
|
+
agent's own retries) but **no service-level resilience rule at all**, so this review adds the kit's
|
|
559
|
+
**first new rule in many releases — `resilience-engineering`**: stability patterns
|
|
560
|
+
(timeout/retry-budget/circuit-breaker/bulkhead/load-shedding/fallback) + **adaptive concurrency limiting**
|
|
561
|
+
(TCP-congestion-control + Little's Law, from `Netflix/concurrency-limits`), **chaos engineering**
|
|
562
|
+
(steady-state hypothesis, blast-radius control, automated abort, from `Netflix/chaosmonkey`), and
|
|
563
|
+
**bounded-clock distributed time** (timestamps as `[earliest, latest]` + commit-wait, from
|
|
564
|
+
`aws/clock-bound`). The other four are prose extensions to existing files: **failure-domain-aware
|
|
565
|
+
progressive rollout** (one zone/region/cell at a time, exponential batches, reverse-order rollback) in
|
|
566
|
+
`devops-observability` (from `aws/zone-aware-controllers-for-k8s`); **deterministic simulation testing**
|
|
567
|
+
(single-seed control of all nondeterminism + in-sim fault injection) in `testing` (from
|
|
568
|
+
`apple/foundationdb`); a formal **RFC track** for one-way-door API changes (working-backwards artifacts +
|
|
569
|
+
API bar-raiser + staged sign-off) in `spec-driven-development` (from `aws/aws-cdk-rfcs`); and
|
|
570
|
+
**continuous, usage-based least-privilege** (audit exercised grants → auto-revoke the unused → versioned
|
|
571
|
+
rollback) in `security-and-hardening` (from `Netflix/repokid`).
|
|
572
|
+
|
|
583
573
|
</details>
|
|
584
574
|
|
|
585
575
|
> **Comparing claude-kit to native subagents / Agent Teams, agent collections, spec-kit, or
|
|
@@ -633,7 +623,7 @@ to cancel environment noise, gate on the relative delta) in `devops-observabilit
|
|
|
633
623
|
|
|
634
624
|
## Rules & skills
|
|
635
625
|
|
|
636
|
-
**Rules** ([`rules/`](rules/)) are the
|
|
626
|
+
**Rules** ([`rules/`](rules/)) are the 24 stack-agnostic contracts every agent obeys — the
|
|
637
627
|
`mandatory-workflow` pipeline, `quality-gates`, `rarv-cycle`, `continuity`, `documentation`,
|
|
638
628
|
`testing`, the eight agent-operation rules (`reasoning-techniques`, `agent-guardrails`,
|
|
639
629
|
`agent-resilience`, `goal-setting-and-monitoring`, `human-in-the-loop`, `model-tiers`, `evals`,
|
|
@@ -784,7 +774,7 @@ build attestations** for supply-chain provenance. Report vulnerabilities private
|
|
|
784
774
|
```
|
|
785
775
|
claude-kit/
|
|
786
776
|
├── .claude-plugin/ plugin.json + marketplace.json
|
|
787
|
-
├── agents/ 28 SDLC agents rules/
|
|
777
|
+
├── agents/ 28 SDLC agents rules/ 24 engineering rules
|
|
788
778
|
├── skills/ on-demand skills templates/ CLAUDE.md, settings, artifacts, memory seeds
|
|
789
779
|
├── commands/ /claude-kit:* commands hooks/ hooks.json + scripts/
|
|
790
780
|
├── catalog/ stacks·profiles·mcp·org templates/stacks/ per-stack overlay rules + agents
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: devils-advocate
|
|
3
|
-
description: Anti-sycophancy adversarial reviewer.
|
|
3
|
+
description: Anti-sycophancy adversarial reviewer. Critiques a plan/spec before approval, and when a gate reaches unanimous PASS. Gates the pipeline — the artifact is not final until it returns CONFIRMED.
|
|
4
4
|
tools: Read, Glob, Grep, Bash, SendMessage
|
|
5
5
|
permissionMode: plan
|
|
6
6
|
model: opus
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: devops-engineer
|
|
3
|
-
description: Delivery & operability agent. Owns the CI pipeline, build & packaging, release/rollback, environment &
|
|
3
|
+
description: Delivery & operability agent. Owns the CI pipeline, build & packaging, release/rollback, environment & secrets, database migrations, and local dev experience for any stack. Container-optional.
|
|
4
4
|
tools: Read, Write, Edit, Bash, Glob, Grep
|
|
5
5
|
permissionMode: acceptEdits
|
|
6
6
|
model: sonnet
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: incident-responder
|
|
3
|
-
description: Production incident commander. Use when prod is broken — errors spiking,
|
|
3
|
+
description: Production incident commander. Use when prod is broken — errors spiking, latency breach, dependency down, bad deploy. Triages severity, gathers signals, drives mitigation (rollback/flag) FIRST, then root cause.
|
|
4
4
|
tools: Read, Glob, Grep, Bash, SendMessage
|
|
5
5
|
permissionMode: plan
|
|
6
6
|
model: sonnet
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: policy-validator
|
|
3
|
-
description: Security sub-scanner. Validates
|
|
3
|
+
description: Security sub-scanner. Validates required security policies — CORS allowlist, auth-endpoint rate limiting, secure session cookies, security headers, input validation, authz chain. PASS/FAIL. Reports only.
|
|
4
4
|
tools: Read, Glob, Grep, Bash, SendMessage
|
|
5
5
|
permissionMode: plan
|
|
6
6
|
model: sonnet
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: security-reviewer
|
|
3
|
-
description:
|
|
3
|
+
description: Security stage coordinator. Runs at Phase 5.4 (after test-coverage VERIFIED, before DevOps). Dispatches four sub-scanners in parallel — secret, dependency, owasp, policy — and owns the Security Clear gate.
|
|
4
4
|
tools: Agent, Read, Glob, Grep, Bash, SendMessage
|
|
5
5
|
permissionMode: plan
|
|
6
6
|
model: sonnet
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: senior-frontend-dev
|
|
3
|
-
description: Senior frontend developer agent
|
|
3
|
+
description: Senior frontend developer agent handling UI/UX, component architecture, API integration, client state, routing, testing, and performance. Stack-agnostic — adapts to the project's framework and build tool.
|
|
4
4
|
tools: Read, Write, Edit, Bash, Glob, Grep
|
|
5
5
|
permissionMode: acceptEdits
|
|
6
6
|
model: sonnet
|