cokit-cli 1.2.7 → 1.4.0
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.
- package/README.md +8 -31
- package/agents/ck-brainstormer.agent.md +92 -0
- package/agents/ck-code-reviewer.agent.md +145 -0
- package/agents/ck-code-simplifier.agent.md +41 -0
- package/agents/ck-debugger.agent.md +142 -0
- package/agents/ck-docs-manager.agent.md +209 -0
- package/agents/ck-fullstack-developer.agent.md +106 -0
- package/agents/ck-git-manager.agent.md +7 -0
- package/agents/ck-planner.agent.md +104 -0
- package/agents/ck-project-manager.agent.md +24 -0
- package/agents/ck-researcher.agent.md +48 -0
- package/agents/ck-tester.agent.md +139 -0
- package/agents/ck-ui-ux-designer.agent.md +200 -0
- package/docs/README.md +8 -16
- package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
- package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
- package/docs/code-standards.md +1 -2
- package/docs/codebase-summary.md +35 -66
- package/docs/cokit-commands-usage-guide.md +27 -73
- package/docs/cokit-sync-and-maintenance-guide.md +43 -191
- package/docs/copilot-processing-flow.md +18 -18
- package/docs/migration-guide.md +14 -14
- package/docs/project-overview-pdr.md +5 -6
- package/docs/project-roadmap.md +12 -14
- package/docs/system-architecture.md +13 -17
- package/docs/upstream-porting-rules.md +182 -0
- package/package.json +3 -4
- package/prompts/ck-ask.prompt.md +0 -1
- package/prompts/ck-bootstrap.prompt.md +12 -15
- package/prompts/ck-brainstorm.prompt.md +0 -1
- package/prompts/ck-cook.prompt.md +11 -12
- package/prompts/ck-debug.prompt.md +0 -1
- package/prompts/ck-deploy.prompt.md +22 -0
- package/prompts/ck-docs.prompt.md +0 -1
- package/prompts/ck-fix-fast.prompt.md +1 -1
- package/prompts/ck-fix-hard.prompt.md +2 -2
- package/prompts/ck-frontend.prompt.md +20 -0
- package/prompts/ck-help.prompt.md +0 -1
- package/prompts/ck-plan-fast.prompt.md +1 -4
- package/prompts/ck-plan-hard.prompt.md +3 -6
- package/prompts/ck-plan-red-team.prompt.md +1 -1
- package/prompts/ck-plan.prompt.md +0 -3
- package/prompts/ck-project.prompt.md +20 -0
- package/prompts/ck-review.prompt.md +4 -7
- package/prompts/ck-scout.prompt.md +0 -1
- package/prompts/ck-security.prompt.md +22 -0
- package/prompts/ck-ship.prompt.md +22 -0
- package/prompts/ck-test.prompt.md +1 -3
- package/prompts/ck-watzup.prompt.md +0 -1
- package/skills/ck-agent-browser/SKILL.md +294 -0
- package/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/ck-backend-development/SKILL.md +94 -0
- package/skills/ck-bootstrap/SKILL.md +102 -0
- package/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/skills/ck-brainstorm/SKILL.md +122 -0
- package/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/skills/ck-code-review/SKILL.md +196 -0
- package/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/skills/ck-code-review/references/checklists/api.md +52 -0
- package/skills/ck-code-review/references/checklists/base.md +100 -0
- package/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/skills/ck-common/README.md +110 -0
- package/skills/ck-common/api_key_helper.py +381 -0
- package/skills/ck-context-engineering/SKILL.md +107 -0
- package/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/skills/ck-cook/README.md +86 -0
- package/skills/ck-cook/SKILL.md +155 -0
- package/skills/ck-cook/references/intent-detection.md +101 -0
- package/skills/ck-cook/references/review-cycle.md +75 -0
- package/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/skills/ck-cook/references/workflow-steps.md +192 -0
- package/skills/ck-databases/SKILL.md +84 -0
- package/skills/ck-databases/db-design.md +188 -0
- package/skills/ck-debug/SKILL.md +120 -0
- package/skills/ck-debug/references/frontend-verification.md +103 -0
- package/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/skills/ck-debug/references/reporting-standards.md +122 -0
- package/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/skills/ck-deploy/SKILL.md +154 -0
- package/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/skills/ck-deploy/references/platforms/render.md +39 -0
- package/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/skills/ck-devops/SKILL.md +96 -0
- package/skills/ck-docs-seeker/SKILL.md +97 -0
- package/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/skills/ck-fix/SKILL.md +209 -0
- package/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/skills/ck-fix/references/mode-selection.md +46 -0
- package/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/skills/ck-fix/references/prevention-gate.md +87 -0
- package/skills/ck-fix/references/review-cycle.md +77 -0
- package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/skills/ck-fix/references/task-orchestration.md +110 -0
- package/skills/ck-fix/references/workflow-ci.md +28 -0
- package/skills/ck-fix/references/workflow-deep.md +154 -0
- package/skills/ck-fix/references/workflow-logs.md +72 -0
- package/skills/ck-fix/references/workflow-quick.md +82 -0
- package/skills/ck-fix/references/workflow-standard.md +120 -0
- package/skills/ck-fix/references/workflow-test.md +75 -0
- package/skills/ck-fix/references/workflow-ui.md +72 -0
- package/skills/ck-frontend-design/SKILL.md +109 -0
- package/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/skills/ck-frontend-development/SKILL.md +400 -0
- package/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/skills/ck-frontend-development/resources/performance.md +406 -0
- package/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/skills/ck-git/SKILL.md +113 -0
- package/skills/ck-git/references/commit-standards.md +46 -0
- package/skills/ck-git/references/workflow-commit.md +58 -0
- package/skills/ck-git/references/workflow-merge.md +48 -0
- package/skills/ck-git/references/workflow-pr.md +58 -0
- package/skills/ck-git/references/workflow-push.md +52 -0
- package/skills/ck-mcp-management/README.md +219 -0
- package/skills/ck-mcp-management/SKILL.md +210 -0
- package/skills/ck-mcp-management/references/configuration.md +114 -0
- package/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/skills/ck-mcp-management/scripts/dist/mcp-client.js +183 -0
- package/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/skills/ck-planning/SKILL.md +194 -0
- package/skills/ck-planning/references/archive-workflow.md +53 -0
- package/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/skills/ck-planning/references/output-standards.md +145 -0
- package/skills/ck-planning/references/plan-organization.md +182 -0
- package/skills/ck-planning/references/red-team-personas.md +69 -0
- package/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/skills/ck-planning/references/research-phase.md +49 -0
- package/skills/ck-planning/references/scope-challenge.md +90 -0
- package/skills/ck-planning/references/task-management.md +134 -0
- package/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/skills/ck-planning/references/validate-workflow.md +65 -0
- package/skills/ck-planning/references/workflow-modes.md +154 -0
- package/skills/ck-problem-solving/SKILL.md +96 -0
- package/skills/ck-project-management/SKILL.md +133 -0
- package/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/skills/ck-project-management/references/task-operations.md +87 -0
- package/skills/ck-repomix/SKILL.md +248 -0
- package/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/skills/ck-repomix/scripts/README.md +179 -0
- package/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/skills/ck-research/SKILL.md +172 -0
- package/skills/ck-scout/SKILL.md +91 -0
- package/skills/ck-scout/references/external-scouting.md +140 -0
- package/skills/ck-scout/references/internal-scouting.md +119 -0
- package/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/skills/ck-security/SKILL.md +139 -0
- package/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/skills/ck-sequential-thinking/README.md +183 -0
- package/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/skills/ck-sequential-thinking/package.json +31 -0
- package/skills/ck-ship/SKILL.md +116 -0
- package/skills/ck-ship/references/auto-detect.md +103 -0
- package/skills/ck-ship/references/pr-template.md +90 -0
- package/skills/ck-ship/references/ship-workflow.md +241 -0
- package/skills/ck-test/SKILL.md +111 -0
- package/skills/ck-test/references/report-format.md +58 -0
- package/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/skills/ck-ui-styling/SKILL.md +321 -0
- package/skills/ck-web-testing/SKILL.md +96 -0
- package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
- package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
- package/templates/repo/.github/agents/ck-code-simplifier.agent.md +41 -0
- package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
- package/templates/repo/.github/agents/ck-docs-manager.agent.md +209 -0
- package/templates/repo/.github/agents/ck-fullstack-developer.agent.md +106 -0
- package/templates/repo/.github/agents/ck-git-manager.agent.md +7 -0
- package/templates/repo/.github/agents/ck-planner.agent.md +104 -0
- package/templates/repo/.github/agents/ck-project-manager.agent.md +24 -0
- package/templates/repo/.github/agents/ck-researcher.agent.md +48 -0
- package/templates/repo/.github/agents/ck-tester.agent.md +139 -0
- package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
- package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -15
- package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -12
- package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
- package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -4
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -6
- package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-review.prompt.md +4 -7
- package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-test.prompt.md +1 -3
- package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
- package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
- package/templates/repo/.github/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
- package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/api.md +52 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/base.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/templates/repo/.github/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/templates/repo/.github/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/templates/repo/.github/skills/ck-common/README.md +110 -0
- package/templates/repo/.github/skills/ck-common/api_key_helper.py +381 -0
- package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/templates/repo/.github/skills/ck-cook/README.md +86 -0
- package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
- package/templates/repo/.github/skills/ck-cook/references/intent-detection.md +101 -0
- package/templates/repo/.github/skills/ck-cook/references/review-cycle.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
- package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
- package/templates/repo/.github/skills/ck-databases/db-design.md +188 -0
- package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
- package/templates/repo/.github/skills/ck-debug/references/frontend-verification.md +103 -0
- package/templates/repo/.github/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/templates/repo/.github/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/templates/repo/.github/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/templates/repo/.github/skills/ck-debug/references/reporting-standards.md +122 -0
- package/templates/repo/.github/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/render.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
- package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
- package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/ck-fix/references/mode-selection.md +46 -0
- package/templates/repo/.github/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/ck-fix/references/review-cycle.md +77 -0
- package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
- package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +406 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
- package/templates/repo/.github/skills/ck-git/references/commit-standards.md +46 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
- package/templates/repo/.github/skills/ck-mcp-management/README.md +219 -0
- package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +114 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
- package/templates/repo/.github/skills/ck-planning/references/archive-workflow.md +53 -0
- package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/templates/repo/.github/skills/ck-planning/references/output-standards.md +145 -0
- package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +182 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-personas.md +69 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
- package/templates/repo/.github/skills/ck-planning/references/scope-challenge.md +90 -0
- package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/templates/repo/.github/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/templates/repo/.github/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/templates/repo/.github/skills/ck-project-management/references/task-operations.md +87 -0
- package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
- package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/README.md +179 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
- package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
- package/templates/repo/.github/skills/ck-scout/references/external-scouting.md +140 -0
- package/templates/repo/.github/skills/ck-scout/references/internal-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
- package/templates/repo/.github/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package-lock.json +3652 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -0
- package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-ship/references/auto-detect.md +103 -0
- package/templates/repo/.github/skills/ck-ship/references/pr-template.md +90 -0
- package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
- package/templates/repo/.github/skills/ck-test/references/report-format.md +58 -0
- package/templates/repo/.github/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
- package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
- package/agents/brainstormer.agent.md +0 -78
- package/agents/code-reviewer.agent.md +0 -111
- package/agents/code-simplifier.agent.md +0 -46
- package/agents/debugger.agent.md +0 -137
- package/agents/docs-manager.agent.md +0 -217
- package/agents/fullstack-developer.agent.md +0 -96
- package/agents/git-manager.agent.md +0 -10
- package/agents/planner.agent.md +0 -122
- package/agents/researcher.agent.md +0 -46
- package/agents/tester.agent.md +0 -116
- package/agents/ui-ux-designer.agent.md +0 -233
- package/docs/claudekit-porting-rules.md +0 -182
- package/docs/cokit-comprehensive-mapping-guide.md +0 -357
- package/docs/cokit-slides.md +0 -210
- package/docs/cokit-team-presentation.md +0 -354
- package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
- package/prompts/ck-spec-analyze.prompt.md +0 -201
- package/prompts/ck-spec-checklist.prompt.md +0 -308
- package/prompts/ck-spec-clarify.prompt.md +0 -190
- package/prompts/ck-spec-constitution.prompt.md +0 -92
- package/prompts/ck-spec-implement.prompt.md +0 -157
- package/prompts/ck-spec-plan.prompt.md +0 -95
- package/prompts/ck-spec-specify.prompt.md +0 -261
- package/prompts/ck-spec-tasks.prompt.md +0 -181
- package/skills/agent-browser/SKILL.md +0 -291
- package/skills/backend-development/SKILL.md +0 -94
- package/skills/brainstorm/SKILL.md +0 -74
- package/skills/code-review/SKILL.md +0 -193
- package/skills/code-review/references/code-review-reception.md +0 -209
- package/skills/code-review/references/requesting-code-review.md +0 -105
- package/skills/common/README.md +0 -120
- package/skills/common/api_key_helper.py +0 -411
- package/skills/context-engineering/SKILL.md +0 -106
- package/skills/context-engineering/references/context-degradation.md +0 -93
- package/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/skills/cook/README.md +0 -86
- package/skills/cook/SKILL.md +0 -127
- package/skills/cook/references/intent-detection.md +0 -101
- package/skills/cook/references/review-cycle.md +0 -75
- package/skills/cook/references/workflow-steps.md +0 -140
- package/skills/databases/SKILL.md +0 -111
- package/skills/databases/db-design.md +0 -188
- package/skills/debug/SKILL.md +0 -178
- package/skills/devops/SKILL.md +0 -102
- package/skills/docs-seeker/SKILL.md +0 -96
- package/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/skills/docs-seeker/workflows/library-search.md +0 -86
- package/skills/fix/SKILL.md +0 -112
- package/skills/fix/references/complexity-assessment.md +0 -61
- package/skills/fix/references/mode-selection.md +0 -30
- package/skills/fix/references/parallel-exploration.md +0 -77
- package/skills/fix/references/review-cycle.md +0 -77
- package/skills/fix/references/skill-activation-matrix.md +0 -65
- package/skills/fix/references/workflow-ci.md +0 -28
- package/skills/fix/references/workflow-deep.md +0 -91
- package/skills/fix/references/workflow-logs.md +0 -36
- package/skills/fix/references/workflow-quick.md +0 -59
- package/skills/fix/references/workflow-standard.md +0 -86
- package/skills/fix/references/workflow-test.md +0 -36
- package/skills/fix/references/workflow-ui.md +0 -34
- package/skills/frontend-design/SKILL.md +0 -77
- package/skills/frontend-design/references/asset-generation.md +0 -161
- package/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/skills/frontend-design/references/workflow-describe.md +0 -86
- package/skills/frontend-design/references/workflow-quick.md +0 -54
- package/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/skills/git/SKILL.md +0 -99
- package/skills/git/references/commit-standards.md +0 -46
- package/skills/git/references/workflow-commit.md +0 -58
- package/skills/git/references/workflow-merge.md +0 -48
- package/skills/git/references/workflow-pr.md +0 -58
- package/skills/git/references/workflow-push.md +0 -52
- package/skills/mcp-management/README.md +0 -219
- package/skills/mcp-management/SKILL.md +0 -209
- package/skills/mcp-management/references/configuration.md +0 -114
- package/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/skills/mcp-management/scripts/.env.example +0 -10
- package/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/skills/mermaidjs-v11/SKILL.md +0 -115
- package/skills/planning/SKILL.md +0 -163
- package/skills/planning/references/codebase-understanding.md +0 -62
- package/skills/planning/references/output-standards.md +0 -141
- package/skills/planning/references/plan-organization.md +0 -160
- package/skills/planning/references/research-phase.md +0 -49
- package/skills/problem-solving/SKILL.md +0 -95
- package/skills/repomix/SKILL.md +0 -247
- package/skills/repomix/references/usage-patterns.md +0 -232
- package/skills/repomix/scripts/README.md +0 -179
- package/skills/repomix/scripts/repomix_batch.py +0 -455
- package/skills/research/SKILL.md +0 -169
- package/skills/scout/SKILL.md +0 -91
- package/skills/scout/references/external-scouting.md +0 -140
- package/skills/scout/references/internal-scouting.md +0 -119
- package/skills/sequential-thinking/README.md +0 -183
- package/skills/sequential-thinking/SKILL.md +0 -92
- package/skills/sequential-thinking/package.json +0 -31
- package/skills/ui-styling/SKILL.md +0 -319
- package/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/AGENTS.md +0 -103
- package/templates/repo/.github/agents/brainstormer.agent.md +0 -78
- package/templates/repo/.github/agents/code-reviewer.agent.md +0 -111
- package/templates/repo/.github/agents/code-simplifier.agent.md +0 -46
- package/templates/repo/.github/agents/debugger.agent.md +0 -137
- package/templates/repo/.github/agents/docs-manager.agent.md +0 -217
- package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
- package/templates/repo/.github/agents/git-manager.agent.md +0 -10
- package/templates/repo/.github/agents/planner.agent.md +0 -122
- package/templates/repo/.github/agents/researcher.agent.md +0 -46
- package/templates/repo/.github/agents/tester.agent.md +0 -116
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -233
- package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
- package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
- package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
- package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
- package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
- package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
- package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
- package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
- package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -291
- package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
- package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -74
- package/templates/repo/.github/skills/code-review/SKILL.md +0 -193
- package/templates/repo/.github/skills/code-review/references/code-review-reception.md +0 -209
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -105
- package/templates/repo/.github/skills/common/README.md +0 -120
- package/templates/repo/.github/skills/common/api_key_helper.py +0 -411
- package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -106
- package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +0 -93
- package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/templates/repo/.github/skills/cook/README.md +0 -86
- package/templates/repo/.github/skills/cook/SKILL.md +0 -127
- package/templates/repo/.github/skills/cook/references/intent-detection.md +0 -101
- package/templates/repo/.github/skills/cook/references/review-cycle.md +0 -75
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -140
- package/templates/repo/.github/skills/databases/SKILL.md +0 -111
- package/templates/repo/.github/skills/databases/db-design.md +0 -188
- package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
- package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
- package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
- package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
- package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
- package/templates/repo/.github/skills/debug/SKILL.md +0 -178
- package/templates/repo/.github/skills/devops/SKILL.md +0 -102
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -96
- package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +0 -86
- package/templates/repo/.github/skills/fix/SKILL.md +0 -112
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -61
- package/templates/repo/.github/skills/fix/references/mode-selection.md +0 -30
- package/templates/repo/.github/skills/fix/references/parallel-exploration.md +0 -77
- package/templates/repo/.github/skills/fix/references/review-cycle.md +0 -77
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -65
- package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -91
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -59
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -86
- package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -34
- package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -77
- package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +0 -161
- package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -86
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -54
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/templates/repo/.github/skills/git/SKILL.md +0 -99
- package/templates/repo/.github/skills/git/references/commit-standards.md +0 -46
- package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
- package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
- package/templates/repo/.github/skills/mcp-management/README.md +0 -219
- package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -209
- package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
- package/templates/repo/.github/skills/mcp-management/references/configuration.md +0 -114
- package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/templates/repo/.github/skills/mcp-management/scripts/.env.example +0 -10
- package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
- package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
- package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -115
- package/templates/repo/.github/skills/planning/SKILL.md +0 -163
- package/templates/repo/.github/skills/planning/references/codebase-understanding.md +0 -62
- package/templates/repo/.github/skills/planning/references/output-standards.md +0 -141
- package/templates/repo/.github/skills/planning/references/plan-organization.md +0 -160
- package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
- package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -95
- package/templates/repo/.github/skills/repomix/SKILL.md +0 -247
- package/templates/repo/.github/skills/repomix/references/usage-patterns.md +0 -232
- package/templates/repo/.github/skills/repomix/scripts/README.md +0 -179
- package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +0 -455
- package/templates/repo/.github/skills/research/SKILL.md +0 -169
- package/templates/repo/.github/skills/scout/SKILL.md +0 -91
- package/templates/repo/.github/skills/scout/references/external-scouting.md +0 -140
- package/templates/repo/.github/skills/scout/references/internal-scouting.md +0 -119
- package/templates/repo/.github/skills/sequential-thinking/README.md +0 -183
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -92
- package/templates/repo/.github/skills/sequential-thinking/package.json +0 -31
- package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
- package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -319
- package/templates/repo/.github/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
- package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
- package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
- package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
- package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
- package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
- package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
- package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
- package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
- package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
- package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
- package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
- package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
- package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
- package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
- package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
- package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
- package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
- package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
- package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
- package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
- package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
- package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
- package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
- package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
- package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
- package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
- /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
- /package/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/skills/{devops → ck-devops}/.env.example +0 -0
- /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
- /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { getBrowser, getPage, disconnectBrowser, outputJSON } from './lib/browser.js';
|
|
2
|
+
|
|
3
|
+
async function debugWsFull() {
|
|
4
|
+
const browser = await getBrowser({ headless: false });
|
|
5
|
+
const page = await getPage(browser);
|
|
6
|
+
|
|
7
|
+
const logs = [];
|
|
8
|
+
const wsEvents = [];
|
|
9
|
+
const networkErrors = [];
|
|
10
|
+
|
|
11
|
+
// Capture ALL console messages
|
|
12
|
+
page.on('console', msg => {
|
|
13
|
+
logs.push({
|
|
14
|
+
type: msg.type(),
|
|
15
|
+
text: msg.text(),
|
|
16
|
+
location: msg.location()
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
// Capture page errors
|
|
21
|
+
page.on('pageerror', err => {
|
|
22
|
+
logs.push({ type: 'pageerror', text: err.message });
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
// Monitor WebSocket via CDP
|
|
26
|
+
const client = await page.createCDPSession();
|
|
27
|
+
await client.send('Network.enable');
|
|
28
|
+
|
|
29
|
+
client.on('Network.webSocketCreated', e => {
|
|
30
|
+
console.log('WS Created:', e.url);
|
|
31
|
+
wsEvents.push({ event: 'created', url: e.url, requestId: e.requestId });
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
client.on('Network.webSocketWillSendHandshakeRequest', e => {
|
|
35
|
+
console.log('WS Handshake Request:', e.requestId);
|
|
36
|
+
wsEvents.push({ event: 'handshake_request', requestId: e.requestId, request: e.request });
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
client.on('Network.webSocketHandshakeResponseReceived', e => {
|
|
40
|
+
console.log('WS Handshake Response:', e.response?.status);
|
|
41
|
+
wsEvents.push({
|
|
42
|
+
event: 'handshake_response',
|
|
43
|
+
requestId: e.requestId,
|
|
44
|
+
status: e.response?.status,
|
|
45
|
+
headers: e.response?.headers
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
client.on('Network.webSocketClosed', e => {
|
|
50
|
+
console.log('WS Closed:', e.requestId);
|
|
51
|
+
wsEvents.push({ event: 'closed', requestId: e.requestId });
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
client.on('Network.webSocketFrameError', e => {
|
|
55
|
+
console.log('WS Frame Error:', e.errorMessage);
|
|
56
|
+
wsEvents.push({ event: 'frame_error', requestId: e.requestId, error: e.errorMessage });
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
client.on('Network.webSocketFrameReceived', e => {
|
|
60
|
+
wsEvents.push({ event: 'frame_received', requestId: e.requestId, data: e.response?.payloadData?.substring(0, 200) });
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
client.on('Network.webSocketFrameSent', e => {
|
|
64
|
+
wsEvents.push({ event: 'frame_sent', requestId: e.requestId, data: e.response?.payloadData?.substring(0, 200) });
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
// Track failed requests
|
|
68
|
+
client.on('Network.loadingFailed', e => {
|
|
69
|
+
if (e.type === 'WebSocket') {
|
|
70
|
+
networkErrors.push({ requestId: e.requestId, error: e.errorText, canceled: e.canceled });
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
console.log('Navigating to app...');
|
|
75
|
+
await page.goto('http://localhost:5173', { waitUntil: 'networkidle0', timeout: 20000 });
|
|
76
|
+
|
|
77
|
+
console.log('Current URL:', page.url());
|
|
78
|
+
|
|
79
|
+
// Wait longer and collect events
|
|
80
|
+
console.log('Waiting 10s to collect WebSocket events...');
|
|
81
|
+
await new Promise(r => setTimeout(r, 10000));
|
|
82
|
+
|
|
83
|
+
// Filter for /ws connections only (not vite-hmr)
|
|
84
|
+
const appWsEvents = wsEvents.filter(e => e.url?.includes('/ws') && !e.url?.includes('token='));
|
|
85
|
+
|
|
86
|
+
outputJSON({
|
|
87
|
+
success: true,
|
|
88
|
+
url: page.url(),
|
|
89
|
+
appWsEvents,
|
|
90
|
+
allWsEvents: wsEvents,
|
|
91
|
+
networkErrors,
|
|
92
|
+
logs: logs.filter(l =>
|
|
93
|
+
l.text?.toLowerCase().includes('websocket') ||
|
|
94
|
+
l.text?.toLowerCase().includes('unauthorized') ||
|
|
95
|
+
l.text?.toLowerCase().includes('error') ||
|
|
96
|
+
l.type === 'error'
|
|
97
|
+
).slice(0, 20)
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
await disconnectBrowser();
|
|
101
|
+
process.exit(0);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
debugWsFull().catch(e => {
|
|
105
|
+
console.error(JSON.stringify({ success: false, error: e.message, stack: e.stack }));
|
|
106
|
+
process.exit(1);
|
|
107
|
+
});
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ck-code-review
|
|
3
|
+
description: "Review code quality with adversarial rigor. Supports input modes: pending changes, PR number, commit hash, codebase scan. Always-on red-team analysis finds security holes, false assumptions, and failure modes."
|
|
4
|
+
argument-hint: "[#PR | COMMIT | --pending | codebase [parallel]]"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Code Review
|
|
8
|
+
|
|
9
|
+
Adversarial code review with technical rigor, evidence-based claims, and verification over performative responses. Every review includes red-team analysis that actively tries to break the code.
|
|
10
|
+
|
|
11
|
+
## Input Modes
|
|
12
|
+
|
|
13
|
+
Auto-detect from arguments. If ambiguous or no arguments, prompt by asking the user.
|
|
14
|
+
|
|
15
|
+
| Input | Mode | What Gets Reviewed |
|
|
16
|
+
|-------|------|--------------------|
|
|
17
|
+
| `#123` or PR URL | **PR** | Full PR diff fetched via `gh pr diff` |
|
|
18
|
+
| `abc1234` (7+ hex chars) | **Commit** | Single commit diff via `git show` |
|
|
19
|
+
| `--pending` | **Pending** | Staged + unstaged changes via `git diff` |
|
|
20
|
+
| *(no args, recent changes)* | **Default** | Recent changes in context |
|
|
21
|
+
| `codebase` | **Codebase** | Full codebase scan |
|
|
22
|
+
| `codebase parallel` | **Codebase+** | Parallel multi-reviewer audit |
|
|
23
|
+
|
|
24
|
+
**Resolution details:** `references/input-mode-resolution.md`
|
|
25
|
+
|
|
26
|
+
### No Arguments
|
|
27
|
+
|
|
28
|
+
If invoked WITHOUT arguments and no recent changes in context, ask the user with header "Review Target", question "What would you like to review?":
|
|
29
|
+
|
|
30
|
+
| Option | Description |
|
|
31
|
+
|--------|-------------|
|
|
32
|
+
| Pending changes | Review staged/unstaged git diff |
|
|
33
|
+
| Enter PR number | Fetch and review a specific PR |
|
|
34
|
+
| Enter commit hash | Review a specific commit |
|
|
35
|
+
| Full codebase scan | Deep codebase analysis |
|
|
36
|
+
| Parallel codebase audit | Multi-reviewer codebase scan |
|
|
37
|
+
|
|
38
|
+
## Core Principle
|
|
39
|
+
|
|
40
|
+
**YAGNI**, **KISS**, **DRY** always. Technical correctness over social comfort.
|
|
41
|
+
**Be honest, be brutal, straight to the point, and be concise.**
|
|
42
|
+
|
|
43
|
+
Verify before implementing. Ask before assuming. Evidence before claims.
|
|
44
|
+
|
|
45
|
+
## Practices
|
|
46
|
+
|
|
47
|
+
| Practice | When | Reference |
|
|
48
|
+
|----------|------|-----------|
|
|
49
|
+
| **Spec compliance** | After implementing from plan/spec, BEFORE quality review | `references/spec-compliance-review.md` |
|
|
50
|
+
| **Adversarial review** | Always-on Stage 3 — actively tries to break the code | `references/adversarial-review.md` |
|
|
51
|
+
| Receiving feedback | Unclear feedback, external reviewers, needs prioritization | `references/code-review-reception.md` |
|
|
52
|
+
| Requesting review | After tasks, before merge, stuck on problem | `references/requesting-code-review.md` |
|
|
53
|
+
| Verification gates | Before any completion claim, commit, PR | `references/verification-before-completion.md` |
|
|
54
|
+
| Edge case scouting | After implementation, before review | `references/edge-case-scouting.md` |
|
|
55
|
+
| **Checklist review** | Pre-landing, `/ck-ship` pipeline, security audit | `references/checklist-workflow.md` |
|
|
56
|
+
| **Task-managed reviews** | Multi-file features (3+ files), parallel reviewers, fix cycles | `references/task-management-reviews.md` |
|
|
57
|
+
|
|
58
|
+
## Quick Decision Tree
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
SITUATION?
|
|
62
|
+
│
|
|
63
|
+
├─ Input mode? → Resolve diff (references/input-mode-resolution.md)
|
|
64
|
+
│ ├─ #PR / URL → fetch PR diff
|
|
65
|
+
│ ├─ commit hash → git show
|
|
66
|
+
│ ├─ --pending → git diff (staged + unstaged)
|
|
67
|
+
│ ├─ codebase → full scan (references/codebase-scan-workflow.md)
|
|
68
|
+
│ ├─ codebase parallel → parallel audit (references/parallel-review-workflow.md)
|
|
69
|
+
│ └─ default → recent changes in context
|
|
70
|
+
│
|
|
71
|
+
├─ Received feedback → STOP if unclear, verify if external, implement if human partner
|
|
72
|
+
├─ Completed work from plan/spec:
|
|
73
|
+
│ ├─ Stage 1: Spec compliance review (references/spec-compliance-review.md)
|
|
74
|
+
│ │ └─ PASS? → Stage 2 │ FAIL? → Fix → Re-review Stage 1
|
|
75
|
+
│ ├─ Stage 2: Code quality review (code-reviewer subagent)
|
|
76
|
+
│ │ └─ Scout edge cases → Review standards, performance
|
|
77
|
+
│ └─ Stage 3: Adversarial review (references/adversarial-review.md) [ALWAYS-ON]
|
|
78
|
+
│ └─ Red-team the code → Adjudicate → Accept/Reject findings
|
|
79
|
+
├─ Completed work (no plan) → Scout → Code quality → Adversarial review
|
|
80
|
+
├─ Pre-landing / ship → Load checklists → Two-pass review → Adversarial review
|
|
81
|
+
├─ Multi-file feature (3+ files) → Create review pipeline tasks (scout→review→adversarial→fix→verify)
|
|
82
|
+
└─ About to claim status → RUN verification command FIRST
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Three-Stage Review Protocol
|
|
86
|
+
|
|
87
|
+
**Stage 1 — Spec Compliance** (load `references/spec-compliance-review.md`)
|
|
88
|
+
- Does code match what was requested?
|
|
89
|
+
- Any missing requirements? Any unjustified extras?
|
|
90
|
+
- MUST pass before Stage 2
|
|
91
|
+
|
|
92
|
+
**Stage 2 — Code Quality** (code-reviewer subagent)
|
|
93
|
+
- Only runs AFTER spec compliance passes
|
|
94
|
+
- Standards, security, performance, edge cases
|
|
95
|
+
|
|
96
|
+
**Stage 3 — Adversarial Review** (load `references/adversarial-review.md`)
|
|
97
|
+
- Runs AFTER Stage 2 passes, subject to scope gate (skip if <=2 files, <=30 lines, no security files)
|
|
98
|
+
- Spawn adversarial reviewer with context anchoring (runtime, framework, context files)
|
|
99
|
+
- Find: security holes, false assumptions, resource exhaustion, race conditions, supply chain, observability gaps
|
|
100
|
+
- Output: Accept (must fix) / Reject (false positive) / Defer (GitHub issue) verdicts per finding
|
|
101
|
+
- Critical findings block merge; re-reviews use fix-diff-only optimization
|
|
102
|
+
|
|
103
|
+
## Receiving Feedback
|
|
104
|
+
|
|
105
|
+
**Pattern:** READ → UNDERSTAND → VERIFY → EVALUATE → RESPOND → IMPLEMENT
|
|
106
|
+
No performative agreement. Verify before implementing. Push back if wrong.
|
|
107
|
+
|
|
108
|
+
**Full protocol:** `references/code-review-reception.md`
|
|
109
|
+
|
|
110
|
+
## Requesting Review
|
|
111
|
+
|
|
112
|
+
**When:** After each task, major features, before merge
|
|
113
|
+
|
|
114
|
+
**Process:**
|
|
115
|
+
1. **Scout edge cases first** (see below)
|
|
116
|
+
2. Get SHAs: `BASE_SHA=$(git rev-parse HEAD~1)` and `HEAD_SHA=$(git rev-parse HEAD)`
|
|
117
|
+
3. Dispatch code-reviewer subagent with: WHAT, PLAN, BASE_SHA, HEAD_SHA, DESCRIPTION
|
|
118
|
+
4. Fix Critical immediately, Important before proceeding
|
|
119
|
+
|
|
120
|
+
**Full protocol:** `references/requesting-code-review.md`
|
|
121
|
+
|
|
122
|
+
## Edge Case Scouting
|
|
123
|
+
|
|
124
|
+
**When:** After implementation, before requesting code-reviewer
|
|
125
|
+
|
|
126
|
+
**Process:**
|
|
127
|
+
1. Invoke `/ck-scout` with edge-case-focused prompt
|
|
128
|
+
2. Scout analyzes: affected files, data flows, error paths, boundary conditions
|
|
129
|
+
3. Review scout findings for potential issues
|
|
130
|
+
4. Address critical gaps before code review
|
|
131
|
+
|
|
132
|
+
**Full protocol:** `references/edge-case-scouting.md`
|
|
133
|
+
|
|
134
|
+
## Task-Managed Review Pipeline
|
|
135
|
+
|
|
136
|
+
**When:** Multi-file features (3+ changed files), parallel code-reviewer scopes, review cycles with Critical fix iterations.
|
|
137
|
+
|
|
138
|
+
**Fallback:** Task tools (`TaskCreate`/`TaskUpdate`/`TaskGet`/`TaskList`) are CLI-only — unavailable in VSCode extension. If they error, use `TodoWrite` for tracking and run pipeline sequentially. Review quality is identical.
|
|
139
|
+
|
|
140
|
+
**Pipeline:** scout → review → adversarial → fix → verify (each a Task with dependency chain)
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
TaskCreate: "Scout edge cases" → pending
|
|
144
|
+
TaskCreate: "Review implementation" → pending, blockedBy: [scout]
|
|
145
|
+
TaskCreate: "Adversarial review" → pending, blockedBy: [review]
|
|
146
|
+
TaskCreate: "Fix critical issues" → pending, blockedBy: [adversarial]
|
|
147
|
+
TaskCreate: "Verify fixes pass" → pending, blockedBy: [fix]
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**Parallel reviews:** Spawn scoped code-reviewer subagents for independent file groups (e.g., backend + frontend). Fix task blocks on all reviewers completing.
|
|
151
|
+
|
|
152
|
+
**Re-review cycles:** If fixes introduce new issues, create cycle-2 review task. Limit 3 cycles, escalate to user after.
|
|
153
|
+
|
|
154
|
+
**Full protocol:** `references/task-management-reviews.md`
|
|
155
|
+
|
|
156
|
+
## Verification Gates
|
|
157
|
+
|
|
158
|
+
**Iron Law:** NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
|
|
159
|
+
|
|
160
|
+
**Gate:** IDENTIFY command → RUN full → READ output → VERIFY confirms → THEN claim
|
|
161
|
+
|
|
162
|
+
**Requirements:**
|
|
163
|
+
- Tests pass: Output shows 0 failures
|
|
164
|
+
- Build succeeds: Exit 0
|
|
165
|
+
- Bug fixed: Original symptom passes
|
|
166
|
+
- Requirements met: Checklist verified
|
|
167
|
+
|
|
168
|
+
**Red Flags:** "should"/"probably"/"seems to", satisfaction before verification, trusting agent reports
|
|
169
|
+
|
|
170
|
+
**Full protocol:** `references/verification-before-completion.md`
|
|
171
|
+
|
|
172
|
+
## Integration with Workflows
|
|
173
|
+
|
|
174
|
+
- **Subagent-Driven:** Scout → Review → Adversarial → Verify before next task
|
|
175
|
+
- **Pull Requests:** Scout → Code quality → Adversarial → Merge
|
|
176
|
+
- **Task Pipeline:** Create review tasks with dependencies → auto-unblock through chain
|
|
177
|
+
- **Cook Handoff:** Cook completes phase → review pipeline tasks (incl. adversarial) → all complete → cook proceeds
|
|
178
|
+
- **PR Review:** `/code-review #123` → fetch diff → full 3-stage review on PR changes
|
|
179
|
+
- **Commit Review:** `/code-review abc1234` → review specific commit with full pipeline
|
|
180
|
+
|
|
181
|
+
## Codebase Analysis Subcommands
|
|
182
|
+
|
|
183
|
+
| Subcommand | Reference | Purpose |
|
|
184
|
+
|------------|-----------|---------|
|
|
185
|
+
| `/ck-code-review codebase` | `references/codebase-scan-workflow.md` | Scan & analyze the codebase |
|
|
186
|
+
| `/ck-code-review codebase parallel` | `references/parallel-review-workflow.md` | Ultrathink edge cases, then parallel verify |
|
|
187
|
+
|
|
188
|
+
## Bottom Line
|
|
189
|
+
|
|
190
|
+
1. Resolve input mode first — know WHAT you're reviewing
|
|
191
|
+
2. Technical rigor over social performance
|
|
192
|
+
3. Scout edge cases before review
|
|
193
|
+
4. Adversarial review on EVERY review — no exceptions
|
|
194
|
+
5. Evidence before claims
|
|
195
|
+
|
|
196
|
+
Verify. Scout. Red-team. Question. Then implement. Evidence. Then claim.
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: adversarial-review
|
|
3
|
+
description: Stage 3 red-team review that actively tries to break code — finds security holes, false assumptions, failure modes, race conditions. Spawns adversarial reviewer subagent with destructive mindset. Includes scope gate for trivial changes.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Adversarial Review (Stage 3)
|
|
7
|
+
|
|
8
|
+
Runs after every Stage 2 (Code Quality) pass. Subject to scope gate below.
|
|
9
|
+
|
|
10
|
+
## Scope Gate
|
|
11
|
+
|
|
12
|
+
Skip adversarial review when ALL of these are true:
|
|
13
|
+
- Changed files <= 2
|
|
14
|
+
- Lines changed <= 30
|
|
15
|
+
- No security-sensitive files touched (auth, crypto, input parsing, SQL, env)
|
|
16
|
+
- No new dependencies added
|
|
17
|
+
|
|
18
|
+
When skipped, note: `Adversarial: skipped (below threshold)` in review output.
|
|
19
|
+
|
|
20
|
+
**NEVER skip when:**
|
|
21
|
+
- Any file in: `auth/`, `middleware/`, `security/`, `crypto/`
|
|
22
|
+
- `package.json`, `package-lock.json`, or lockfile changed
|
|
23
|
+
- Environment variables added/changed
|
|
24
|
+
- Database schema modified
|
|
25
|
+
- API route added/changed
|
|
26
|
+
|
|
27
|
+
## Mindset
|
|
28
|
+
|
|
29
|
+
> "You are hired to tear apart the implementer's work. Your job is to find every way this code can fail, be exploited, or produce incorrect results. Assume the implementer made mistakes. Prove it."
|
|
30
|
+
|
|
31
|
+
This is NOT a standard code review. Standard reviews check if code meets requirements. Adversarial review assumes requirements are met and asks: **"How can this still break?"**
|
|
32
|
+
|
|
33
|
+
## What to Attack
|
|
34
|
+
|
|
35
|
+
### Security Holes
|
|
36
|
+
- Injection vectors (SQL, command, XSS, template)
|
|
37
|
+
- Auth bypass paths (missing checks, privilege escalation)
|
|
38
|
+
- Secrets exposure (logs, error messages, stack traces)
|
|
39
|
+
- Input trust boundaries (user input treated as safe)
|
|
40
|
+
- SSRF, path traversal, deserialization attacks
|
|
41
|
+
|
|
42
|
+
### False Assumptions
|
|
43
|
+
- "This will never be null" -- prove it can be
|
|
44
|
+
- "This list always has elements" -- find the empty case
|
|
45
|
+
- "Users always call A before B" -- find the out-of-order path
|
|
46
|
+
- "This config value exists" -- find the missing env var
|
|
47
|
+
- "This third-party API always returns 200" -- find the failure mode
|
|
48
|
+
- "This API shape won't change" -- find the breaking caller
|
|
49
|
+
|
|
50
|
+
### Failure Modes & Resource Exhaustion
|
|
51
|
+
- What happens when disk is full?
|
|
52
|
+
- What happens when network times out mid-operation?
|
|
53
|
+
- What happens when the database connection drops during a transaction?
|
|
54
|
+
- Unbounded allocations from user-controlled input
|
|
55
|
+
- Missing timeouts on external calls
|
|
56
|
+
- Event loop blocking (sync operations in async context)
|
|
57
|
+
- Connection/handle leaks on error paths
|
|
58
|
+
- Regex catastrophic backtracking (ReDoS)
|
|
59
|
+
|
|
60
|
+
### Race Conditions
|
|
61
|
+
- Shared mutable state without locks
|
|
62
|
+
- Time-of-check-to-time-of-use (TOCTOU)
|
|
63
|
+
- Async operations with implicit ordering assumptions
|
|
64
|
+
- Cache invalidation during concurrent writes
|
|
65
|
+
|
|
66
|
+
### Data Corruption
|
|
67
|
+
- Partial writes on failure (no transaction/rollback)
|
|
68
|
+
- Type coercion surprises (string "0" as falsy)
|
|
69
|
+
- Floating point comparison for equality
|
|
70
|
+
- Timezone-naive datetime operations
|
|
71
|
+
|
|
72
|
+
### Supply Chain & Dependencies
|
|
73
|
+
- New dependencies: postinstall scripts, maintainer reputation, bundle size
|
|
74
|
+
- Lockfile changes: version drift, removed integrity hashes
|
|
75
|
+
- Transitive deps pulling in known-vulnerable packages
|
|
76
|
+
|
|
77
|
+
### Observability Blind Spots
|
|
78
|
+
- Swallowed errors (`catch {}` with no log)
|
|
79
|
+
- Missing structured context in error logs
|
|
80
|
+
- PII in log output
|
|
81
|
+
|
|
82
|
+
## Process
|
|
83
|
+
|
|
84
|
+
### 1. Spawn Adversarial Reviewer
|
|
85
|
+
|
|
86
|
+
Dispatch `ck-code-reviewer` subagent with adversarial prompt:
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
You are an adversarial code reviewer. Your ONLY job is to find ways this code
|
|
90
|
+
can fail, be exploited, or produce incorrect results.
|
|
91
|
+
|
|
92
|
+
DO NOT praise the code. DO NOT note what works well.
|
|
93
|
+
ONLY report problems. If you find nothing, say "No findings" -- but try harder first.
|
|
94
|
+
|
|
95
|
+
Focus on ADDED/MODIFIED lines (+ prefix in diff). Pre-existing code is out of scope
|
|
96
|
+
unless the change makes it newly exploitable.
|
|
97
|
+
|
|
98
|
+
Context (read for understanding, DO NOT review):
|
|
99
|
+
{CONTEXT_FILES}
|
|
100
|
+
|
|
101
|
+
Runtime: {RUNTIME} (e.g., Node.js single-threaded, browser, serverless)
|
|
102
|
+
Framework: {FRAMEWORK} (e.g., Express with global error handler at app.ts:45)
|
|
103
|
+
|
|
104
|
+
Review this diff:
|
|
105
|
+
{DIFF}
|
|
106
|
+
|
|
107
|
+
Changed files: {FILES}
|
|
108
|
+
|
|
109
|
+
Attack vectors to check:
|
|
110
|
+
1. Security holes (injection, auth bypass, secrets exposure)
|
|
111
|
+
2. False assumptions (null, empty, ordering, config, API contracts)
|
|
112
|
+
3. Failure modes + resource exhaustion (timeouts, leaks, unbounded input)
|
|
113
|
+
4. Race conditions (shared state, TOCTOU, async ordering)
|
|
114
|
+
5. Data corruption (partial writes, type coercion, encoding)
|
|
115
|
+
6. Supply chain (new deps, lockfile changes, transitive vulns)
|
|
116
|
+
7. Observability (swallowed errors, missing logs, PII in output)
|
|
117
|
+
|
|
118
|
+
For each finding, report:
|
|
119
|
+
- SEVERITY: Critical / Medium / Low
|
|
120
|
+
- CATEGORY: Security / Assumption / Failure / Race / Data / Supply / Observability
|
|
121
|
+
- LOCATION: file:line
|
|
122
|
+
- ATTACK: How to trigger the problem
|
|
123
|
+
- IMPACT: What happens when triggered
|
|
124
|
+
- FIX: Describe the fix approach (e.g., "add null check before line 42").
|
|
125
|
+
Do NOT write implementation code -- the implementer has full context.
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
**If adversarial produces >10 findings on <100 lines changed:** likely too aggressive. Batch-reject noise, deep-review only Critical/Medium.
|
|
129
|
+
|
|
130
|
+
### 2. Adjudicate Findings
|
|
131
|
+
|
|
132
|
+
Main agent reviews each adversarial finding and assigns verdict:
|
|
133
|
+
|
|
134
|
+
| Verdict | Meaning | Action |
|
|
135
|
+
|---------|---------|--------|
|
|
136
|
+
| **Accept** | Valid flaw, reproducible or clearly reasoned | Must fix before merge |
|
|
137
|
+
| **Reject** | False positive, already handled, or impossible path | Document why, no action |
|
|
138
|
+
| **Defer** | Valid but low-risk, tracked for later | Create GitHub issue for tracking |
|
|
139
|
+
|
|
140
|
+
**Rules:**
|
|
141
|
+
- Every finding gets a verdict -- no silent dismissals
|
|
142
|
+
- Critical findings: Accept unless you can PROVE false positive
|
|
143
|
+
- Benefit of doubt goes to the adversary (safer to fix than to dismiss)
|
|
144
|
+
- If >50% of findings are Rejected, the adversary was too aggressive -- but still report all
|
|
145
|
+
|
|
146
|
+
**Calibration examples:**
|
|
147
|
+
|
|
148
|
+
| Verdict | Example | Reasoning |
|
|
149
|
+
|---------|---------|-----------|
|
|
150
|
+
| Accept | "SQL injection via string interpolation in query builder" | Clearly exploitable, concrete path shown |
|
|
151
|
+
| Reject | "Missing null check on config.apiUrl" | Config loaded at startup with schema validation (see config.ts:12), cannot be null at runtime |
|
|
152
|
+
| Defer | "No rate limiting on POST /api/upload" | Valid concern but internal-only tool currently; track for public exposure |
|
|
153
|
+
|
|
154
|
+
### 3. Report Format
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
## Adversarial Review -- Stage 3
|
|
158
|
+
|
|
159
|
+
### Summary
|
|
160
|
+
- Findings: N total (X Critical, Y Medium, Z Low)
|
|
161
|
+
- Accepted: A (must fix)
|
|
162
|
+
- Rejected: B (false positive)
|
|
163
|
+
- Deferred: C (tracked via GitHub issues)
|
|
164
|
+
|
|
165
|
+
### Accepted Findings (Must Fix)
|
|
166
|
+
|
|
167
|
+
#### [1] SEVERITY -- CATEGORY -- file:line
|
|
168
|
+
**Attack:** How to trigger
|
|
169
|
+
**Impact:** What happens
|
|
170
|
+
**Fix:** Approach description
|
|
171
|
+
**Verdict:** Accept -- [reason]
|
|
172
|
+
|
|
173
|
+
### Rejected Findings
|
|
174
|
+
|
|
175
|
+
#### [N] SEVERITY -- CATEGORY -- file:line
|
|
176
|
+
**Attack:** Claimed vector
|
|
177
|
+
**Verdict:** Reject -- [reason this is a false positive]
|
|
178
|
+
|
|
179
|
+
### Deferred Findings
|
|
180
|
+
|
|
181
|
+
#### [N] SEVERITY -- CATEGORY -- file:line
|
|
182
|
+
**Attack:** How to trigger
|
|
183
|
+
**Verdict:** Defer -- [reason] → GitHub issue #X
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
### 4. Fix Accepted Findings
|
|
187
|
+
|
|
188
|
+
- Critical: Block merge. Fix immediately via `/fix` or manual edit.
|
|
189
|
+
- Medium: Fix before merge if feasible. Defer only with explicit user approval.
|
|
190
|
+
- Low: Track. Fix in follow-up if pattern repeats.
|
|
191
|
+
|
|
192
|
+
### Re-review Optimization
|
|
193
|
+
|
|
194
|
+
On fix cycles (re-running after accepted findings were fixed):
|
|
195
|
+
- Only pass the FIX diff to adversarial, not the full original diff
|
|
196
|
+
- Verify accepted findings are resolved
|
|
197
|
+
- Check for regression: did the fix introduce new issues?
|
|
198
|
+
|
|
199
|
+
## Integration with Pipeline
|
|
200
|
+
|
|
201
|
+
```
|
|
202
|
+
Stage 1 (Spec) → PASS
|
|
203
|
+
↓
|
|
204
|
+
Stage 2 (Quality) → PASS
|
|
205
|
+
↓
|
|
206
|
+
Scope gate → below threshold? → skip (note in report)
|
|
207
|
+
↓ (above threshold)
|
|
208
|
+
Stage 3 (Adversarial) → findings
|
|
209
|
+
├─ 0 Accepted → PASS → proceed
|
|
210
|
+
├─ Accepted Critical → BLOCK → fix → re-run Stage 3 (fix diff only)
|
|
211
|
+
└─ Accepted Medium/Low only → fix or defer → proceed
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
**Task pipeline update:** When using task-managed reviews, adversarial review gets its own task between "Review implementation" and "Fix critical issues".
|
|
215
|
+
|
|
216
|
+
## What This Is NOT
|
|
217
|
+
|
|
218
|
+
- NOT a style review (Stage 2 handles that)
|
|
219
|
+
- NOT a spec compliance check (Stage 1 handles that)
|
|
220
|
+
- NOT dependency graph analysis or import tracing (scout handles that)
|
|
221
|
+
- NOT a general "suggestions for improvement" pass
|
|
222
|
+
|
|
223
|
+
This is a focused, hostile attempt to break the code. If the code survives, it's ready to ship.
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# Checklist-Based Review Workflow
|
|
2
|
+
|
|
3
|
+
How to apply structured review checklists during code review.
|
|
4
|
+
|
|
5
|
+
## When to Use
|
|
6
|
+
|
|
7
|
+
- Pre-landing review (from `/ck-ship` pipeline)
|
|
8
|
+
- Explicit request for checklist review
|
|
9
|
+
- Security audit before release
|
|
10
|
+
- Code-reviewer agent when reviewing significant changes (10+ files or security-sensitive)
|
|
11
|
+
|
|
12
|
+
## Workflow
|
|
13
|
+
|
|
14
|
+
### 1. Auto-Detect Project Type
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Check for web app frameworks
|
|
18
|
+
if grep -qE '"(react|vue|svelte|next|nuxt|angular)"' package.json 2>/dev/null; then
|
|
19
|
+
echo "web-app"
|
|
20
|
+
# Check for API patterns
|
|
21
|
+
elif ls src/routes/ src/api/ src/controllers/ app/controllers/ 2>/dev/null | head -1; then
|
|
22
|
+
echo "api"
|
|
23
|
+
else
|
|
24
|
+
echo "base-only"
|
|
25
|
+
fi
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 2. Load Checklists
|
|
29
|
+
|
|
30
|
+
Always load: `checklists/base.md`
|
|
31
|
+
|
|
32
|
+
Overlay based on detection:
|
|
33
|
+
- `web-app` → also load `checklists/web-app.md`
|
|
34
|
+
- `api` → also load `checklists/api.md`
|
|
35
|
+
- Both detected → load both overlays
|
|
36
|
+
|
|
37
|
+
### 3. Get the Diff
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
git fetch origin main --quiet
|
|
41
|
+
git diff origin/main
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**CRITICAL:** Read the FULL diff before flagging anything. Checklist suppressions require full context.
|
|
45
|
+
|
|
46
|
+
### 4. Two-Pass Review
|
|
47
|
+
|
|
48
|
+
**Pass 1 (CRITICAL) — Run first:**
|
|
49
|
+
- Scan diff against ALL critical categories (base + overlays)
|
|
50
|
+
- Each finding must include: `[file:line]`, problem, fix
|
|
51
|
+
- These block `/ship` pipeline
|
|
52
|
+
|
|
53
|
+
**Pass 2 (INFORMATIONAL) — Run second:**
|
|
54
|
+
- Scan diff against ALL informational categories (base + overlays)
|
|
55
|
+
- Same format: `[file:line]`, problem, fix
|
|
56
|
+
- Included in PR body but don't block
|
|
57
|
+
|
|
58
|
+
### 5. Check Suppressions
|
|
59
|
+
|
|
60
|
+
Before reporting any finding, verify it's NOT in the suppressions list (bottom of `base.md`).
|
|
61
|
+
|
|
62
|
+
Key suppressions:
|
|
63
|
+
- Already addressed in the diff
|
|
64
|
+
- Readability-aiding redundancy
|
|
65
|
+
- Style/formatting issues
|
|
66
|
+
- "Consider using X" when Y works fine
|
|
67
|
+
|
|
68
|
+
### 6. Output
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
Pre-Landing Review: N issues (X critical, Y informational)
|
|
72
|
+
|
|
73
|
+
**CRITICAL** (blocking):
|
|
74
|
+
- [src/auth/login.ts:42] SQL injection via string interpolation in user lookup
|
|
75
|
+
Fix: Use parameterized query: `db.query('SELECT * FROM users WHERE email = $1', [email])`
|
|
76
|
+
|
|
77
|
+
**Issues** (non-blocking):
|
|
78
|
+
- [src/api/users.ts:88] Magic number 30 for pagination limit
|
|
79
|
+
Fix: Extract to constant `DEFAULT_PAGE_SIZE = 30`
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### 7. Critical Issue Resolution
|
|
83
|
+
|
|
84
|
+
For each critical issue, ask the user:
|
|
85
|
+
- Problem with `file:line`
|
|
86
|
+
- Recommended fix
|
|
87
|
+
- Options:
|
|
88
|
+
- A) Fix now (recommended)
|
|
89
|
+
- B) Acknowledge and proceed
|
|
90
|
+
- C) False positive — skip
|
|
91
|
+
|
|
92
|
+
If user chose A (fix): apply fixes, commit, then re-run tests before continuing.
|
|
93
|
+
|
|
94
|
+
## Integration with /ck-ship
|
|
95
|
+
|
|
96
|
+
The ship pipeline calls this workflow at Step 4. Critical findings block the pipeline. Informational findings are included in the PR body.
|
|
97
|
+
|
|
98
|
+
## Integration with /ck-code-review
|
|
99
|
+
|
|
100
|
+
When invoked as part of standard code review, the checklist augments (not replaces) the existing scout → review → fix → verify pipeline. Checklist findings are merged with code-reviewer's own findings.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# API Review Checklist (Overlay)
|
|
2
|
+
|
|
3
|
+
Additive to `base.md`. Apply when project exposes REST/GraphQL/gRPC APIs.
|
|
4
|
+
|
|
5
|
+
## Detection
|
|
6
|
+
|
|
7
|
+
Apply this overlay when any of these are true:
|
|
8
|
+
- Project has route definitions (Express, FastAPI, NestJS, Django, Rails, Go chi/gin)
|
|
9
|
+
- OpenAPI/Swagger spec file exists
|
|
10
|
+
- `src/routes/`, `src/api/`, `src/controllers/` directories
|
|
11
|
+
- GraphQL schema files in the diff
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Pass 1 — CRITICAL (additions to base)
|
|
16
|
+
|
|
17
|
+
### Auth & Rate Limiting
|
|
18
|
+
- Public endpoints missing rate limiting (login, registration, password reset)
|
|
19
|
+
- API keys or tokens exposed in URL query parameters (use headers)
|
|
20
|
+
- Missing auth middleware on new routes
|
|
21
|
+
- Batch/bulk endpoints without per-item authorization checks
|
|
22
|
+
|
|
23
|
+
### Input Validation
|
|
24
|
+
- Request body accepted without schema validation (missing Zod, Joi, Pydantic, etc.)
|
|
25
|
+
- Mass assignment: entire request body spread into database model
|
|
26
|
+
- File upload without size/type restrictions
|
|
27
|
+
- Array inputs without length limits (DoS via large payloads)
|
|
28
|
+
|
|
29
|
+
### Data Exposure
|
|
30
|
+
- Sensitive fields in API responses (password hashes, internal IDs, tokens)
|
|
31
|
+
- Stack traces or internal error details in production error responses
|
|
32
|
+
- Verbose error messages that leak schema/implementation details
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Pass 2 — INFORMATIONAL (additions to base)
|
|
37
|
+
|
|
38
|
+
### API Design
|
|
39
|
+
- List endpoints without pagination (LIMIT/OFFSET or cursor-based)
|
|
40
|
+
- Missing consistent error response format across endpoints
|
|
41
|
+
- Inconsistent naming conventions (camelCase vs snake_case in same API)
|
|
42
|
+
- Missing request/response content-type headers
|
|
43
|
+
|
|
44
|
+
### Observability
|
|
45
|
+
- New endpoints without logging/metrics
|
|
46
|
+
- Error paths that swallow exceptions silently
|
|
47
|
+
- Missing correlation/request IDs for tracing
|
|
48
|
+
|
|
49
|
+
### Versioning & Compatibility
|
|
50
|
+
- Breaking changes to existing response shapes without version bump
|
|
51
|
+
- Removed fields without deprecation notice
|
|
52
|
+
- Changed field types (string → number) in existing responses
|