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
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
# Diagnosis Protocol
|
|
2
|
-
|
|
3
|
-
Structured root cause analysis methodology. Replaces ad-hoc guessing with evidence-based investigation.
|
|
4
|
-
|
|
5
|
-
## Core Principle
|
|
6
|
-
|
|
7
|
-
**NEVER guess root causes.** Form hypotheses through structured reasoning and test them against evidence.
|
|
8
|
-
|
|
9
|
-
## Pre-Diagnosis: Capture State (MANDATORY)
|
|
10
|
-
|
|
11
|
-
Before any investigation, capture the current broken state as baseline:
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
1. Record exact error messages (copy-paste, not paraphrase)
|
|
15
|
-
2. Record failing test output (full command + output)
|
|
16
|
-
3. Record relevant stack traces
|
|
17
|
-
4. Record relevant log snippets with timestamps
|
|
18
|
-
5. Record git status / recent changes: git log --oneline -10
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
This baseline is required for Step 5 (Verify) — you MUST compare before/after.
|
|
22
|
-
|
|
23
|
-
## Diagnosis Chain (Follow in Order)
|
|
24
|
-
|
|
25
|
-
### Phase 1: Observe — What is actually happening?
|
|
26
|
-
|
|
27
|
-
Read, don't assume. Use `debug` (systematic-debugging Phase 1).
|
|
28
|
-
|
|
29
|
-
- What is the exact error message?
|
|
30
|
-
- Where does it occur? (file, line, function)
|
|
31
|
-
- When did it start? (check `git log`, `git bisect`)
|
|
32
|
-
- Can it be reproduced consistently?
|
|
33
|
-
- What is the expected vs actual behavior?
|
|
34
|
-
|
|
35
|
-
### Phase 2: Hypothesize — Why might this happen?
|
|
36
|
-
|
|
37
|
-
Activate `sequential-thinking` skill. Form hypotheses through structured reasoning.
|
|
38
|
-
|
|
39
|
-
**Structured hypothesis formation:**
|
|
40
|
-
```
|
|
41
|
-
For each hypothesis:
|
|
42
|
-
1. State the hypothesis clearly
|
|
43
|
-
2. What evidence would CONFIRM it?
|
|
44
|
-
3. What evidence would REFUTE it?
|
|
45
|
-
4. How to test it quickly?
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
**Common hypothesis categories:**
|
|
49
|
-
- Recent code change introduced regression (`git log`, `git diff`)
|
|
50
|
-
- Data/state mismatch (wrong input, stale cache, race condition)
|
|
51
|
-
- Environment difference (deps version, config, platform)
|
|
52
|
-
- Missing validation (null check, type guard, boundary)
|
|
53
|
-
- Incorrect assumption (API contract, data shape, ordering)
|
|
54
|
-
|
|
55
|
-
### Phase 3: Test — Verify hypotheses against evidence
|
|
56
|
-
|
|
57
|
-
Spawn parallel `Explore` subagents to test each hypothesis simultaneously:
|
|
58
|
-
|
|
59
|
-
```
|
|
60
|
-
// Launch in SINGLE message — max 3 parallel agents
|
|
61
|
-
Task("Explore", "Test hypothesis A: [specific search/check]", "Verify H-A")
|
|
62
|
-
Task("Explore", "Test hypothesis B: [specific search/check]", "Verify H-B")
|
|
63
|
-
Task("Explore", "Test hypothesis C: [specific search/check]", "Verify H-C")
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
**For each hypothesis result:**
|
|
67
|
-
- CONFIRMED: Evidence supports this as root cause → proceed to root cause tracing
|
|
68
|
-
- REFUTED: Evidence contradicts → discard, note why
|
|
69
|
-
- INCONCLUSIVE: Need more data → refine hypothesis or gather more evidence
|
|
70
|
-
|
|
71
|
-
### Phase 4: Trace — Follow the root cause chain
|
|
72
|
-
|
|
73
|
-
Use `debug` (root-cause-tracing technique). Trace backward:
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
Symptom (where error appears)
|
|
77
|
-
↑ Immediate cause (what triggered the error)
|
|
78
|
-
↑ Contributing factor (what set up the bad state)
|
|
79
|
-
↑ ROOT CAUSE (the original trigger that must be fixed)
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
**Rule:** NEVER fix where the error appears. Trace back to the source.
|
|
83
|
-
|
|
84
|
-
### Phase 5: Escalate — When hypotheses fail
|
|
85
|
-
|
|
86
|
-
If 2+ hypotheses are REFUTED:
|
|
87
|
-
1. Auto-activate `problem-solving` skill
|
|
88
|
-
2. Apply Inversion Exercise: "What would CAUSE this bug intentionally?"
|
|
89
|
-
3. Apply Scale Game: "Does this fail with 1 item? 100? 10000?"
|
|
90
|
-
4. Consider environmental factors (timing, concurrency, platform)
|
|
91
|
-
|
|
92
|
-
If 3+ fix attempts fail after diagnosis:
|
|
93
|
-
1. STOP immediately
|
|
94
|
-
2. Question the architecture — is the design fundamentally flawed?
|
|
95
|
-
3. Discuss with user before attempting more
|
|
96
|
-
|
|
97
|
-
## Diagnosis Report Format
|
|
98
|
-
|
|
99
|
-
```markdown
|
|
100
|
-
## Diagnosis Report
|
|
101
|
-
|
|
102
|
-
**Issue:** [one-line description]
|
|
103
|
-
**Pre-fix state captured:** Yes/No
|
|
104
|
-
|
|
105
|
-
### Root Cause
|
|
106
|
-
[Clear explanation of the root cause, traced back to origin]
|
|
107
|
-
|
|
108
|
-
### Evidence Chain
|
|
109
|
-
1. [Observation] → led to hypothesis [X]
|
|
110
|
-
2. [Test result] → confirmed/refuted [X]
|
|
111
|
-
3. [Trace] → root cause at [file:line]
|
|
112
|
-
|
|
113
|
-
### Affected Scope
|
|
114
|
-
- Files: [list]
|
|
115
|
-
- Functions: [list]
|
|
116
|
-
- Dependencies: [list]
|
|
117
|
-
|
|
118
|
-
### Recommended Fix
|
|
119
|
-
[What to change and why — addressing root cause, not symptoms]
|
|
120
|
-
|
|
121
|
-
### Prevention Needed
|
|
122
|
-
[What guards/tests to add to prevent recurrence]
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
## Quick Mode Diagnosis
|
|
126
|
-
|
|
127
|
-
For trivial issues (type errors, lint, syntax), abbreviated diagnosis:
|
|
128
|
-
|
|
129
|
-
1. Read error message
|
|
130
|
-
2. Locate affected file(s) via scout results
|
|
131
|
-
3. Identify root cause (usually obvious for simple issues)
|
|
132
|
-
4. Skip parallel hypothesis testing
|
|
133
|
-
5. Still capture pre-fix state for verification
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# Prevention Gate
|
|
2
|
-
|
|
3
|
-
After fixing a bug, prevent the same class of issues from recurring. This step is MANDATORY.
|
|
4
|
-
|
|
5
|
-
## Core Principle
|
|
6
|
-
|
|
7
|
-
A fix without prevention is incomplete. The same bug pattern WILL recur if you only patch the symptom.
|
|
8
|
-
|
|
9
|
-
## Prevention Requirements (Check All That Apply)
|
|
10
|
-
|
|
11
|
-
### 1. Regression Test (ALWAYS required)
|
|
12
|
-
|
|
13
|
-
Every fix MUST have a test that:
|
|
14
|
-
- **Fails** without the fix applied (proves the test catches the bug)
|
|
15
|
-
- **Passes** with the fix applied (proves the fix works)
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
If no test framework exists:
|
|
19
|
-
→ Add inline verification or assertion at minimum
|
|
20
|
-
→ Note in report: "No test framework — added runtime assertion"
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### 2. Defense-in-Depth Validation (When applicable)
|
|
24
|
-
|
|
25
|
-
Apply layered validation from `debug` defense-in-depth technique:
|
|
26
|
-
|
|
27
|
-
| Layer | Apply When | Example |
|
|
28
|
-
|-------|-----------|---------|
|
|
29
|
-
| **Entry point validation** | Fix involves user/external input | Reject invalid input at API boundary |
|
|
30
|
-
| **Business logic validation** | Fix involves data processing | Assert data makes sense for operation |
|
|
31
|
-
| **Environment guards** | Fix involves env-sensitive operations | Prevent dangerous ops in wrong context |
|
|
32
|
-
| **Debug instrumentation** | Fix was hard to diagnose | Add logging/context capture for forensics |
|
|
33
|
-
|
|
34
|
-
**Rule:** Not every fix needs all 4 layers. Apply what's relevant. But ALWAYS consider each.
|
|
35
|
-
|
|
36
|
-
### 3. Type Safety (When applicable)
|
|
37
|
-
|
|
38
|
-
| Scenario | Prevention |
|
|
39
|
-
|----------|-----------|
|
|
40
|
-
| Null/undefined caused the bug | Add strict null checks, use `??` or `?.` |
|
|
41
|
-
| Wrong type passed | Add type guard or runtime validation |
|
|
42
|
-
| Missing property | Add required field to interface/type |
|
|
43
|
-
| Implicit any | Add explicit types |
|
|
44
|
-
|
|
45
|
-
### 4. Error Handling (When applicable)
|
|
46
|
-
|
|
47
|
-
| Scenario | Prevention |
|
|
48
|
-
|----------|-----------|
|
|
49
|
-
| Unhandled promise rejection | Add `.catch()` or try/catch |
|
|
50
|
-
| Missing error boundary | Add error boundary component |
|
|
51
|
-
| Silent failure | Add explicit error logging |
|
|
52
|
-
| No fallback for external dependency | Add timeout + fallback |
|
|
53
|
-
|
|
54
|
-
## Verification Checklist (Before Completing Step 5)
|
|
55
|
-
|
|
56
|
-
```
|
|
57
|
-
□ Pre-fix state captured? (error messages, test output)
|
|
58
|
-
□ Fix applied to ROOT CAUSE (not symptom)?
|
|
59
|
-
□ Fresh verification run? (exact same commands as pre-fix)
|
|
60
|
-
□ Before/after comparison documented?
|
|
61
|
-
□ Regression test added? (fails without fix, passes with fix)
|
|
62
|
-
□ Defense-in-depth layers considered? (applied where relevant)
|
|
63
|
-
□ No new warnings/errors introduced?
|
|
64
|
-
□ Parallel verification passed? (typecheck + lint + build + test)
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Output Format
|
|
68
|
-
|
|
69
|
-
```
|
|
70
|
-
Prevention measures applied:
|
|
71
|
-
- Regression test: [test file:line] — covers [specific scenario]
|
|
72
|
-
- Guard added: [file:line] — [description of guard]
|
|
73
|
-
- Type safety: [file:line] — [what was strengthened]
|
|
74
|
-
- Error handling: [file:line] — [what was added]
|
|
75
|
-
|
|
76
|
-
Before/After comparison:
|
|
77
|
-
- Before: [exact error/failure]
|
|
78
|
-
- After: [exact success output]
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
## Quick Mode Prevention
|
|
82
|
-
|
|
83
|
-
For trivial issues (type errors, lint), abbreviated prevention:
|
|
84
|
-
- Regression test: optional (type system IS the test)
|
|
85
|
-
- Parallel verification: typecheck + lint only
|
|
86
|
-
- Defense-in-depth: skip (not applicable for type fixes)
|
|
87
|
-
- Still require before/after comparison of typecheck output
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
# Skill Activation Matrix
|
|
2
|
-
|
|
3
|
-
When to activate each skill and tool during fixing workflows.
|
|
4
|
-
|
|
5
|
-
## Always Activate (ALL Workflows)
|
|
6
|
-
|
|
7
|
-
| Skill/Tool | Step | Reason |
|
|
8
|
-
|------------|------|--------|
|
|
9
|
-
| `scout` OR parallel `Explore` | Step 1 | Understand codebase context before diagnosing |
|
|
10
|
-
| `debug` | Step 2 | Systematic root cause investigation |
|
|
11
|
-
| `sequential-thinking` | Step 2 | Structured hypothesis formation — NO guessing |
|
|
12
|
-
|
|
13
|
-
## Task Orchestration (Moderate+ Only)
|
|
14
|
-
|
|
15
|
-
| Tool | Activate When |
|
|
16
|
-
|------|---------------|
|
|
17
|
-
| `TaskCreate` | After complexity assessment, create all phase tasks upfront |
|
|
18
|
-
| `TaskUpdate` | At start/completion of each phase |
|
|
19
|
-
| `TaskList` | Check available unblocked work, coordinate parallel agents |
|
|
20
|
-
| `TaskGet` | Retrieve full task details before starting work |
|
|
21
|
-
|
|
22
|
-
Skip Tasks for Quick workflow (< 3 steps). See `references/task-orchestration.md`.
|
|
23
|
-
|
|
24
|
-
## Auto-Triggered Activation
|
|
25
|
-
|
|
26
|
-
| Skill | Auto-Trigger Condition |
|
|
27
|
-
|-------|------------------------|
|
|
28
|
-
| `problem-solving` | 2+ hypotheses REFUTED in Step 2 diagnosis |
|
|
29
|
-
| `sequential-thinking` | Always in Step 2 (mandatory for hypothesis formation) |
|
|
30
|
-
|
|
31
|
-
## Conditional Activation
|
|
32
|
-
|
|
33
|
-
| Skill | Activate When |
|
|
34
|
-
|-------|---------------|
|
|
35
|
-
| `brainstorm` | Multiple valid fix approaches, architecture decision (Deep only) |
|
|
36
|
-
| `context-engineering` | Fixing AI/LLM/agent code, context window issues |
|
|
37
|
-
| `ai-multimodal` (if available) | UI issues, screenshots provided, visual bugs |
|
|
38
|
-
| `project-management` | Moderate+ workflows — task hydration, sync-back, progress tracking |
|
|
39
|
-
|
|
40
|
-
## Subagent Usage
|
|
41
|
-
|
|
42
|
-
| Subagent | Activate When |
|
|
43
|
-
|----------|---------------|
|
|
44
|
-
| `debugger` | Root cause unclear, need deep investigation (Step 2) |
|
|
45
|
-
| `Explore` (parallel) | Scout multiple areas simultaneously (Step 1), test hypotheses (Step 2) |
|
|
46
|
-
| `Bash` (parallel) | Verify implementation: typecheck, lint, build, test (Step 5) |
|
|
47
|
-
| `researcher` | External docs needed, latest best practices (Deep only) |
|
|
48
|
-
| `planner` | Complex fix needs breakdown, multiple phases (Deep only) |
|
|
49
|
-
| `tester` | After implementation, verify fix works (Step 5) |
|
|
50
|
-
| `code-review` | After fix, verify quality and security (Step 5) |
|
|
51
|
-
| `git-manager` | After approval, commit changes (Step 6) |
|
|
52
|
-
| `docs-manager` | API/behavior changes need doc updates (Step 6) |
|
|
53
|
-
| `project-manager` | Major fix impacts roadmap/plan status (Step 6) |
|
|
54
|
-
| `fullstack-developer` | Parallel independent issues (each gets own agent) |
|
|
55
|
-
|
|
56
|
-
## Parallel Patterns
|
|
57
|
-
|
|
58
|
-
See `references/parallel-exploration.md` for detailed patterns.
|
|
59
|
-
|
|
60
|
-
| When | Parallel Strategy |
|
|
61
|
-
|------|-------------------|
|
|
62
|
-
| Scouting (Step 1) | 2-3 `Explore` agents on different areas |
|
|
63
|
-
| Testing hypotheses (Step 2) | 2-3 `Explore` agents per hypothesis |
|
|
64
|
-
| Multi-module fix | `Explore` each module in parallel |
|
|
65
|
-
| After implementation (Step 5) | `Bash` agents: typecheck + lint + build + test |
|
|
66
|
-
| 2+ independent issues | Task trees + `fullstack-developer` agents per issue |
|
|
67
|
-
|
|
68
|
-
## Workflow → Skills Map
|
|
69
|
-
|
|
70
|
-
| Workflow | Skills Activated |
|
|
71
|
-
|----------|------------------|
|
|
72
|
-
| Quick | `scout` (minimal), `debug`, `sequential-thinking`, `code-review`, parallel `Bash` verification |
|
|
73
|
-
| Standard | Above + Tasks, `problem-solving` (auto), `project-management`, `tester`, parallel `Explore` |
|
|
74
|
-
| Deep | All above + `brainstorm`, `context-engineering`, `researcher`, `planner` |
|
|
75
|
-
| Parallel | Per-issue Task trees + `project-management` + `fullstack-developer` agents + coordination via `TaskList` |
|
|
76
|
-
|
|
77
|
-
## Step → Skills Chain (Mandatory Order)
|
|
78
|
-
|
|
79
|
-
| Step | Mandatory Chain |
|
|
80
|
-
|------|----------------|
|
|
81
|
-
| Step 0: Mode | asking the user (unless auto/quick detected) |
|
|
82
|
-
| Step 1: Scout | `scout` OR 2-3 parallel `Explore` → map files, deps, tests |
|
|
83
|
-
| Step 2: Diagnose | Capture pre-fix state → `debug` → `sequential-thinking` → parallel `Explore` hypotheses → (`problem-solving` if 2+ fail) |
|
|
84
|
-
| Step 3: Assess | Classify complexity → create Tasks (moderate+) |
|
|
85
|
-
| Step 4: Fix | Implement per workflow → follow root cause |
|
|
86
|
-
| Step 5: Verify+Prevent | Iron-law verify → regression test → defense-in-depth → parallel `Bash` verify |
|
|
87
|
-
| Step 6: Finalize | Report → `docs-manager` → `TaskUpdate` → `git-manager` → `/ck-journal` |
|
|
88
|
-
|
|
89
|
-
## Detection Triggers
|
|
90
|
-
|
|
91
|
-
| Keyword/Pattern | Skill to Consider |
|
|
92
|
-
|-----------------|-------------------|
|
|
93
|
-
| "AI", "LLM", "agent", "context" | `context-engineering` |
|
|
94
|
-
| "stuck", "tried everything" | `problem-solving` |
|
|
95
|
-
| "complex", "multi-step" | `sequential-thinking` |
|
|
96
|
-
| "which approach", "options" | `brainstorm` |
|
|
97
|
-
| "latest docs", "best practice" | `researcher` subagent |
|
|
98
|
-
| Screenshot attached | `ai-multimodal` (if available) |
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
# Task Orchestration
|
|
2
|
-
|
|
3
|
-
Native Task tools for tracking and coordinating fix workflows.
|
|
4
|
-
|
|
5
|
-
**Skill:** Activate `project-management` for advanced task orchestration — provides hydration (plan checkboxes → Tasks), sync-back (Tasks → plan checkboxes), cross-session resume, and progress tracking patterns.
|
|
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 instead. Fix workflow remains fully functional — Tasks add visibility and coordination, not core functionality.
|
|
8
|
-
|
|
9
|
-
## When to Use Tasks
|
|
10
|
-
|
|
11
|
-
| Complexity | Use Tasks? | Reason |
|
|
12
|
-
|-----------|-----------|--------|
|
|
13
|
-
| Simple/Quick | No | < 3 steps, overhead exceeds benefit |
|
|
14
|
-
| Moderate (Standard) | Yes | 6 steps, multi-subagent coordination |
|
|
15
|
-
| Complex (Deep) | Yes | 9 steps, dependency chains, parallel agents |
|
|
16
|
-
| Parallel | Yes | Multiple independent issue trees |
|
|
17
|
-
|
|
18
|
-
## Task Tools
|
|
19
|
-
|
|
20
|
-
- `TaskCreate(subject, description, activeForm, metadata)` - Create task
|
|
21
|
-
- `TaskUpdate(taskId, status, addBlockedBy, addBlocks)` - Update status/deps
|
|
22
|
-
- `TaskGet(taskId)` - Get full task details
|
|
23
|
-
- `TaskList()` - List all tasks with status
|
|
24
|
-
|
|
25
|
-
**Lifecycle:** `pending` → `in_progress` → `completed`
|
|
26
|
-
|
|
27
|
-
## Standard Workflow Tasks (6 phases)
|
|
28
|
-
|
|
29
|
-
Create all tasks upfront, then work through them:
|
|
30
|
-
|
|
31
|
-
```
|
|
32
|
-
T1 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", metadata={step: 1, phase: "investigate"})
|
|
33
|
-
T2 = TaskCreate(subject="Diagnose root cause", activeForm="Diagnosing root cause", metadata={step: 2, phase: "investigate"})
|
|
34
|
-
T3 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", metadata={step: 3, phase: "implement"}, addBlockedBy=[T1, T2])
|
|
35
|
-
T4 = TaskCreate(subject="Verify + prevent", activeForm="Verifying fix", metadata={step: 4, phase: "verify"}, addBlockedBy=[T3])
|
|
36
|
-
T5 = TaskCreate(subject="Code review", activeForm="Reviewing code", metadata={step: 5, phase: "verify"}, addBlockedBy=[T4])
|
|
37
|
-
T6 = TaskCreate(subject="Finalize", activeForm="Finalizing", metadata={step: 6, phase: "finalize"}, addBlockedBy=[T5])
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
Update as work progresses:
|
|
41
|
-
```
|
|
42
|
-
TaskUpdate(taskId=T1, status="in_progress")
|
|
43
|
-
// ... scout codebase ...
|
|
44
|
-
TaskUpdate(taskId=T1, status="completed")
|
|
45
|
-
// T3 auto-unblocks when T1 + T2 complete
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## Deep Workflow Tasks (9 phases)
|
|
49
|
-
|
|
50
|
-
Steps 1+2+3 run in parallel (scout + diagnose + research).
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
T1 = TaskCreate(subject="Scout codebase", metadata={step: 1, phase: "investigate"})
|
|
54
|
-
T2 = TaskCreate(subject="Diagnose root cause", metadata={step: 2, phase: "investigate"})
|
|
55
|
-
T3 = TaskCreate(subject="Research solutions", metadata={step: 3, phase: "investigate"})
|
|
56
|
-
T4 = TaskCreate(subject="Brainstorm approaches", metadata={step: 4, phase: "design"}, addBlockedBy=[T1, T2, T3])
|
|
57
|
-
T5 = TaskCreate(subject="Create implementation plan", metadata={step: 5, phase: "design"}, addBlockedBy=[T4])
|
|
58
|
-
T6 = TaskCreate(subject="Implement fix", metadata={step: 6, phase: "implement"}, addBlockedBy=[T5])
|
|
59
|
-
T7 = TaskCreate(subject="Verify + prevent", metadata={step: 7, phase: "verify"}, addBlockedBy=[T6])
|
|
60
|
-
T8 = TaskCreate(subject="Code review", metadata={step: 8, phase: "verify"}, addBlockedBy=[T7])
|
|
61
|
-
T9 = TaskCreate(subject="Finalize & docs", metadata={step: 9, phase: "finalize"}, addBlockedBy=[T8])
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
**Note:** Steps 1, 2, and 3 run in parallel (scout + diagnose + research simultaneously).
|
|
65
|
-
|
|
66
|
-
## Parallel Issue Coordination
|
|
67
|
-
|
|
68
|
-
For 2+ independent issues, create separate task trees per issue:
|
|
69
|
-
|
|
70
|
-
```
|
|
71
|
-
// Issue A tree
|
|
72
|
-
TaskCreate(subject="[Issue A] Scout", metadata={issue: "A", step: 1})
|
|
73
|
-
TaskCreate(subject="[Issue A] Diagnose", metadata={issue: "A", step: 2})
|
|
74
|
-
TaskCreate(subject="[Issue A] Fix", metadata={issue: "A", step: 3}, addBlockedBy=[A-step1, A-step2])
|
|
75
|
-
TaskCreate(subject="[Issue A] Verify", metadata={issue: "A", step: 4}, addBlockedBy=[A-step3])
|
|
76
|
-
|
|
77
|
-
// Issue B tree
|
|
78
|
-
TaskCreate(subject="[Issue B] Scout", metadata={issue: "B", step: 1})
|
|
79
|
-
TaskCreate(subject="[Issue B] Diagnose", metadata={issue: "B", step: 2})
|
|
80
|
-
TaskCreate(subject="[Issue B] Fix", metadata={issue: "B", step: 3}, addBlockedBy=[B-step1, B-step2])
|
|
81
|
-
TaskCreate(subject="[Issue B] Verify", metadata={issue: "B", step: 4}, addBlockedBy=[B-step3])
|
|
82
|
-
|
|
83
|
-
// Final shared task
|
|
84
|
-
TaskCreate(subject="Integration verify", addBlockedBy=[A-step4, B-step4])
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
Spawn `fullstack-developer` subagents per issue tree. Each agent:
|
|
88
|
-
1. Claims tasks via `TaskUpdate(status="in_progress")`
|
|
89
|
-
2. Completes tasks via `TaskUpdate(status="completed")`
|
|
90
|
-
3. Blocked tasks auto-unblock when dependencies resolve
|
|
91
|
-
|
|
92
|
-
## Subagent Task Assignment
|
|
93
|
-
|
|
94
|
-
Assign tasks to subagents via `owner` field:
|
|
95
|
-
|
|
96
|
-
```
|
|
97
|
-
TaskUpdate(taskId=taskA, owner="agent-scout")
|
|
98
|
-
TaskUpdate(taskId=taskB, owner="agent-diagnose")
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
Check available work: `TaskList()` → filter by `status=pending`, `blockedBy=[]`, `owner=null`
|
|
102
|
-
|
|
103
|
-
## Rules
|
|
104
|
-
|
|
105
|
-
- Create tasks BEFORE starting work (upfront planning)
|
|
106
|
-
- Only 1 task `in_progress` per agent at a time
|
|
107
|
-
- Mark complete IMMEDIATELY after finishing (don't batch)
|
|
108
|
-
- Use `metadata` for filtering: `{step, phase, issue, severity}`
|
|
109
|
-
- If task fails → keep `in_progress`, create subtask for blocker
|
|
110
|
-
- Skip Tasks entirely for Quick workflow (< 3 steps)
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# CI/CD Fix Workflow
|
|
2
|
-
|
|
3
|
-
For GitHub Actions failures and CI/CD pipeline issues.
|
|
4
|
-
|
|
5
|
-
## Prerequisites
|
|
6
|
-
- `gh` CLI installed and authorized
|
|
7
|
-
- GitHub Actions URL or run ID
|
|
8
|
-
|
|
9
|
-
## Workflow
|
|
10
|
-
|
|
11
|
-
1. **Fetch logs** with `debugger` agent:
|
|
12
|
-
```bash
|
|
13
|
-
gh run view <run-id> --log-failed
|
|
14
|
-
gh run view <run-id> --log
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
2. **Analyze** root cause from logs
|
|
18
|
-
|
|
19
|
-
3. **Implement fix** based on analysis
|
|
20
|
-
|
|
21
|
-
4. **Test locally** with `tester` agent before pushing
|
|
22
|
-
|
|
23
|
-
5. **Iterate** if tests fail, repeat from step 3
|
|
24
|
-
|
|
25
|
-
## Notes
|
|
26
|
-
- If `gh` unavailable, instruct user to install: `gh auth login`
|
|
27
|
-
- Check both failed step and preceding steps for context
|
|
28
|
-
- Common issues: env vars, dependencies, permissions, timeouts
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
# Deep Workflow
|
|
2
|
-
|
|
3
|
-
Full pipeline with research, brainstorming, and planning for complex issues. Uses native Tasks with dependency chains.
|
|
4
|
-
|
|
5
|
-
## Task Setup (Before Starting)
|
|
6
|
-
|
|
7
|
-
Create all phase tasks upfront. Steps 1+2+3 run in parallel (scout + diagnose + research).
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
T1 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", metadata={phase: "investigate"})
|
|
11
|
-
T2 = TaskCreate(subject="Diagnose root cause", activeForm="Diagnosing root cause", metadata={phase: "investigate"})
|
|
12
|
-
T3 = TaskCreate(subject="Research solutions", activeForm="Researching solutions", metadata={phase: "investigate"})
|
|
13
|
-
T4 = TaskCreate(subject="Brainstorm approaches", activeForm="Brainstorming", metadata={phase: "design"}, addBlockedBy=[T1, T2, T3])
|
|
14
|
-
T5 = TaskCreate(subject="Create implementation plan", activeForm="Planning implementation", metadata={phase: "design"}, addBlockedBy=[T4])
|
|
15
|
-
T6 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", metadata={phase: "implement"}, addBlockedBy=[T5])
|
|
16
|
-
T7 = TaskCreate(subject="Verify + prevent", activeForm="Verifying fix", metadata={phase: "verify"}, addBlockedBy=[T6])
|
|
17
|
-
T8 = TaskCreate(subject="Code review", activeForm="Reviewing code", metadata={phase: "verify"}, addBlockedBy=[T7])
|
|
18
|
-
T9 = TaskCreate(subject="Finalize & docs", activeForm="Finalizing", metadata={phase: "finalize"}, addBlockedBy=[T8])
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Steps
|
|
22
|
-
|
|
23
|
-
### Step 1: Scout Codebase (parallel with Steps 2+3)
|
|
24
|
-
`TaskUpdate(T1, status="in_progress")`
|
|
25
|
-
|
|
26
|
-
**Mandatory:** Activate `scout` skill or launch 2-3 `Explore` subagents in parallel:
|
|
27
|
-
```
|
|
28
|
-
Task("Explore", "Find error origin and affected components", "Trace error")
|
|
29
|
-
Task("Explore", "Find module boundaries and dependencies", "Map deps")
|
|
30
|
-
Task("Explore", "Find related tests and similar patterns", "Find patterns")
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
Map: all affected files, module boundaries, call chains, test coverage gaps.
|
|
34
|
-
|
|
35
|
-
See `references/parallel-exploration.md` for patterns.
|
|
36
|
-
|
|
37
|
-
`TaskUpdate(T1, status="completed")`
|
|
38
|
-
**Output:** `✓ Step 1: Scouted - [N] files, system impact: [scope]`
|
|
39
|
-
|
|
40
|
-
### Step 2: Diagnose Root Cause (parallel with Steps 1+3)
|
|
41
|
-
`TaskUpdate(T2, status="in_progress")`
|
|
42
|
-
|
|
43
|
-
**Mandatory skill chain:**
|
|
44
|
-
1. **Capture pre-fix state:** Record ALL error messages, failing tests, stack traces, logs.
|
|
45
|
-
2. Activate `debug` skill (systematic-debugging + root-cause-tracing).
|
|
46
|
-
3. Activate `sequential-thinking` — structured hypothesis formation.
|
|
47
|
-
4. Spawn parallel `Explore` subagents to test each hypothesis.
|
|
48
|
-
5. If 2+ hypotheses fail → auto-activate `problem-solving`.
|
|
49
|
-
6. Trace backward through call chain to ROOT CAUSE origin.
|
|
50
|
-
|
|
51
|
-
See `references/diagnosis-protocol.md` for full methodology.
|
|
52
|
-
|
|
53
|
-
`TaskUpdate(T2, status="completed")`
|
|
54
|
-
**Output:** `✓ Step 2: Diagnosed - Root cause: [summary], Evidence: [chain]`
|
|
55
|
-
|
|
56
|
-
### Step 3: Research (parallel with Steps 1+2)
|
|
57
|
-
`TaskUpdate(T3, status="in_progress")`
|
|
58
|
-
Use `researcher` subagent for external knowledge.
|
|
59
|
-
|
|
60
|
-
- Search latest docs, best practices
|
|
61
|
-
- Find similar issues/solutions
|
|
62
|
-
- Gather security advisories if relevant
|
|
63
|
-
|
|
64
|
-
`TaskUpdate(T3, status="completed")`
|
|
65
|
-
**Output:** `✓ Step 3: Research complete - [key findings]`
|
|
66
|
-
|
|
67
|
-
### Step 4: Brainstorm
|
|
68
|
-
`TaskUpdate(T4, status="in_progress")` — auto-unblocks when T1 + T2 + T3 complete.
|
|
69
|
-
Activate `brainstorm` skill.
|
|
70
|
-
|
|
71
|
-
- Evaluate multiple approaches using scout + diagnosis + research findings
|
|
72
|
-
- Consider trade-offs
|
|
73
|
-
- Get user input on preferred direction
|
|
74
|
-
|
|
75
|
-
`TaskUpdate(T4, status="completed")`
|
|
76
|
-
**Output:** `✓ Step 4: Approach selected - [chosen approach]`
|
|
77
|
-
|
|
78
|
-
### Step 5: Plan
|
|
79
|
-
`TaskUpdate(T5, status="in_progress")`
|
|
80
|
-
Use `planner` subagent to create implementation plan.
|
|
81
|
-
|
|
82
|
-
- Break down into phases
|
|
83
|
-
- Identify dependencies
|
|
84
|
-
- Define success criteria
|
|
85
|
-
- Include prevention measures in plan
|
|
86
|
-
|
|
87
|
-
`TaskUpdate(T5, status="completed")`
|
|
88
|
-
**Output:** `✓ Step 5: Plan created - [N] phases`
|
|
89
|
-
|
|
90
|
-
### Step 6: Implement
|
|
91
|
-
`TaskUpdate(T6, status="in_progress")`
|
|
92
|
-
Implement per plan. Use `context-engineering`, `sequential-thinking`, `problem-solving`.
|
|
93
|
-
|
|
94
|
-
- Fix ROOT CAUSE per diagnosis — not symptoms
|
|
95
|
-
- Follow plan phases
|
|
96
|
-
- Minimal changes per phase
|
|
97
|
-
|
|
98
|
-
`TaskUpdate(T6, status="completed")`
|
|
99
|
-
**Output:** `✓ Step 6: Implemented - [N] files, [M] phases`
|
|
100
|
-
|
|
101
|
-
### Step 7: Verify + Prevent
|
|
102
|
-
`TaskUpdate(T7, status="in_progress")`
|
|
103
|
-
|
|
104
|
-
**Mandatory skill chain:**
|
|
105
|
-
1. **Iron-law verify:** Re-run EXACT commands from pre-fix state. Compare before/after.
|
|
106
|
-
2. **Regression test:** Add comprehensive tests. Tests MUST fail without fix, pass with fix.
|
|
107
|
-
3. **Defense-in-depth:** Apply all relevant prevention layers (see `references/prevention-gate.md`).
|
|
108
|
-
4. **Parallel verification:** Launch `Bash` agents: typecheck + lint + build + test.
|
|
109
|
-
5. **Edge cases:** Test boundary conditions, security implications, performance impact.
|
|
110
|
-
|
|
111
|
-
**If verification fails:** Loop back to Step 2 (re-diagnose). Max 3 attempts → question architecture.
|
|
112
|
-
|
|
113
|
-
See `references/prevention-gate.md` for prevention requirements.
|
|
114
|
-
|
|
115
|
-
`TaskUpdate(T7, status="completed")`
|
|
116
|
-
**Output:** `✓ Step 7: Verified + Prevented - [before/after], [N] tests, [M] guards`
|
|
117
|
-
|
|
118
|
-
### Step 8: Code Review
|
|
119
|
-
`TaskUpdate(T8, status="in_progress")`
|
|
120
|
-
Use `code-reviewer` subagent.
|
|
121
|
-
|
|
122
|
-
See `references/review-cycle.md` for mode-specific handling.
|
|
123
|
-
|
|
124
|
-
`TaskUpdate(T8, status="completed")`
|
|
125
|
-
**Output:** `✓ Step 8: Review [score]/10 - [status]`
|
|
126
|
-
|
|
127
|
-
### Step 9: Finalize
|
|
128
|
-
`TaskUpdate(T9, status="in_progress")`
|
|
129
|
-
- Report summary: root cause, evidence chain, changes, prevention measures, confidence score
|
|
130
|
-
- Activate `project-management` for task sync-back, plan status updates, and progress tracking
|
|
131
|
-
- Use `docs-manager` subagent for documentation
|
|
132
|
-
- Use `git-manager` subagent for commit
|
|
133
|
-
- Run `/ck-journal`
|
|
134
|
-
|
|
135
|
-
`TaskUpdate(T9, status="completed")`
|
|
136
|
-
**Output:** `✓ Step 9: Complete - [actions taken]`
|
|
137
|
-
|
|
138
|
-
## Skills/Subagents Activated
|
|
139
|
-
|
|
140
|
-
| Step | Skills/Subagents |
|
|
141
|
-
|------|------------------|
|
|
142
|
-
| 1 | `scout` OR parallel `Explore` subagents |
|
|
143
|
-
| 2 | `debug`, `sequential-thinking`, parallel `Explore`, (`problem-solving` auto) |
|
|
144
|
-
| 3 | `researcher` (runs parallel with steps 1+2) |
|
|
145
|
-
| 4 | `brainstorm` |
|
|
146
|
-
| 5 | `planner` |
|
|
147
|
-
| 6 | `problem-solving`, `sequential-thinking`, `context-engineering` |
|
|
148
|
-
| 7 | `tester`, parallel `Bash` verification |
|
|
149
|
-
| 8 | `code-reviewer` |
|
|
150
|
-
| 9 | `project-management`, `docs-manager`, `git-manager` |
|
|
151
|
-
|
|
152
|
-
**Rules:** Don't skip steps. Validate before proceeding. One phase at a time.
|
|
153
|
-
**Frontend:** Use `chrome`, `chrome-devtools` (if available) or any relevant skills/tools to verify.
|
|
154
|
-
**Visual Assets:** Use `ai-multimodal` (if available) for visual assets generation, analysis and verification.
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
# Log Analysis Fix Workflow
|
|
2
|
-
|
|
3
|
-
For fixing issues from application logs. Uses native Tasks for phase tracking.
|
|
4
|
-
|
|
5
|
-
## Prerequisites
|
|
6
|
-
- Log file at `./logs.txt` or similar
|
|
7
|
-
|
|
8
|
-
## Setup (if logs missing)
|
|
9
|
-
|
|
10
|
-
Add permanent log piping to project config:
|
|
11
|
-
- **Bash/Unix**: `command 2>&1 | tee logs.txt`
|
|
12
|
-
- **PowerShell**: `command *>&1 | Tee-Object logs.txt`
|
|
13
|
-
|
|
14
|
-
## Task Setup (Before Starting)
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
T1 = TaskCreate(subject="Read & analyze logs", activeForm="Analyzing logs")
|
|
18
|
-
T2 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", addBlockedBy=[T1])
|
|
19
|
-
T3 = TaskCreate(subject="Plan fix", activeForm="Planning fix", addBlockedBy=[T1, T2])
|
|
20
|
-
T4 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", addBlockedBy=[T3])
|
|
21
|
-
T5 = TaskCreate(subject="Test fix", activeForm="Testing fix", addBlockedBy=[T4])
|
|
22
|
-
T6 = TaskCreate(subject="Code review", activeForm="Reviewing code", addBlockedBy=[T5])
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Workflow
|
|
26
|
-
|
|
27
|
-
### Step 1: Read & Analyze Logs
|
|
28
|
-
`TaskUpdate(T1, status="in_progress")`
|
|
29
|
-
|
|
30
|
-
- Read logs with `Grep` (use `head_limit: 30` initially, increase if needed)
|
|
31
|
-
- Use `debugger` agent for root cause analysis
|
|
32
|
-
- Focus on last N lines first (most recent errors)
|
|
33
|
-
- Look for stack traces, error codes, timestamps, repeated patterns
|
|
34
|
-
|
|
35
|
-
`TaskUpdate(T1, status="completed")`
|
|
36
|
-
|
|
37
|
-
### Step 2: Scout Codebase
|
|
38
|
-
`TaskUpdate(T2, status="in_progress")`
|
|
39
|
-
Use `scout` agent or parallel `Explore` subagents to find issue locations.
|
|
40
|
-
|
|
41
|
-
See `references/parallel-exploration.md` for patterns.
|
|
42
|
-
|
|
43
|
-
`TaskUpdate(T2, status="completed")`
|
|
44
|
-
|
|
45
|
-
### Step 3: Plan Fix
|
|
46
|
-
`TaskUpdate(T3, status="in_progress")` — auto-unblocks when T1 + T2 complete.
|
|
47
|
-
Use `planner` agent.
|
|
48
|
-
|
|
49
|
-
`TaskUpdate(T3, status="completed")`
|
|
50
|
-
|
|
51
|
-
### Step 4: Implement
|
|
52
|
-
`TaskUpdate(T4, status="in_progress")`
|
|
53
|
-
Implement the fix.
|
|
54
|
-
|
|
55
|
-
`TaskUpdate(T4, status="completed")`
|
|
56
|
-
|
|
57
|
-
### Step 5: Test
|
|
58
|
-
`TaskUpdate(T5, status="in_progress")`
|
|
59
|
-
Use `tester` agent. If issues remain → keep T5 `in_progress`, loop back to Step 2.
|
|
60
|
-
|
|
61
|
-
`TaskUpdate(T5, status="completed")`
|
|
62
|
-
|
|
63
|
-
### Step 6: Review
|
|
64
|
-
`TaskUpdate(T6, status="in_progress")`
|
|
65
|
-
Use `code-reviewer` agent.
|
|
66
|
-
|
|
67
|
-
`TaskUpdate(T6, status="completed")`
|
|
68
|
-
|
|
69
|
-
## Tips
|
|
70
|
-
- Focus on last N lines first (most recent errors)
|
|
71
|
-
- Look for stack traces, error codes, timestamps
|
|
72
|
-
- Check for patterns/repeated errors
|