cokit-cli 1.3.0 → 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 +6 -6
- package/agents/ck-brainstormer.agent.md +92 -0
- package/agents/ck-code-reviewer.agent.md +145 -0
- package/agents/ck-debugger.agent.md +142 -0
- package/agents/ck-ui-ux-designer.agent.md +200 -0
- package/docs/README.md +2 -9
- package/docs/codebase-summary.md +4 -4
- package/docs/cokit-sync-and-maintenance-guide.md +1 -1
- package/docs/copilot-processing-flow.md +15 -15
- package/docs/project-overview-pdr.md +1 -1
- package/docs/upstream-porting-rules.md +4 -3
- package/package.json +1 -1
- package/prompts/ck-bootstrap.prompt.md +12 -12
- package/prompts/ck-cook.prompt.md +11 -11
- package/prompts/ck-fix-fast.prompt.md +1 -1
- package/prompts/ck-fix-hard.prompt.md +2 -2
- package/prompts/ck-plan-fast.prompt.md +1 -1
- package/prompts/ck-plan-hard.prompt.md +3 -3
- package/prompts/ck-plan-red-team.prompt.md +1 -1
- package/prompts/ck-review.prompt.md +4 -4
- package/prompts/ck-test.prompt.md +1 -1
- package/skills/ck-agent-browser/SKILL.md +294 -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/codebase-scan-workflow.md +30 -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-context-engineering/SKILL.md +107 -0
- package/skills/ck-cook/SKILL.md +155 -0
- package/skills/ck-cook/references/workflow-steps.md +192 -0
- package/skills/ck-databases/SKILL.md +84 -0
- package/skills/ck-debug/SKILL.md +120 -0
- package/skills/ck-deploy/SKILL.md +154 -0
- package/skills/ck-devops/SKILL.md +96 -0
- package/skills/ck-docs-seeker/SKILL.md +97 -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/prevention-gate.md +87 -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/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-git/SKILL.md +113 -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/SKILL.md +210 -0
- package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/skills/ck-planning/SKILL.md +194 -0
- package/skills/ck-planning/references/research-phase.md +49 -0
- package/skills/ck-planning/references/task-management.md +134 -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-repomix/SKILL.md +248 -0
- package/skills/ck-research/SKILL.md +172 -0
- package/skills/ck-scout/SKILL.md +91 -0
- package/skills/ck-security/SKILL.md +139 -0
- package/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/skills/ck-ship/SKILL.md +116 -0
- package/skills/ck-ship/references/ship-workflow.md +241 -0
- package/skills/ck-test/SKILL.md +111 -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-debugger.agent.md +142 -0
- package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -12
- package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -11
- 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-plan-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -3
- package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-review.prompt.md +4 -4
- package/templates/repo/.github/prompts/ck-test.prompt.md +1 -1
- package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -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/codebase-scan-workflow.md +30 -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-context-engineering/SKILL.md +107 -0
- package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -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-debug/SKILL.md +120 -0
- package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -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-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/prevention-gate.md +87 -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/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-git/SKILL.md +113 -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/SKILL.md +210 -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/research-phase.md +49 -0
- package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -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-repomix/SKILL.md +248 -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-security/SKILL.md +139 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -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/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 -92
- package/agents/code-reviewer.agent.md +0 -145
- package/agents/debugger.agent.md +0 -142
- package/agents/ui-ux-designer.agent.md +0 -200
- package/docs/cokit-comprehensive-mapping-guide.md +0 -355
- package/docs/cokit-slides.md +0 -207
- package/docs/cokit-team-presentation.md +0 -351
- package/docs/skills-and-orchestration-layer-en.md +0 -404
- package/docs/skills-and-orchestration-layer-vi.md +0 -404
- package/skills/agent-browser/SKILL.md +0 -294
- package/skills/backend-development/SKILL.md +0 -94
- package/skills/bootstrap/SKILL.md +0 -102
- package/skills/bootstrap/references/shared-phases.md +0 -59
- package/skills/bootstrap/references/workflow-auto.md +0 -52
- package/skills/bootstrap/references/workflow-fast.md +0 -50
- package/skills/bootstrap/references/workflow-full.md +0 -60
- package/skills/bootstrap/references/workflow-parallel.md +0 -59
- package/skills/brainstorm/SKILL.md +0 -122
- package/skills/code-review/SKILL.md +0 -196
- package/skills/code-review/references/adversarial-review.md +0 -223
- package/skills/code-review/references/codebase-scan-workflow.md +0 -30
- package/skills/code-review/references/parallel-review-workflow.md +0 -76
- package/skills/code-review/references/requesting-code-review.md +0 -116
- package/skills/context-engineering/SKILL.md +0 -107
- package/skills/cook/SKILL.md +0 -155
- package/skills/cook/references/workflow-steps.md +0 -192
- package/skills/databases/SKILL.md +0 -84
- package/skills/debug/SKILL.md +0 -120
- package/skills/deploy/SKILL.md +0 -154
- package/skills/devops/SKILL.md +0 -96
- package/skills/docs-seeker/SKILL.md +0 -97
- package/skills/fix/SKILL.md +0 -209
- package/skills/fix/references/complexity-assessment.md +0 -73
- package/skills/fix/references/diagnosis-protocol.md +0 -133
- package/skills/fix/references/prevention-gate.md +0 -87
- package/skills/fix/references/skill-activation-matrix.md +0 -98
- package/skills/fix/references/task-orchestration.md +0 -110
- package/skills/fix/references/workflow-ci.md +0 -28
- package/skills/fix/references/workflow-deep.md +0 -154
- package/skills/fix/references/workflow-logs.md +0 -72
- package/skills/fix/references/workflow-quick.md +0 -82
- package/skills/fix/references/workflow-standard.md +0 -120
- package/skills/fix/references/workflow-test.md +0 -75
- package/skills/fix/references/workflow-ui.md +0 -72
- package/skills/frontend-design/SKILL.md +0 -109
- package/skills/frontend-design/references/workflow-3d.md +0 -98
- package/skills/frontend-design/references/workflow-describe.md +0 -87
- package/skills/frontend-design/references/workflow-immersive.md +0 -82
- package/skills/frontend-design/references/workflow-quick.md +0 -52
- package/skills/frontend-design/references/workflow-screenshot.md +0 -63
- package/skills/frontend-design/references/workflow-video.md +0 -74
- package/skills/frontend-development/SKILL.md +0 -400
- package/skills/git/SKILL.md +0 -113
- 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/SKILL.md +0 -210
- package/skills/mermaidjs-v11/SKILL.md +0 -116
- package/skills/planning/SKILL.md +0 -194
- package/skills/planning/references/research-phase.md +0 -49
- package/skills/planning/references/task-management.md +0 -134
- package/skills/planning/references/workflow-modes.md +0 -154
- package/skills/problem-solving/SKILL.md +0 -96
- package/skills/project-management/SKILL.md +0 -133
- package/skills/project-management/references/documentation-triggers.md +0 -60
- package/skills/repomix/SKILL.md +0 -248
- package/skills/research/SKILL.md +0 -172
- package/skills/scout/SKILL.md +0 -91
- package/skills/security/SKILL.md +0 -139
- package/skills/sequential-thinking/SKILL.md +0 -94
- package/skills/ship/SKILL.md +0 -116
- package/skills/ship/references/ship-workflow.md +0 -241
- package/skills/test/SKILL.md +0 -111
- package/skills/test/references/ui-testing-workflow.md +0 -65
- package/skills/ui-styling/SKILL.md +0 -321
- package/skills/web-testing/SKILL.md +0 -96
- package/templates/repo/.github/agents/brainstormer.agent.md +0 -92
- package/templates/repo/.github/agents/code-reviewer.agent.md +0 -145
- package/templates/repo/.github/agents/debugger.agent.md +0 -142
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -200
- package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -294
- package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
- package/templates/repo/.github/skills/bootstrap/SKILL.md +0 -102
- package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +0 -59
- package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +0 -52
- package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +0 -50
- package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +0 -60
- package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +0 -59
- package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -122
- package/templates/repo/.github/skills/code-review/SKILL.md +0 -196
- package/templates/repo/.github/skills/code-review/references/adversarial-review.md +0 -223
- package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +0 -30
- package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +0 -76
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -116
- package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -107
- package/templates/repo/.github/skills/cook/SKILL.md +0 -155
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -192
- package/templates/repo/.github/skills/databases/SKILL.md +0 -84
- package/templates/repo/.github/skills/debug/SKILL.md +0 -120
- package/templates/repo/.github/skills/deploy/SKILL.md +0 -154
- package/templates/repo/.github/skills/devops/SKILL.md +0 -96
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -97
- package/templates/repo/.github/skills/fix/SKILL.md +0 -209
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -73
- package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +0 -133
- package/templates/repo/.github/skills/fix/references/prevention-gate.md +0 -87
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -98
- package/templates/repo/.github/skills/fix/references/task-orchestration.md +0 -110
- package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -154
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -72
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -82
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -120
- package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -75
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -72
- package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -109
- package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +0 -98
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -87
- package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +0 -82
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -52
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -63
- package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +0 -74
- package/templates/repo/.github/skills/frontend-development/SKILL.md +0 -400
- package/templates/repo/.github/skills/git/SKILL.md +0 -113
- 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/SKILL.md +0 -210
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -116
- package/templates/repo/.github/skills/planning/SKILL.md +0 -194
- package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
- package/templates/repo/.github/skills/planning/references/task-management.md +0 -134
- package/templates/repo/.github/skills/planning/references/workflow-modes.md +0 -154
- package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -96
- package/templates/repo/.github/skills/project-management/SKILL.md +0 -133
- package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +0 -60
- package/templates/repo/.github/skills/repomix/SKILL.md +0 -248
- package/templates/repo/.github/skills/research/SKILL.md +0 -172
- package/templates/repo/.github/skills/scout/SKILL.md +0 -91
- package/templates/repo/.github/skills/security/SKILL.md +0 -139
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -94
- package/templates/repo/.github/skills/ship/SKILL.md +0 -116
- package/templates/repo/.github/skills/ship/references/ship-workflow.md +0 -241
- package/templates/repo/.github/skills/test/SKILL.md +0 -111
- package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +0 -65
- package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -321
- package/templates/repo/.github/skills/web-testing/SKILL.md +0 -96
- /package/agents/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
- /package/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
- /package/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
- /package/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
- /package/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
- /package/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
- /package/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
- /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/agents/{tester.agent.md → ck-tester.agent.md} +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/agent-browser-vs-chrome-devtools.md +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/checklist-workflow.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/task-management-reviews.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{common → ck-common}/README.md +0 -0
- /package/skills/{common → ck-common}/api_key_helper.py +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-degradation.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/runtime-awareness.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}/README.md +0 -0
- /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
- /package/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
- /package/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
- /package/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/skills/{databases → ck-databases}/db-design.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/frontend-verification.md +0 -0
- /package/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
- /package/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
- /package/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
- /package/skills/{debug → ck-debug}/references/reporting-standards.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/task-management-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/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/vultr.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/context7-patterns.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}/scripts/fetch-docs.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +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/mode-selection.md +0 -0
- /package/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
- /package/skills/{fix → ck-fix}/references/review-cycle.md +0 -0
- /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/ai-multimodal-overview.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/anti-slop-rules.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.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/magicui-components.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.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/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.md +0 -0
- /package/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/skills/{git → ck-git}/references/commit-standards.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}/README.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/.env.example +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/dist/mcp-client.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/mcp-client.ts +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/archive-workflow.md +0 -0
- /package/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
- /package/skills/{planning → ck-planning}/references/output-standards.md +0 -0
- /package/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
- /package/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
- /package/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
- /package/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
- /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
- /package/skills/{planning → ck-planning}/references/validate-workflow.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/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +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/{scout → ck-scout}/references/external-scouting.md +0 -0
- /package/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
- /package/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
- /package/skills/{security → ck-security}/references/stride-owasp-checklist.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/README.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/package.json +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/{ship → ck-ship}/references/auto-detect.md +0 -0
- /package/skills/{ship → ck-ship}/references/pr-template.md +0 -0
- /package/skills/{test → ck-test}/references/report-format.md +0 -0
- /package/skills/{test → ck-test}/references/test-execution-workflow.md +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/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
- /package/templates/repo/.github/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
- /package/templates/repo/.github/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
- /package/templates/repo/.github/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
- /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/templates/repo/.github/agents/{tester.agent.md → ck-tester.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/agent-browser-vs-chrome-devtools.md +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/checklist-workflow.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/task-management-reviews.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}/README.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_helper.py +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-degradation.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/runtime-awareness.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}/README.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/db-design.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/frontend-verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/reporting-standards.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/task-management-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/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vultr.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/context7-patterns.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}/scripts/fetch-docs.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +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/mode-selection.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/review-cycle.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/ai-multimodal-overview.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/anti-slop-rules.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.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/magicui-components.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.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/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.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/commit-standards.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}/README.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.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/.env.example +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/mcp-client.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/archive-workflow.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/output-standards.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-workflow.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/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +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/{scout → ck-scout}/references/external-scouting.md +0 -0
- /package/templates/repo/.github/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
- /package/templates/repo/.github/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
- /package/templates/repo/.github/skills/{security → ck-security}/references/stride-owasp-checklist.md +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}/README.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package-lock.json +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package.json +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/{ship → ck-ship}/references/auto-detect.md +0 -0
- /package/templates/repo/.github/skills/{ship → ck-ship}/references/pr-template.md +0 -0
- /package/templates/repo/.github/skills/{test → ck-test}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{test → ck-test}/references/test-execution-workflow.md +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
package/skills/planning/SKILL.md
DELETED
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: plan
|
|
3
|
-
description: "Plan implementations, design architectures, create technical roadmaps with detailed phases. Use for feature planning, system design, solution architecture, implementation strategy, phase documentation."
|
|
4
|
-
argument-hint: "[task] OR [archive|red-team|validate]"
|
|
5
|
-
license: MIT
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Planning
|
|
9
|
-
|
|
10
|
-
Create detailed technical implementation plans through research, codebase analysis, solution design, and comprehensive documentation.
|
|
11
|
-
|
|
12
|
-
**IMPORTANT:** Before you start, scan unfinished plans in the current project at `./plans/` directory, read the `plan.md`, if there are relevant plans with your upcoming plan, update them as well. If you're unsure or need more clarifications, use ask the user.
|
|
13
|
-
|
|
14
|
-
### Cross-Plan Dependency Detection
|
|
15
|
-
|
|
16
|
-
During the pre-creation scan, detect and mark blocking relationships between plans:
|
|
17
|
-
|
|
18
|
-
1. **Scan** — Read `plan.md` frontmatter of each unfinished plan (status != `completed`/`cancelled`)
|
|
19
|
-
2. **Compare scope** — Check overlapping files, shared dependencies, same feature area
|
|
20
|
-
3. **Classify relationship:**
|
|
21
|
-
- New plan needs output of existing plan → new plan `blockedBy: [existing-plan-dir]`
|
|
22
|
-
- New plan changes something existing plan depends on → existing plan `blockedBy: [new-plan-dir]`, new plan `blocks: [existing-plan-dir]`
|
|
23
|
-
- Mutual dependency → both plans reference each other in `blockedBy`/`blocks`
|
|
24
|
-
4. **Bidirectional update** — When relationship detected, update BOTH `plan.md` files' frontmatter
|
|
25
|
-
5. **Ambiguous?** → Use asking the user with header "Plan Dependency", present detected overlap, ask user to confirm relationship type (blocks/blockedBy/none)
|
|
26
|
-
|
|
27
|
-
**Frontmatter fields** (relative plan dir paths):
|
|
28
|
-
```yaml
|
|
29
|
-
blockedBy: [260301-1200-auth-system] # This plan waits on these plans
|
|
30
|
-
blocks: [260228-0900-user-dashboard] # This plan blocks these plans
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
**Status interaction:** A plan with `blockedBy` entries where ANY blocker is not `completed` → plan status should note `blocked` in its overview. When all blockers complete, the blocked plan becomes unblocked automatically on next scan.
|
|
34
|
-
|
|
35
|
-
## Default (No Arguments)
|
|
36
|
-
|
|
37
|
-
If invoked with a task description, proceed with planning workflow. If invoked WITHOUT arguments or with unclear intent, use asking the user to present available operations:
|
|
38
|
-
|
|
39
|
-
| Operation | Description |
|
|
40
|
-
|-----------|-------------|
|
|
41
|
-
| `(default)` | Create implementation plan for a task |
|
|
42
|
-
| `archive` | Write journal entry & archive plans |
|
|
43
|
-
| `red-team` | Adversarial plan review |
|
|
44
|
-
| `validate` | Critical questions interview |
|
|
45
|
-
|
|
46
|
-
Present as options by asking the user with header "Planning Operation", question "What would you like to do?".
|
|
47
|
-
|
|
48
|
-
## Workflow Modes
|
|
49
|
-
|
|
50
|
-
Default: `--auto` (analyze task complexity and auto-pick mode).
|
|
51
|
-
|
|
52
|
-
| Flag | Mode | Research | Red Team | Validation | Cook Flag |
|
|
53
|
-
|------|------|----------|----------|------------|-----------|
|
|
54
|
-
| `--auto` | Auto-detect | Follows mode | Follows mode | Follows mode | Follows mode |
|
|
55
|
-
| `--fast` | Fast | Skip | Skip | Skip | `--auto` |
|
|
56
|
-
| `--hard` | Hard | 2 researchers | Yes | Optional | (none) |
|
|
57
|
-
| `--parallel` | Parallel | 2 researchers | Yes | Optional | `--parallel` |
|
|
58
|
-
| `--two` | Two approaches | 2+ researchers | After selection | After selection | (none) |
|
|
59
|
-
|
|
60
|
-
Add `--no-tasks` to skip task hydration in any mode.
|
|
61
|
-
|
|
62
|
-
Load: `references/workflow-modes.md` for auto-detection logic, per-mode workflows, context reminders.
|
|
63
|
-
|
|
64
|
-
## When to Use
|
|
65
|
-
|
|
66
|
-
- Planning new feature implementations
|
|
67
|
-
- Architecting system designs
|
|
68
|
-
- Evaluating technical approaches
|
|
69
|
-
- Creating implementation roadmaps
|
|
70
|
-
- Breaking down complex requirements
|
|
71
|
-
|
|
72
|
-
## Core Responsibilities & Rules
|
|
73
|
-
|
|
74
|
-
Always honoring **YAGNI**, **KISS**, and **DRY** principles.
|
|
75
|
-
**Be honest, be brutal, straight to the point, and be concise.**
|
|
76
|
-
|
|
77
|
-
### 0. Scope Challenge
|
|
78
|
-
Load: `references/scope-challenge.md`
|
|
79
|
-
**Skip if:** `--fast` mode or trivial task (single file fix, <20 word description)
|
|
80
|
-
|
|
81
|
-
### 1. Research & Analysis
|
|
82
|
-
Load: `references/research-phase.md`
|
|
83
|
-
**Skip if:** Fast mode or provided with researcher reports
|
|
84
|
-
|
|
85
|
-
### 2. Codebase Understanding
|
|
86
|
-
Load: `references/codebase-understanding.md`
|
|
87
|
-
**Skip if:** Provided with scout reports
|
|
88
|
-
|
|
89
|
-
### 3. Solution Design
|
|
90
|
-
Load: `references/solution-design.md`
|
|
91
|
-
|
|
92
|
-
### 4. Plan Creation & Organization
|
|
93
|
-
Load: `references/plan-organization.md`
|
|
94
|
-
|
|
95
|
-
### 5. Task Breakdown & Output Standards
|
|
96
|
-
Load: `references/output-standards.md`
|
|
97
|
-
|
|
98
|
-
## Process Flow (Authoritative)
|
|
99
|
-
|
|
100
|
-
```mermaid
|
|
101
|
-
flowchart TD
|
|
102
|
-
A[Pre-Creation Check] --> B[Cross-Plan Scan]
|
|
103
|
-
B --> C[Scope Challenge]
|
|
104
|
-
C --> D[Mode Detection]
|
|
105
|
-
D -->|fast| E[Skip Research]
|
|
106
|
-
D -->|hard/parallel/two| F[Spawn Researchers]
|
|
107
|
-
E --> G[Codebase Analysis]
|
|
108
|
-
F --> G
|
|
109
|
-
G --> H[Write Plan via Planner]
|
|
110
|
-
H --> I{Red Team?}
|
|
111
|
-
I -->|Yes| J[Red Team Review]
|
|
112
|
-
I -->|No| K{Validate?}
|
|
113
|
-
J --> K
|
|
114
|
-
K -->|Yes| L[Validation Interview]
|
|
115
|
-
K -->|No| M[Hydrate Tasks]
|
|
116
|
-
L --> M
|
|
117
|
-
M --> N[Output Cook Command]
|
|
118
|
-
N --> O[Journal]
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
**This diagram is the authoritative workflow.** Prose sections below provide detail for each node.
|
|
122
|
-
|
|
123
|
-
## Workflow Process
|
|
124
|
-
|
|
125
|
-
1. **Pre-Creation Check** → Check Plan Context for active/suggested/none
|
|
126
|
-
1b. **Cross-Plan Scan** → Scan unfinished plans, detect `blockedBy`/`blocks` relationships, update both plans
|
|
127
|
-
1c. **Scope Challenge** → Run Step 0 scope questions, select mode (see `references/scope-challenge.md`)
|
|
128
|
-
**Skip if:** `--fast` mode or trivial task
|
|
129
|
-
2. **Mode Detection** → Auto-detect or use explicit flag (see `workflow-modes.md`)
|
|
130
|
-
3. **Research Phase** → Spawn researchers (skip in fast mode)
|
|
131
|
-
4. **Codebase Analysis** → Read docs, scout if needed
|
|
132
|
-
5. **Plan Documentation** → Write comprehensive plan via planner subagent
|
|
133
|
-
6. **Red Team Review** → Run `/ck-plan red-team {plan-path}` (hard/parallel/two modes)
|
|
134
|
-
7. **Post-Plan Validation** → Run `/ck-plan validate {plan-path}` (hard/parallel/two modes)
|
|
135
|
-
8. **Hydrate Tasks** → Create Tasks from phases (default on, `--no-tasks` to skip)
|
|
136
|
-
9. **Context Reminder** → Output cook command with absolute path (MANDATORY)
|
|
137
|
-
10. **Journal** → Run `/ck-journal` to write a concise technical journal entry upon completion
|
|
138
|
-
|
|
139
|
-
## Output Requirements
|
|
140
|
-
**IMPORTANT:** Invoke "/ck-project-organization" skill to organize the outputs.
|
|
141
|
-
|
|
142
|
-
- DO NOT implement code - only create plans
|
|
143
|
-
- Respond with plan file path and summary
|
|
144
|
-
- Ensure self-contained plans with necessary context
|
|
145
|
-
- Include code snippets/pseudocode when clarifying
|
|
146
|
-
- Fully respect the `./docs/development-rules.md` file
|
|
147
|
-
|
|
148
|
-
## Task Management
|
|
149
|
-
|
|
150
|
-
Plan files = persistent. Tasks = session-scoped. Hydration bridges the gap.
|
|
151
|
-
|
|
152
|
-
**Default:** Auto-hydrate tasks after plan files are written. Skip with `--no-tasks`.
|
|
153
|
-
**3-Task Rule:** <3 phases → skip task creation.
|
|
154
|
-
**Fallback:** Task tools (`TaskCreate`/`TaskUpdate`/`TaskGet`/`TaskList`) are CLI-only — unavailable in VSCode extension. If they error, use `TodoWrite` for tracking. Plan files remain the source of truth; hydration is an optimization, not a requirement.
|
|
155
|
-
|
|
156
|
-
Load: `references/task-management.md` for hydration pattern, TaskCreate patterns, cook handoff protocol.
|
|
157
|
-
|
|
158
|
-
### Hydration Workflow
|
|
159
|
-
1. Write plan.md + phase files (persistent layer)
|
|
160
|
-
2. TaskCreate per phase with `addBlockedBy` chain (skip if Task tools unavailable)
|
|
161
|
-
3. TaskCreate for critical/high-risk steps within phases (skip if Task tools unavailable)
|
|
162
|
-
4. Metadata: phase, priority, effort, planDir, phaseFile
|
|
163
|
-
5. Cook picks up via TaskList (same session) or re-hydrates (new session)
|
|
164
|
-
|
|
165
|
-
## Active Plan State
|
|
166
|
-
|
|
167
|
-
Check `## Plan Context` injected by hooks:
|
|
168
|
-
- **"Plan: {path}"** → Active plan. Ask "Continue? [Y/n]"
|
|
169
|
-
- **"Suggested: {path}"** → Branch hint only. Ask if activate or create new.
|
|
170
|
-
- **"Plan: none"** → Create new using `Plan dir:` from `## Naming`
|
|
171
|
-
|
|
172
|
-
Reports: Active plans → plan-specific path. Suggested → default path.
|
|
173
|
-
|
|
174
|
-
### Important
|
|
175
|
-
**DO NOT** create plans or reports in USER directory.
|
|
176
|
-
**MUST** create plans or reports in **THE CURRENT WORKING PROJECT DIRECTORY**.
|
|
177
|
-
|
|
178
|
-
## Subcommands
|
|
179
|
-
|
|
180
|
-
| Subcommand | Reference | Purpose |
|
|
181
|
-
|------------|-----------|---------|
|
|
182
|
-
| `/ck-plan archive` | `references/archive-workflow.md` | Archive plans + write journal entries |
|
|
183
|
-
| `/ck-plan red-team` | `references/red-team-workflow.md` | Adversarial plan review with hostile reviewers |
|
|
184
|
-
| `/ck-plan validate` | `references/validate-workflow.md` | Validate plan with critical questions interview |
|
|
185
|
-
|
|
186
|
-
## Quality Standards
|
|
187
|
-
|
|
188
|
-
- Thorough and specific, consider long-term maintainability
|
|
189
|
-
- Research thoroughly when uncertain
|
|
190
|
-
- Address security and performance concerns
|
|
191
|
-
- Detailed enough for junior developers
|
|
192
|
-
- Validate against existing codebase patterns
|
|
193
|
-
|
|
194
|
-
**Remember:** Plan quality determines implementation success. Be comprehensive and consider all solution aspects.
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Research & Analysis Phase
|
|
2
|
-
|
|
3
|
-
**When to skip:** If provided with researcher reports, skip this phase.
|
|
4
|
-
|
|
5
|
-
## Core Activities
|
|
6
|
-
|
|
7
|
-
### Parallel Researcher Agents
|
|
8
|
-
- Spawn multiple `researcher` agents in parallel to investigate different approaches
|
|
9
|
-
- Wait for all researcher agents to report back before proceeding
|
|
10
|
-
- Each researcher investigates a specific aspect or approach
|
|
11
|
-
|
|
12
|
-
### Sequential Thinking
|
|
13
|
-
- Use `sequential-thinking` skill for dynamic and reflective problem-solving
|
|
14
|
-
- Structured thinking process for complex analysis
|
|
15
|
-
- Enables multi-step reasoning with revision capability
|
|
16
|
-
|
|
17
|
-
### Documentation Research
|
|
18
|
-
- Use `docs-seeker` skill to read and understand documentation
|
|
19
|
-
- Research plugins, packages, and frameworks
|
|
20
|
-
- Find latest technical documentation using llms.txt standard
|
|
21
|
-
|
|
22
|
-
### GitHub Analysis
|
|
23
|
-
- Use `gh` command to read and analyze:
|
|
24
|
-
- GitHub Actions logs
|
|
25
|
-
- Pull requests
|
|
26
|
-
- Issues and discussions
|
|
27
|
-
- Extract relevant technical context from GitHub resources
|
|
28
|
-
|
|
29
|
-
### Remote Repository Analysis
|
|
30
|
-
When given GitHub repository URL, generate fresh codebase summary:
|
|
31
|
-
```bash
|
|
32
|
-
# usage:
|
|
33
|
-
repomix --remote <github-repo-url>
|
|
34
|
-
# example:
|
|
35
|
-
repomix --remote https://github.com/mrgoonie/human-mcp
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
### Debugger Delegation
|
|
39
|
-
- Delegate to `debugger` agent for root cause analysis
|
|
40
|
-
- Use when investigating complex issues or bugs
|
|
41
|
-
- Debugger agent specializes in diagnostic tasks
|
|
42
|
-
|
|
43
|
-
## Best Practices
|
|
44
|
-
|
|
45
|
-
- Research breadth before depth
|
|
46
|
-
- Document findings for synthesis phase
|
|
47
|
-
- Identify multiple approaches for comparison
|
|
48
|
-
- Consider edge cases during research
|
|
49
|
-
- Note security implications early
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
# Task Management Integration
|
|
2
|
-
|
|
3
|
-
## Session-Scoped Reality
|
|
4
|
-
|
|
5
|
-
Tasks are **ephemeral** — they die when the session ends. `tasks/` holds lock files only, NOT task data. Plan files (plan.md, phase-XX.md with checkboxes) are the **persistent** layer.
|
|
6
|
-
|
|
7
|
-
**Tool Availability:** `TaskCreate`/`TaskUpdate`/`TaskGet`/`TaskList` are **CLI-only** — disabled in VSCode extension (`isTTY` check). If these tools error, use `TodoWrite` for progress tracking. Plan files remain the source of truth; hydration is an optimization, not a requirement.
|
|
8
|
-
|
|
9
|
-
The **hydration pattern** bridges sessions:
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
┌──────────────────┐ Hydrate ┌───────────────────┐
|
|
13
|
-
│ Plan Files │ ─────────► │ Tasks │
|
|
14
|
-
│ (persistent) │ │ (session-scoped) │
|
|
15
|
-
│ [ ] Phase 1 │ │ ◼ pending │
|
|
16
|
-
│ [ ] Phase 2 │ │ ◼ pending │
|
|
17
|
-
└──────────────────┘ └───────────────────┘
|
|
18
|
-
│ Work
|
|
19
|
-
▼
|
|
20
|
-
┌──────────────────┐ Sync-back ┌───────────────────┐
|
|
21
|
-
│ Plan Files │ ◄───────── │ Task Updates │
|
|
22
|
-
│ (updated) │ │ (completed) │
|
|
23
|
-
│ [x] Phase 1 │ │ ✓ completed │
|
|
24
|
-
│ [ ] Phase 2 │ │ ◼ in_progress │
|
|
25
|
-
└──────────────────┘ └───────────────────┘
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
- **Hydrate:** Read plan files → TaskCreate per unchecked `[ ]` item
|
|
29
|
-
- **Work:** TaskUpdate tracks in_progress/completed in real-time
|
|
30
|
-
- **Sync-back:** Update `[ ]` → `[x]` in phase files, update plan.md frontmatter status
|
|
31
|
-
|
|
32
|
-
## When to Create Tasks
|
|
33
|
-
|
|
34
|
-
**Default:** On — auto-hydrate after plan files are written
|
|
35
|
-
**Skip with:** `--no-tasks` flag in planning request
|
|
36
|
-
**3-Task Rule:** <3 phases → skip tasks (overhead exceeds benefit)
|
|
37
|
-
|
|
38
|
-
| Scenario | Tasks? | Why |
|
|
39
|
-
|----------|--------|-----|
|
|
40
|
-
| Multi-phase feature (3+ phases) | Yes | Track progress, enable parallel |
|
|
41
|
-
| Complex dependencies between phases | Yes | Automatic unblocking |
|
|
42
|
-
| Plan will be executed by cook | Yes | Seamless handoff |
|
|
43
|
-
| Single-phase quick fix | No | Just do it directly |
|
|
44
|
-
| Trivial 1-2 step plan | No | Overhead not worth it |
|
|
45
|
-
|
|
46
|
-
## Task Creation Patterns
|
|
47
|
-
|
|
48
|
-
### Phase-Level TaskCreate
|
|
49
|
-
|
|
50
|
-
```
|
|
51
|
-
TaskCreate(
|
|
52
|
-
subject: "Setup environment and dependencies",
|
|
53
|
-
activeForm: "Setting up environment",
|
|
54
|
-
description: "Install packages, configure env, setup database. See phase-01-setup.md",
|
|
55
|
-
metadata: { phase: 1, priority: "P1", effort: "2h",
|
|
56
|
-
planDir: "plans/260205-auth/", phaseFile: "phase-01-setup.md" }
|
|
57
|
-
)
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### Critical Step TaskCreate
|
|
61
|
-
|
|
62
|
-
For high-risk/complex steps within phases:
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
TaskCreate(
|
|
66
|
-
subject: "Implement OAuth2 token refresh",
|
|
67
|
-
activeForm: "Implementing token refresh",
|
|
68
|
-
description: "Handle token expiry, refresh flow, error recovery",
|
|
69
|
-
metadata: { phase: 3, step: "3.4", priority: "P1", effort: "1.5h",
|
|
70
|
-
planDir: "plans/260205-auth/", phaseFile: "phase-03-api.md",
|
|
71
|
-
critical: true, riskLevel: "high" },
|
|
72
|
-
addBlockedBy: ["{phase-2-task-id}"]
|
|
73
|
-
)
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Metadata & Naming Conventions
|
|
77
|
-
|
|
78
|
-
**Required metadata:** `phase`, `priority` (P1/P2/P3), `effort`, `planDir`, `phaseFile`
|
|
79
|
-
**Optional metadata:** `step`, `critical`, `riskLevel`, `dependencies`
|
|
80
|
-
|
|
81
|
-
**subject** (imperative): Action verb + deliverable, <60 chars
|
|
82
|
-
- "Setup database migrations", "Implement OAuth2 flow", "Create user profile endpoints"
|
|
83
|
-
|
|
84
|
-
**activeForm** (present continuous): Matches subject in -ing form
|
|
85
|
-
- "Setting up database", "Implementing OAuth2", "Creating user profile endpoints"
|
|
86
|
-
|
|
87
|
-
**description**: 1-2 sentences, concrete deliverables, reference phase file
|
|
88
|
-
|
|
89
|
-
## Dependency Chains
|
|
90
|
-
|
|
91
|
-
```
|
|
92
|
-
Phase 1 (no blockers) ← start here
|
|
93
|
-
Phase 2 (addBlockedBy: [P1-id]) ← auto-unblocked when P1 completes
|
|
94
|
-
Phase 3 (addBlockedBy: [P2-id])
|
|
95
|
-
Step 3.4 (addBlockedBy: [P2-id]) ← critical steps share phase dependency
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
Use `addBlockedBy` for forward references ("I need X done first").
|
|
99
|
-
Use `addBlocks` when creating parent first ("X blocks these children").
|
|
100
|
-
|
|
101
|
-
## Cook Handoff Protocol
|
|
102
|
-
|
|
103
|
-
### Same-Session (planning → cook immediately)
|
|
104
|
-
|
|
105
|
-
1. Planning hydrates tasks → tasks exist in session
|
|
106
|
-
2. Cook Step 3: `TaskList` → finds existing tasks → picks them up
|
|
107
|
-
3. Cook skips re-creation, begins implementation directly
|
|
108
|
-
|
|
109
|
-
### Cross-Session (new session, resume plan)
|
|
110
|
-
|
|
111
|
-
1. User runs `/ck-cook path/to/plan.md` in new session
|
|
112
|
-
2. Cook Step 3: `TaskList` → empty (tasks died with old session)
|
|
113
|
-
3. Cook reads plan files → re-hydrates from unchecked `[ ]` items
|
|
114
|
-
4. Already-checked `[x]` items = done, skip those
|
|
115
|
-
|
|
116
|
-
### Sync-Back (cook Step 6)
|
|
117
|
-
|
|
118
|
-
1. `TaskUpdate` marks all session tasks complete.
|
|
119
|
-
2. `project-manager` subagent runs full-plan sync-back:
|
|
120
|
-
- Sweep all `phase-XX-*.md` files.
|
|
121
|
-
- Reconcile completed tasks by metadata (`phase`, `phaseFile`).
|
|
122
|
-
- Backfill stale completed checkboxes `[ ]` → `[x]` across all phases (not only current phase).
|
|
123
|
-
- Update `plan.md` status/progress from actual checkbox state.
|
|
124
|
-
3. If any completed task cannot be mapped to a phase file, report unresolved mappings before claiming completion.
|
|
125
|
-
4. Git commit captures the state transition for next session.
|
|
126
|
-
|
|
127
|
-
## Quality Checks
|
|
128
|
-
|
|
129
|
-
After task hydration, verify:
|
|
130
|
-
- Dependency chain has no cycles
|
|
131
|
-
- All phases have corresponding tasks
|
|
132
|
-
- Required metadata fields present (phase, priority, effort, planDir, phaseFile)
|
|
133
|
-
- Task count matches unchecked `[ ]` items in plan files
|
|
134
|
-
- Output: `✓ Hydrated [N] phase tasks + [M] critical step tasks with dependency chain`
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
# Workflow Modes
|
|
2
|
-
|
|
3
|
-
## Auto-Detection (Default: `--auto`)
|
|
4
|
-
|
|
5
|
-
When no flag specified, analyze task and pick mode:
|
|
6
|
-
|
|
7
|
-
| Signal | Mode | Rationale |
|
|
8
|
-
|--------|------|-----------|
|
|
9
|
-
| Simple task, clear scope, no unknowns | fast | Skip research overhead |
|
|
10
|
-
| Complex task, unfamiliar domain, new tech | hard | Research needed |
|
|
11
|
-
| 3+ independent features/layers/modules | parallel | Enable concurrent agents |
|
|
12
|
-
| Ambiguous approach, multiple valid paths | two | Compare alternatives |
|
|
13
|
-
|
|
14
|
-
Use asking the user if detection is uncertain.
|
|
15
|
-
|
|
16
|
-
## Scope Challenge Integration
|
|
17
|
-
|
|
18
|
-
Step 0 (Scope Challenge, see `scope-challenge.md`) runs before mode detection and can influence it:
|
|
19
|
-
- If user selects **EXPANSION** → auto-suggest `--hard` or `--two`
|
|
20
|
-
- If user selects **REDUCTION** → auto-suggest `--fast`
|
|
21
|
-
- If user selects **HOLD** → proceed with auto-detected mode
|
|
22
|
-
|
|
23
|
-
Mode can still be overridden by explicit flags (`--fast`, `--hard`, etc.).
|
|
24
|
-
Scope challenge is skipped when `--fast` is explicitly set or task is trivial.
|
|
25
|
-
|
|
26
|
-
## Fast Mode (`--fast`)
|
|
27
|
-
|
|
28
|
-
No research. Analyze → Plan → Hydrate Tasks.
|
|
29
|
-
|
|
30
|
-
1. Read codebase docs (`codebase-summary.md`, `code-standards.md`, `system-architecture.md`)
|
|
31
|
-
2. Use `planner` subagent to create plan
|
|
32
|
-
3. Hydrate tasks (unless `--no-tasks`)
|
|
33
|
-
4. **Context reminder:** `/ck-cook --auto {absolute-plan-path}/plan.md`
|
|
34
|
-
|
|
35
|
-
**Why `--auto` cook flag?** Fast planning pairs with fast execution — skip review gates.
|
|
36
|
-
|
|
37
|
-
## Hard Mode (`--hard`)
|
|
38
|
-
|
|
39
|
-
Research → Scout → Plan → Red Team → Validate → Hydrate Tasks.
|
|
40
|
-
|
|
41
|
-
1. Spawn max 2 `researcher` agents in parallel (different aspects, max 5 calls each)
|
|
42
|
-
2. Read codebase docs; if stale/missing: run `/ck-scout` to search codebase
|
|
43
|
-
3. Gather research + scout report filepaths → pass to `planner` subagent
|
|
44
|
-
4. Post-plan red team review (see Red Team Review section below)
|
|
45
|
-
5. Post-plan validation (see Validation section below)
|
|
46
|
-
6. Hydrate tasks (unless `--no-tasks`)
|
|
47
|
-
7. **Context reminder:** `/ck-cook {absolute-plan-path}/plan.md`
|
|
48
|
-
|
|
49
|
-
**Why no cook flag?** Thorough planning needs interactive review gates.
|
|
50
|
-
|
|
51
|
-
## Parallel Mode (`--parallel`)
|
|
52
|
-
|
|
53
|
-
Research → Scout → Plan with file ownership → Red Team → Validate → Hydrate Tasks with dependency graph.
|
|
54
|
-
|
|
55
|
-
1. Same as Hard mode steps 1-3
|
|
56
|
-
2. Planner creates phases with:
|
|
57
|
-
- **Exclusive file ownership** per phase (no overlap)
|
|
58
|
-
- **Dependency matrix** (which phases run concurrently vs sequentially)
|
|
59
|
-
- **Conflict prevention** strategy
|
|
60
|
-
3. plan.md includes: dependency graph, execution strategy, file ownership matrix
|
|
61
|
-
4. Hydrate tasks: `addBlockedBy` for sequential deps, no blockers for parallel groups
|
|
62
|
-
5. Post-plan red team review
|
|
63
|
-
6. Post-plan validation
|
|
64
|
-
7. **Context reminder:** `/ck-cook --parallel {absolute-plan-path}/plan.md`
|
|
65
|
-
|
|
66
|
-
### Parallel Phase Requirements
|
|
67
|
-
- Each phase self-contained, no runtime deps on other phases
|
|
68
|
-
- Clear file boundaries — each file modified in ONE phase only
|
|
69
|
-
- Group by: architectural layer, feature domain, or technology stack
|
|
70
|
-
- Example: Phases 1-3 parallel (DB/API/UI), Phase 4 sequential (integration tests)
|
|
71
|
-
|
|
72
|
-
## Two-Approach Mode (`--two`)
|
|
73
|
-
|
|
74
|
-
Research → Scout → Plan 2 approaches → Compare → Hydrate Tasks.
|
|
75
|
-
|
|
76
|
-
1. Same as Hard mode steps 1-3
|
|
77
|
-
2. Planner creates 2 implementation approaches with:
|
|
78
|
-
- Clear trade-offs (pros/cons each)
|
|
79
|
-
- Recommended approach with rationale
|
|
80
|
-
3. User selects approach
|
|
81
|
-
4. Post-plan red team review on selected approach
|
|
82
|
-
5. Post-plan validation
|
|
83
|
-
6. Hydrate tasks for selected approach (unless `--no-tasks`)
|
|
84
|
-
7. **Context reminder:** `/ck-cook {absolute-plan-path}/plan.md`
|
|
85
|
-
|
|
86
|
-
## Task Hydration Per Mode
|
|
87
|
-
|
|
88
|
-
| Mode | Task Granularity | Dependency Pattern |
|
|
89
|
-
|------|------------------|--------------------|
|
|
90
|
-
| fast | Phase-level only | Sequential chain |
|
|
91
|
-
| hard | Phase + critical steps | Sequential + step deps |
|
|
92
|
-
| parallel | Phase + steps + ownership | Parallel groups + sequential deps |
|
|
93
|
-
| two | After user selects approach | Sequential chain |
|
|
94
|
-
|
|
95
|
-
All modes: See `task-management.md` for TaskCreate patterns and metadata.
|
|
96
|
-
|
|
97
|
-
## Post-Plan Red Team Review
|
|
98
|
-
|
|
99
|
-
Adversarial review that spawns hostile reviewers to find flaws before validation.
|
|
100
|
-
|
|
101
|
-
**Available in:** hard, parallel, two modes. **Skipped in:** fast mode.
|
|
102
|
-
|
|
103
|
-
**Invocation:** Run `/ck-plan red-team {plan-directory-path}`.
|
|
104
|
-
```
|
|
105
|
-
/ck-plan red-team {plan-directory-path}
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
**Sequence:** Red team runs BEFORE validation because:
|
|
109
|
-
1. Red team may change the plan (added risks, removed sections, new constraints)
|
|
110
|
-
2. Validation should confirm the FINAL plan, not a pre-review draft
|
|
111
|
-
3. Validating first then red-teaming would invalidate validation answers
|
|
112
|
-
|
|
113
|
-
## Post-Plan Validation
|
|
114
|
-
|
|
115
|
-
Check `## Plan Context` → `Validation: mode=X, questions=MIN-MAX`:
|
|
116
|
-
|
|
117
|
-
| Mode | Behavior |
|
|
118
|
-
|------|----------|
|
|
119
|
-
| `prompt` | Ask: "Validate this plan with interview?" → Yes (Recommended) / No |
|
|
120
|
-
| `auto` | Run `/ck-plan validate {plan-directory-path}` |
|
|
121
|
-
| `off` | Skip validation |
|
|
122
|
-
|
|
123
|
-
**Invocation (when prompt mode, user says yes):** Run:
|
|
124
|
-
```
|
|
125
|
-
/ck-plan validate {plan-directory-path}
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
**Available in:** hard, parallel, two modes. **Skipped in:** fast mode.
|
|
129
|
-
|
|
130
|
-
## Context Reminder (MANDATORY)
|
|
131
|
-
|
|
132
|
-
After plan creation, MUST output with **actual absolute path**:
|
|
133
|
-
|
|
134
|
-
| Mode | Cook Command |
|
|
135
|
-
|------|-----------------------------|
|
|
136
|
-
| fast | `/ck-cook --auto {path}/plan.md` |
|
|
137
|
-
| hard | `/ck-cook {path}/plan.md` |
|
|
138
|
-
| parallel | `/ck-cook --parallel {path}/plan.md` |
|
|
139
|
-
| two | `/ck-cook {path}/plan.md` |
|
|
140
|
-
|
|
141
|
-
> **Best Practice:** Run `/clear` before implementing to reduce planning-context carryover.
|
|
142
|
-
> Then run the cook command above.
|
|
143
|
-
|
|
144
|
-
**Why absolute path?** After `/clear`, the new session loses previous context.
|
|
145
|
-
This reminder is **NON-NEGOTIABLE** — always output after presenting the plan.
|
|
146
|
-
|
|
147
|
-
## Pre-Creation Check
|
|
148
|
-
|
|
149
|
-
Check `## Plan Context` in injected context:
|
|
150
|
-
- **"Plan: {path}"** → Ask "Continue with existing plan? [Y/n]"
|
|
151
|
-
- **"Suggested: {path}"** → Branch hint only, ask if activate or create new
|
|
152
|
-
- **"Plan: none"** → Create new using `Plan dir:` from `## Naming`
|
|
153
|
-
|
|
154
|
-
Pass plan directory path to every subagent during the process.
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: problem-solving
|
|
3
|
-
description: Apply systematic problem-solving techniques when stuck. Use for complexity spirals, innovation blocks, recurring patterns, assumption constraints, simplification cascades, scale uncertainty.
|
|
4
|
-
argument-hint: "[problem description]"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Problem-Solving Techniques
|
|
8
|
-
|
|
9
|
-
Systematic approaches for different types of stuck-ness. Each technique targets specific problem patterns.
|
|
10
|
-
|
|
11
|
-
## When to Use
|
|
12
|
-
|
|
13
|
-
Apply when encountering:
|
|
14
|
-
- **Complexity spiraling** - Multiple implementations, growing special cases, excessive branching
|
|
15
|
-
- **Innovation blocks** - Conventional solutions inadequate, need breakthrough thinking
|
|
16
|
-
- **Recurring patterns** - Same issue across domains, reinventing solutions
|
|
17
|
-
- **Assumption constraints** - Forced into "only way", can't question premise
|
|
18
|
-
- **Scale uncertainty** - Production readiness unclear, edge cases unknown
|
|
19
|
-
- **General stuck-ness** - Unsure which technique applies
|
|
20
|
-
|
|
21
|
-
## Quick Dispatch
|
|
22
|
-
|
|
23
|
-
**Match symptom to technique:**
|
|
24
|
-
|
|
25
|
-
| Stuck Symptom | Technique | Reference |
|
|
26
|
-
|---------------|-----------|-----------|
|
|
27
|
-
| Same thing implemented 5+ ways, growing special cases | **Simplification Cascades** | `references/simplification-cascades.md` |
|
|
28
|
-
| Conventional solutions inadequate, need breakthrough | **Collision-Zone Thinking** | `references/collision-zone-thinking.md` |
|
|
29
|
-
| Same issue in different places, reinventing wheels | **Meta-Pattern Recognition** | `references/meta-pattern-recognition.md` |
|
|
30
|
-
| Solution feels forced, "must be done this way" | **Inversion Exercise** | `references/inversion-exercise.md` |
|
|
31
|
-
| Will this work at production? Edge cases unclear? | **Scale Game** | `references/scale-game.md` |
|
|
32
|
-
| Unsure which technique to use | **When Stuck** | `references/when-stuck.md` |
|
|
33
|
-
|
|
34
|
-
## Core Techniques
|
|
35
|
-
|
|
36
|
-
### 1. Simplification Cascades
|
|
37
|
-
Find one insight eliminating multiple components. "If this is true, we don't need X, Y, Z."
|
|
38
|
-
|
|
39
|
-
**Key insight:** Everything is a special case of one general pattern.
|
|
40
|
-
|
|
41
|
-
**Red flag:** "Just need to add one more case..." (repeating forever)
|
|
42
|
-
|
|
43
|
-
### 2. Collision-Zone Thinking
|
|
44
|
-
Force unrelated concepts together to discover emergent properties. "What if we treated X like Y?"
|
|
45
|
-
|
|
46
|
-
**Key insight:** Revolutionary ideas from deliberate metaphor-mixing.
|
|
47
|
-
|
|
48
|
-
**Red flag:** "I've tried everything in this domain"
|
|
49
|
-
|
|
50
|
-
### 3. Meta-Pattern Recognition
|
|
51
|
-
Spot patterns appearing in 3+ domains to find universal principles.
|
|
52
|
-
|
|
53
|
-
**Key insight:** Patterns in how patterns emerge reveal reusable abstractions.
|
|
54
|
-
|
|
55
|
-
**Red flag:** "This problem is unique" (probably not)
|
|
56
|
-
|
|
57
|
-
### 4. Inversion Exercise
|
|
58
|
-
Flip core assumptions to reveal hidden constraints. "What if the opposite were true?"
|
|
59
|
-
|
|
60
|
-
**Key insight:** Valid inversions reveal context-dependence of "rules."
|
|
61
|
-
|
|
62
|
-
**Red flag:** "There's only one way to do this"
|
|
63
|
-
|
|
64
|
-
### 5. Scale Game
|
|
65
|
-
Test at extremes (1000x bigger/smaller, instant/year-long) to expose fundamental truths.
|
|
66
|
-
|
|
67
|
-
**Key insight:** What works at one scale fails at another.
|
|
68
|
-
|
|
69
|
-
**Red flag:** "Should scale fine" (without testing)
|
|
70
|
-
|
|
71
|
-
## Application Process
|
|
72
|
-
|
|
73
|
-
1. **Identify stuck-type** - Match symptom to technique above
|
|
74
|
-
2. **Load detailed reference** - Read specific technique from `references/`
|
|
75
|
-
3. **Apply systematically** - Follow technique's process
|
|
76
|
-
4. **Document insights** - Record what worked/failed
|
|
77
|
-
5. **Combine if needed** - Some problems need multiple techniques
|
|
78
|
-
|
|
79
|
-
## Combining Techniques
|
|
80
|
-
|
|
81
|
-
Powerful combinations:
|
|
82
|
-
- **Simplification + Meta-pattern** - Find pattern, then simplify all instances
|
|
83
|
-
- **Collision + Inversion** - Force metaphor, then invert its assumptions
|
|
84
|
-
- **Scale + Simplification** - Extremes reveal what to eliminate
|
|
85
|
-
- **Meta-pattern + Scale** - Universal patterns tested at extremes
|
|
86
|
-
|
|
87
|
-
## References
|
|
88
|
-
|
|
89
|
-
Load detailed guides as needed:
|
|
90
|
-
- `references/when-stuck.md` - Dispatch flowchart and decision tree
|
|
91
|
-
- `references/simplification-cascades.md` - Cascade detection and extraction
|
|
92
|
-
- `references/collision-zone-thinking.md` - Metaphor collision process
|
|
93
|
-
- `references/meta-pattern-recognition.md` - Pattern abstraction techniques
|
|
94
|
-
- `references/inversion-exercise.md` - Assumption flipping methodology
|
|
95
|
-
- `references/scale-game.md` - Extreme testing procedures
|
|
96
|
-
- `references/attribution.md` - Source and adaptation notes
|