cokit-cli 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/agents/ck-brainstormer.agent.md +92 -0
- package/agents/ck-code-reviewer.agent.md +145 -0
- package/agents/ck-debugger.agent.md +142 -0
- package/agents/ck-ui-ux-designer.agent.md +200 -0
- package/docs/README.md +2 -9
- package/docs/codebase-summary.md +4 -4
- package/docs/cokit-sync-and-maintenance-guide.md +1 -1
- package/docs/copilot-processing-flow.md +15 -15
- package/docs/project-overview-pdr.md +1 -1
- package/docs/upstream-porting-rules.md +4 -3
- package/package.json +1 -1
- package/prompts/ck-bootstrap.prompt.md +12 -12
- package/prompts/ck-cook.prompt.md +11 -11
- package/prompts/ck-fix-fast.prompt.md +1 -1
- package/prompts/ck-fix-hard.prompt.md +2 -2
- package/prompts/ck-plan-fast.prompt.md +1 -1
- package/prompts/ck-plan-hard.prompt.md +3 -3
- package/prompts/ck-plan-red-team.prompt.md +1 -1
- package/prompts/ck-review.prompt.md +4 -4
- package/prompts/ck-test.prompt.md +1 -1
- package/skills/ck-agent-browser/SKILL.md +294 -0
- package/skills/ck-backend-development/SKILL.md +94 -0
- package/skills/ck-bootstrap/SKILL.md +102 -0
- package/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/skills/ck-brainstorm/SKILL.md +122 -0
- package/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/skills/ck-code-review/SKILL.md +196 -0
- package/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/skills/ck-context-engineering/SKILL.md +107 -0
- package/skills/ck-cook/SKILL.md +155 -0
- package/skills/ck-cook/references/workflow-steps.md +192 -0
- package/skills/ck-databases/SKILL.md +84 -0
- package/skills/ck-debug/SKILL.md +120 -0
- package/skills/ck-deploy/SKILL.md +154 -0
- package/skills/ck-devops/SKILL.md +96 -0
- package/skills/ck-docs-seeker/SKILL.md +97 -0
- package/skills/ck-fix/SKILL.md +209 -0
- package/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/skills/ck-fix/references/prevention-gate.md +87 -0
- package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/skills/ck-fix/references/task-orchestration.md +110 -0
- package/skills/ck-fix/references/workflow-ci.md +28 -0
- package/skills/ck-fix/references/workflow-deep.md +154 -0
- package/skills/ck-fix/references/workflow-logs.md +72 -0
- package/skills/ck-fix/references/workflow-quick.md +82 -0
- package/skills/ck-fix/references/workflow-standard.md +120 -0
- package/skills/ck-fix/references/workflow-test.md +75 -0
- package/skills/ck-fix/references/workflow-ui.md +72 -0
- package/skills/ck-frontend-design/SKILL.md +109 -0
- package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/skills/ck-frontend-development/SKILL.md +400 -0
- package/skills/ck-git/SKILL.md +113 -0
- package/skills/ck-git/references/workflow-commit.md +58 -0
- package/skills/ck-git/references/workflow-merge.md +48 -0
- package/skills/ck-git/references/workflow-pr.md +58 -0
- package/skills/ck-git/references/workflow-push.md +52 -0
- package/skills/ck-mcp-management/SKILL.md +210 -0
- package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/skills/ck-planning/SKILL.md +194 -0
- package/skills/ck-planning/references/research-phase.md +49 -0
- package/skills/ck-planning/references/task-management.md +134 -0
- package/skills/ck-planning/references/workflow-modes.md +154 -0
- package/skills/ck-problem-solving/SKILL.md +96 -0
- package/skills/ck-project-management/SKILL.md +133 -0
- package/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/skills/ck-repomix/SKILL.md +248 -0
- package/skills/ck-research/SKILL.md +172 -0
- package/skills/ck-scout/SKILL.md +91 -0
- package/skills/ck-security/SKILL.md +139 -0
- package/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/skills/ck-ship/SKILL.md +116 -0
- package/skills/ck-ship/references/ship-workflow.md +241 -0
- package/skills/ck-test/SKILL.md +111 -0
- package/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/skills/ck-ui-styling/SKILL.md +321 -0
- package/skills/ck-web-testing/SKILL.md +96 -0
- package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
- package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
- package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
- package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -12
- package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -11
- package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
- package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -3
- package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-review.prompt.md +4 -4
- package/templates/repo/.github/prompts/ck-test.prompt.md +1 -1
- package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
- package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
- package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
- package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
- package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
- package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
- package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
- package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
- package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
- package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
- package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
- package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
- package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
- package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
- package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
- package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
- package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
- package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
- package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
- package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
- package/agents/brainstormer.agent.md +0 -92
- package/agents/code-reviewer.agent.md +0 -145
- package/agents/debugger.agent.md +0 -142
- package/agents/ui-ux-designer.agent.md +0 -200
- package/docs/cokit-comprehensive-mapping-guide.md +0 -355
- package/docs/cokit-slides.md +0 -207
- package/docs/cokit-team-presentation.md +0 -351
- package/docs/skills-and-orchestration-layer-en.md +0 -404
- package/docs/skills-and-orchestration-layer-vi.md +0 -404
- package/skills/agent-browser/SKILL.md +0 -294
- package/skills/backend-development/SKILL.md +0 -94
- package/skills/bootstrap/SKILL.md +0 -102
- package/skills/bootstrap/references/shared-phases.md +0 -59
- package/skills/bootstrap/references/workflow-auto.md +0 -52
- package/skills/bootstrap/references/workflow-fast.md +0 -50
- package/skills/bootstrap/references/workflow-full.md +0 -60
- package/skills/bootstrap/references/workflow-parallel.md +0 -59
- package/skills/brainstorm/SKILL.md +0 -122
- package/skills/code-review/SKILL.md +0 -196
- package/skills/code-review/references/adversarial-review.md +0 -223
- package/skills/code-review/references/codebase-scan-workflow.md +0 -30
- package/skills/code-review/references/parallel-review-workflow.md +0 -76
- package/skills/code-review/references/requesting-code-review.md +0 -116
- package/skills/context-engineering/SKILL.md +0 -107
- package/skills/cook/SKILL.md +0 -155
- package/skills/cook/references/workflow-steps.md +0 -192
- package/skills/databases/SKILL.md +0 -84
- package/skills/debug/SKILL.md +0 -120
- package/skills/deploy/SKILL.md +0 -154
- package/skills/devops/SKILL.md +0 -96
- package/skills/docs-seeker/SKILL.md +0 -97
- package/skills/fix/SKILL.md +0 -209
- package/skills/fix/references/complexity-assessment.md +0 -73
- package/skills/fix/references/diagnosis-protocol.md +0 -133
- package/skills/fix/references/prevention-gate.md +0 -87
- package/skills/fix/references/skill-activation-matrix.md +0 -98
- package/skills/fix/references/task-orchestration.md +0 -110
- package/skills/fix/references/workflow-ci.md +0 -28
- package/skills/fix/references/workflow-deep.md +0 -154
- package/skills/fix/references/workflow-logs.md +0 -72
- package/skills/fix/references/workflow-quick.md +0 -82
- package/skills/fix/references/workflow-standard.md +0 -120
- package/skills/fix/references/workflow-test.md +0 -75
- package/skills/fix/references/workflow-ui.md +0 -72
- package/skills/frontend-design/SKILL.md +0 -109
- package/skills/frontend-design/references/workflow-3d.md +0 -98
- package/skills/frontend-design/references/workflow-describe.md +0 -87
- package/skills/frontend-design/references/workflow-immersive.md +0 -82
- package/skills/frontend-design/references/workflow-quick.md +0 -52
- package/skills/frontend-design/references/workflow-screenshot.md +0 -63
- package/skills/frontend-design/references/workflow-video.md +0 -74
- package/skills/frontend-development/SKILL.md +0 -400
- package/skills/git/SKILL.md +0 -113
- package/skills/git/references/workflow-commit.md +0 -58
- package/skills/git/references/workflow-merge.md +0 -48
- package/skills/git/references/workflow-pr.md +0 -58
- package/skills/git/references/workflow-push.md +0 -52
- package/skills/mcp-management/SKILL.md +0 -210
- package/skills/mermaidjs-v11/SKILL.md +0 -116
- package/skills/planning/SKILL.md +0 -194
- package/skills/planning/references/research-phase.md +0 -49
- package/skills/planning/references/task-management.md +0 -134
- package/skills/planning/references/workflow-modes.md +0 -154
- package/skills/problem-solving/SKILL.md +0 -96
- package/skills/project-management/SKILL.md +0 -133
- package/skills/project-management/references/documentation-triggers.md +0 -60
- package/skills/repomix/SKILL.md +0 -248
- package/skills/research/SKILL.md +0 -172
- package/skills/scout/SKILL.md +0 -91
- package/skills/security/SKILL.md +0 -139
- package/skills/sequential-thinking/SKILL.md +0 -94
- package/skills/ship/SKILL.md +0 -116
- package/skills/ship/references/ship-workflow.md +0 -241
- package/skills/test/SKILL.md +0 -111
- package/skills/test/references/ui-testing-workflow.md +0 -65
- package/skills/ui-styling/SKILL.md +0 -321
- package/skills/web-testing/SKILL.md +0 -96
- package/templates/repo/.github/agents/brainstormer.agent.md +0 -92
- package/templates/repo/.github/agents/code-reviewer.agent.md +0 -145
- package/templates/repo/.github/agents/debugger.agent.md +0 -142
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -200
- package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -294
- package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
- package/templates/repo/.github/skills/bootstrap/SKILL.md +0 -102
- package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +0 -59
- package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +0 -52
- package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +0 -50
- package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +0 -60
- package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +0 -59
- package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -122
- package/templates/repo/.github/skills/code-review/SKILL.md +0 -196
- package/templates/repo/.github/skills/code-review/references/adversarial-review.md +0 -223
- package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +0 -30
- package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +0 -76
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -116
- package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -107
- package/templates/repo/.github/skills/cook/SKILL.md +0 -155
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -192
- package/templates/repo/.github/skills/databases/SKILL.md +0 -84
- package/templates/repo/.github/skills/debug/SKILL.md +0 -120
- package/templates/repo/.github/skills/deploy/SKILL.md +0 -154
- package/templates/repo/.github/skills/devops/SKILL.md +0 -96
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -97
- package/templates/repo/.github/skills/fix/SKILL.md +0 -209
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -73
- package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +0 -133
- package/templates/repo/.github/skills/fix/references/prevention-gate.md +0 -87
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -98
- package/templates/repo/.github/skills/fix/references/task-orchestration.md +0 -110
- package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -154
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -72
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -82
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -120
- package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -75
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -72
- package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -109
- package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +0 -98
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -87
- package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +0 -82
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -52
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -63
- package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +0 -74
- package/templates/repo/.github/skills/frontend-development/SKILL.md +0 -400
- package/templates/repo/.github/skills/git/SKILL.md +0 -113
- package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
- package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
- package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -210
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -116
- package/templates/repo/.github/skills/planning/SKILL.md +0 -194
- package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
- package/templates/repo/.github/skills/planning/references/task-management.md +0 -134
- package/templates/repo/.github/skills/planning/references/workflow-modes.md +0 -154
- package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -96
- package/templates/repo/.github/skills/project-management/SKILL.md +0 -133
- package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +0 -60
- package/templates/repo/.github/skills/repomix/SKILL.md +0 -248
- package/templates/repo/.github/skills/research/SKILL.md +0 -172
- package/templates/repo/.github/skills/scout/SKILL.md +0 -91
- package/templates/repo/.github/skills/security/SKILL.md +0 -139
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -94
- package/templates/repo/.github/skills/ship/SKILL.md +0 -116
- package/templates/repo/.github/skills/ship/references/ship-workflow.md +0 -241
- package/templates/repo/.github/skills/test/SKILL.md +0 -111
- package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +0 -65
- package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -321
- package/templates/repo/.github/skills/web-testing/SKILL.md +0 -96
- /package/agents/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
- /package/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
- /package/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
- /package/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
- /package/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
- /package/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
- /package/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
- /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/agents/{tester.agent.md → ck-tester.agent.md} +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/agent-browser-vs-chrome-devtools.md +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklist-workflow.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/task-management-reviews.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{common → ck-common}/README.md +0 -0
- /package/skills/{common → ck-common}/api_key_helper.py +0 -0
- /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-degradation.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/runtime-awareness.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/skills/{cook → ck-cook}/README.md +0 -0
- /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
- /package/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
- /package/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
- /package/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/skills/{databases → ck-databases}/db-design.md +0 -0
- /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
- /package/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/skills/{debug → ck-debug}/references/frontend-verification.md +0 -0
- /package/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
- /package/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
- /package/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
- /package/skills/{debug → ck-debug}/references/reporting-standards.md +0 -0
- /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/skills/{debug → ck-debug}/references/task-management-debugging.md +0 -0
- /package/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
- /package/skills/{deploy → ck-deploy}/references/platforms/vultr.md +0 -0
- /package/skills/{devops → ck-devops}/.env.example +0 -0
- /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/context7-patterns.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/fetch-docs.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/skills/{fix → ck-fix}/references/mode-selection.md +0 -0
- /package/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
- /package/skills/{fix → ck-fix}/references/review-cycle.md +0 -0
- /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/ai-multimodal-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/anti-slop-rules.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/magicui-components.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
- /package/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.md +0 -0
- /package/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/skills/{git → ck-git}/references/commit-standards.md +0 -0
- /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/README.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/.env.example +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/mcp-client.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/mcp-client.ts +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/skills/{planning → ck-planning}/references/archive-workflow.md +0 -0
- /package/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
- /package/skills/{planning → ck-planning}/references/output-standards.md +0 -0
- /package/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
- /package/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
- /package/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
- /package/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
- /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
- /package/skills/{planning → ck-planning}/references/validate-workflow.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
- /package/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/skills/{scout → ck-scout}/references/external-scouting.md +0 -0
- /package/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
- /package/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
- /package/skills/{security → ck-security}/references/stride-owasp-checklist.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/README.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/package.json +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/skills/{ship → ck-ship}/references/auto-detect.md +0 -0
- /package/skills/{ship → ck-ship}/references/pr-template.md +0 -0
- /package/skills/{test → ck-test}/references/report-format.md +0 -0
- /package/skills/{test → ck-test}/references/test-execution-workflow.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
- /package/templates/repo/.github/agents/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
- /package/templates/repo/.github/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
- /package/templates/repo/.github/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
- /package/templates/repo/.github/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
- /package/templates/repo/.github/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
- /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/templates/repo/.github/agents/{tester.agent.md → ck-tester.agent.md} +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/agent-browser-vs-chrome-devtools.md +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklist-workflow.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/task-management-reviews.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/README.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_helper.py +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-degradation.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/runtime-awareness.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/README.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/db-design.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/frontend-verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/reporting-standards.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/task-management-debugging.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
- /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vultr.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/context7-patterns.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/fetch-docs.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/mode-selection.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/review-cycle.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/ai-multimodal-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/anti-slop-rules.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/magicui-components.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
- /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/commit-standards.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/README.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/.env.example +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/mcp-client.ts +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/archive-workflow.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/output-standards.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-workflow.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
- /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{scout → ck-scout}/references/external-scouting.md +0 -0
- /package/templates/repo/.github/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
- /package/templates/repo/.github/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
- /package/templates/repo/.github/skills/{security → ck-security}/references/stride-owasp-checklist.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/README.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package-lock.json +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package.json +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/templates/repo/.github/skills/{ship → ck-ship}/references/auto-detect.md +0 -0
- /package/templates/repo/.github/skills/{ship → ck-ship}/references/pr-template.md +0 -0
- /package/templates/repo/.github/skills/{test → ck-test}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{test → ck-test}/references/test-execution-workflow.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
package/skills/security/SKILL.md
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: security
|
|
3
|
-
description: "STRIDE + OWASP-based security audit with optional auto-fix. Scans code for vulnerabilities, categorizes by severity, and can iteratively fix findings using ck:autoresearch pattern."
|
|
4
|
-
argument-hint: "<scope glob or 'full'> [--fix] [--iterations N]"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# ck:security — Security Audit
|
|
8
|
-
|
|
9
|
-
Runs a structured STRIDE + OWASP security audit on a given scope. Produces a severity-ranked findings report. With `--fix`, applies fixes iteratively using the ck:autoresearch guard pattern.
|
|
10
|
-
|
|
11
|
-
## When to Use
|
|
12
|
-
|
|
13
|
-
- Before a release or major deployment
|
|
14
|
-
- After adding auth, payment, or data-handling features
|
|
15
|
-
- Periodic security review (monthly/quarterly)
|
|
16
|
-
- Compliance check (SOC 2, GDPR, PCI-DSS prep)
|
|
17
|
-
|
|
18
|
-
## When NOT to Use
|
|
19
|
-
|
|
20
|
-
- Purely cosmetic changes (CSS, copy edits)
|
|
21
|
-
- No user-facing code or data handling involved
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
## Modes
|
|
26
|
-
|
|
27
|
-
| Mode | Invocation | Behavior |
|
|
28
|
-
|------|-----------|----------|
|
|
29
|
-
| Audit only | `/ck-security <scope>` | Scan → categorize → report |
|
|
30
|
-
| Audit + Fix | `/ck-security <scope> --fix` | Scan → categorize → fix iteratively |
|
|
31
|
-
| Bounded fix | `/ck-security <scope> --fix --iterations N` | Limit fix iterations to N |
|
|
32
|
-
|
|
33
|
-
---
|
|
34
|
-
|
|
35
|
-
## Audit Methodology
|
|
36
|
-
|
|
37
|
-
### 1. Scope Resolution
|
|
38
|
-
Expand the provided glob or `full` keyword into a file list. Read all in-scope files before analysis.
|
|
39
|
-
|
|
40
|
-
### 2. STRIDE Analysis
|
|
41
|
-
Evaluate each threat category systematically:
|
|
42
|
-
- **S**poofing — identity/authentication weaknesses
|
|
43
|
-
- **T**ampering — input validation, integrity controls
|
|
44
|
-
- **R**epudiation — audit logging gaps
|
|
45
|
-
- **I**nformation Disclosure — data leakage, secret exposure
|
|
46
|
-
- **D**enial of Service — rate limits, resource exhaustion
|
|
47
|
-
- **E**levation of Privilege — broken access control, RBAC gaps
|
|
48
|
-
|
|
49
|
-
### 3. OWASP Top 10 Check
|
|
50
|
-
Map findings to OWASP categories (A01–A10). See `references/stride-owasp-checklist.md` for per-category checks.
|
|
51
|
-
|
|
52
|
-
### 4. Dependency Audit
|
|
53
|
-
Run the appropriate package audit tool for the detected stack:
|
|
54
|
-
- Node.js: `npm audit`
|
|
55
|
-
- Python: `pip-audit`
|
|
56
|
-
- Go: `govulncheck`
|
|
57
|
-
- Ruby: `bundle audit`
|
|
58
|
-
|
|
59
|
-
### 5. Secret Detection
|
|
60
|
-
Scan for hardcoded API keys, passwords, tokens, and private keys using regex patterns. See `references/stride-owasp-checklist.md` → Secret Patterns.
|
|
61
|
-
|
|
62
|
-
### 6. Finding Categorization
|
|
63
|
-
Assign each finding a severity level (see Severity Definitions below).
|
|
64
|
-
|
|
65
|
-
---
|
|
66
|
-
|
|
67
|
-
## Output Format
|
|
68
|
-
|
|
69
|
-
```
|
|
70
|
-
## Security Audit Report
|
|
71
|
-
|
|
72
|
-
### Summary
|
|
73
|
-
- Files scanned: N
|
|
74
|
-
- Findings: X critical, Y high, Z medium, W low, V info
|
|
75
|
-
|
|
76
|
-
### Findings
|
|
77
|
-
|
|
78
|
-
| # | Severity | Category | File:Line | Description | Fix Recommendation |
|
|
79
|
-
|---|----------|----------|-----------|-------------|-------------------|
|
|
80
|
-
| 1 | Critical | Injection | api/users.ts:45 | SQL string concatenation | Use parameterized queries |
|
|
81
|
-
| 2 | High | Auth | auth/login.ts:12 | No rate limiting | Add express-rate-limit |
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
---
|
|
85
|
-
|
|
86
|
-
## Fix Mode (--fix)
|
|
87
|
-
|
|
88
|
-
When `--fix` is provided, apply fixes iteratively after the audit:
|
|
89
|
-
|
|
90
|
-
1. Sort all findings by severity (Critical → High → Medium → Low)
|
|
91
|
-
2. For each finding:
|
|
92
|
-
a. Apply one targeted fix
|
|
93
|
-
b. Run guard (tests or lint) to verify no regression
|
|
94
|
-
c. Commit: `security(fix-N): <short description>`
|
|
95
|
-
d. Advance to next finding
|
|
96
|
-
3. Stop early if guard fails — report the failure instead of proceeding
|
|
97
|
-
4. Uses `autoresearch` guard pattern for regression prevention
|
|
98
|
-
|
|
99
|
-
> Tip: Use `--iterations N` to cap total fix iterations when scope is large.
|
|
100
|
-
|
|
101
|
-
---
|
|
102
|
-
|
|
103
|
-
## Severity Definitions
|
|
104
|
-
|
|
105
|
-
| Severity | Description | Fix Priority |
|
|
106
|
-
|----------|-------------|-------------|
|
|
107
|
-
| Critical | Exploitable now, data breach or RCE risk | Immediate — block release |
|
|
108
|
-
| High | Exploitable with moderate effort, significant impact | This sprint |
|
|
109
|
-
| Medium | Limited exploitability or impact | Next sprint |
|
|
110
|
-
| Low | Theoretical risk, defense-in-depth improvement | Backlog |
|
|
111
|
-
| Info | Best practice suggestion, no direct risk | Optional |
|
|
112
|
-
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## Integration with Other Skills
|
|
116
|
-
|
|
117
|
-
- Run after `predict` when the security persona flags concerns
|
|
118
|
-
- Feed Critical/High findings into `ck:autoresearch --fix` for automated remediation
|
|
119
|
-
- Use `scenario` with `--focus authorization` for deeper auth flow testing
|
|
120
|
-
- Pair with `plan` to schedule Medium/Low findings as sprint tasks
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
## Example Invocations
|
|
125
|
-
|
|
126
|
-
```bash
|
|
127
|
-
# Audit API layer only
|
|
128
|
-
/ck-security src/api/**/*.ts
|
|
129
|
-
|
|
130
|
-
# Audit entire src/ and auto-fix, max 15 iterations
|
|
131
|
-
/ck-security src/ --fix --iterations 15
|
|
132
|
-
|
|
133
|
-
# Full codebase audit (no fix)
|
|
134
|
-
/ck-security full
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
---
|
|
138
|
-
|
|
139
|
-
See `references/stride-owasp-checklist.md` for the detailed per-category checklist and secret detection regex patterns.
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: sequential-thinking
|
|
3
|
-
description: Apply step-by-step analysis for complex problems with revision capability. Use for multi-step reasoning, hypothesis verification, adaptive planning, problem decomposition, course correction.
|
|
4
|
-
license: MIT
|
|
5
|
-
argument-hint: "[problem to analyze step-by-step]"
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Sequential Thinking
|
|
9
|
-
|
|
10
|
-
Structured problem-solving via manageable, reflective thought sequences with dynamic adjustment.
|
|
11
|
-
|
|
12
|
-
## When to Apply
|
|
13
|
-
|
|
14
|
-
- Complex problem decomposition
|
|
15
|
-
- Adaptive planning with revision capability
|
|
16
|
-
- Analysis needing course correction
|
|
17
|
-
- Problems with unclear/emerging scope
|
|
18
|
-
- Multi-step solutions requiring context maintenance
|
|
19
|
-
- Hypothesis-driven investigation/debugging
|
|
20
|
-
|
|
21
|
-
## Core Process
|
|
22
|
-
|
|
23
|
-
### 1. Start with Loose Estimate
|
|
24
|
-
```
|
|
25
|
-
Thought 1/5: [Initial analysis]
|
|
26
|
-
```
|
|
27
|
-
Adjust dynamically as understanding evolves.
|
|
28
|
-
|
|
29
|
-
### 2. Structure Each Thought
|
|
30
|
-
- Build on previous context explicitly
|
|
31
|
-
- Address one aspect per thought
|
|
32
|
-
- State assumptions, uncertainties, realizations
|
|
33
|
-
- Signal what next thought should address
|
|
34
|
-
|
|
35
|
-
### 3. Apply Dynamic Adjustment
|
|
36
|
-
- **Expand**: More complexity discovered → increase total
|
|
37
|
-
- **Contract**: Simpler than expected → decrease total
|
|
38
|
-
- **Revise**: New insight invalidates previous → mark revision
|
|
39
|
-
- **Branch**: Multiple approaches → explore alternatives
|
|
40
|
-
|
|
41
|
-
### 4. Use Revision When Needed
|
|
42
|
-
```
|
|
43
|
-
Thought 5/8 [REVISION of Thought 2]: [Corrected understanding]
|
|
44
|
-
- Original: [What was stated]
|
|
45
|
-
- Why revised: [New insight]
|
|
46
|
-
- Impact: [What changes]
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
### 5. Branch for Alternatives
|
|
50
|
-
```
|
|
51
|
-
Thought 4/7 [BRANCH A from Thought 2]: [Approach A]
|
|
52
|
-
Thought 4/7 [BRANCH B from Thought 2]: [Approach B]
|
|
53
|
-
```
|
|
54
|
-
Compare explicitly, converge with decision rationale.
|
|
55
|
-
|
|
56
|
-
### 6. Generate & Verify Hypotheses
|
|
57
|
-
```
|
|
58
|
-
Thought 6/9 [HYPOTHESIS]: [Proposed solution]
|
|
59
|
-
Thought 7/9 [VERIFICATION]: [Test results]
|
|
60
|
-
```
|
|
61
|
-
Iterate until hypothesis verified.
|
|
62
|
-
|
|
63
|
-
### 7. Complete Only When Ready
|
|
64
|
-
Mark final: `Thought N/N [FINAL]`
|
|
65
|
-
|
|
66
|
-
Complete when:
|
|
67
|
-
- Solution verified
|
|
68
|
-
- All critical aspects addressed
|
|
69
|
-
- Confidence achieved
|
|
70
|
-
- No outstanding uncertainties
|
|
71
|
-
|
|
72
|
-
## Application Modes
|
|
73
|
-
|
|
74
|
-
**Explicit**: Use visible thought markers when complexity warrants visible reasoning or user requests breakdown.
|
|
75
|
-
|
|
76
|
-
**Implicit**: Apply methodology internally for routine problem-solving where thinking aids accuracy without cluttering response.
|
|
77
|
-
|
|
78
|
-
## Scripts (Optional)
|
|
79
|
-
|
|
80
|
-
Optional scripts for deterministic validation/tracking:
|
|
81
|
-
- `scripts/process-thought.js` - Validate & track thoughts with history
|
|
82
|
-
- `scripts/format-thought.js` - Format for display (box/markdown/simple)
|
|
83
|
-
|
|
84
|
-
See README.md for usage examples. Use when validation/persistence needed; otherwise apply methodology directly.
|
|
85
|
-
|
|
86
|
-
## References
|
|
87
|
-
|
|
88
|
-
Load when deeper understanding needed:
|
|
89
|
-
- `references/core-patterns.md` - Revision & branching patterns
|
|
90
|
-
- `references/examples-api.md` - API design example
|
|
91
|
-
- `references/examples-debug.md` - Debugging example
|
|
92
|
-
- `references/examples-architecture.md` - Architecture decision example
|
|
93
|
-
- `references/advanced-techniques.md` - Spiral refinement, hypothesis testing, convergence
|
|
94
|
-
- `references/advanced-strategies.md` - Uncertainty, revision cascades, meta-thinking
|
package/skills/ship/SKILL.md
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: ship
|
|
3
|
-
description: "Ship pipeline: merge main, test, review, commit, push, PR. Single command from feature branch to PR URL. Use for shipping official releases to main/master or beta releases to dev/beta branches."
|
|
4
|
-
argument-hint: "[official|beta] [--skip-tests] [--skip-review] [--skip-journal] [--skip-docs] [--dry-run]"
|
|
5
|
-
license: MIT
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Ship: Unified Ship Pipeline
|
|
9
|
-
|
|
10
|
-
Single command to ship a feature branch. Fully automated — only stops for test failures, critical review issues, or major version bumps.
|
|
11
|
-
|
|
12
|
-
**Inspired by:** gstack `/ship` by Garry Tan. Adapted for framework-agnostic, multi-language support.
|
|
13
|
-
|
|
14
|
-
## Arguments
|
|
15
|
-
|
|
16
|
-
| Flag | Effect |
|
|
17
|
-
|------|--------|
|
|
18
|
-
| `official` | Ship to default branch (main/master). Full pipeline with docs + journal |
|
|
19
|
-
| `beta` | Ship to dev/beta branch. Lighter pipeline, skip docs update |
|
|
20
|
-
| (none) | Auto-detect: if base branch is main/master → official, else → beta |
|
|
21
|
-
| `--skip-tests` | Skip test step (use when tests already passed) |
|
|
22
|
-
| `--skip-review` | Skip pre-landing review step |
|
|
23
|
-
| `--skip-journal` | Skip journal writing step |
|
|
24
|
-
| `--skip-docs` | Skip docs update step |
|
|
25
|
-
| `--dry-run` | Show what would happen without executing |
|
|
26
|
-
|
|
27
|
-
## Ship Mode Detection
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
If argument = "official" → target = main/master (auto-detect default branch)
|
|
31
|
-
If argument = "beta" → target = dev/beta (auto-detect dev branch)
|
|
32
|
-
If no argument → infer from current branch naming:
|
|
33
|
-
- feature/* hotfix/* bugfix/* → official (target main)
|
|
34
|
-
- dev/* beta/* experiment/* → beta (target dev/beta)
|
|
35
|
-
- unclear → asking the user
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## When to Stop (blocking)
|
|
39
|
-
|
|
40
|
-
- On target branch already → abort
|
|
41
|
-
- Merge conflicts that can't be auto-resolved → stop, show conflicts
|
|
42
|
-
- Test failures → stop, show failures
|
|
43
|
-
- Critical review issues → asking the user per issue
|
|
44
|
-
- Major/minor version bump needed → asking the user
|
|
45
|
-
|
|
46
|
-
## When NOT to Stop
|
|
47
|
-
|
|
48
|
-
- Uncommitted changes → always include them
|
|
49
|
-
- Patch version bump → auto-decide
|
|
50
|
-
- Changelog content → auto-generate
|
|
51
|
-
- Commit message → auto-compose
|
|
52
|
-
- No version file → skip version step silently
|
|
53
|
-
- No changelog → skip changelog step silently
|
|
54
|
-
|
|
55
|
-
## Pipeline
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
Step 1: Pre-flight → Branch check, mode detection, status, diff analysis
|
|
59
|
-
Step 2: Link Issues → Find/create related GitHub issues
|
|
60
|
-
Step 3: Merge target → Fetch + merge origin/<target-branch>
|
|
61
|
-
Step 4: Run tests → Auto-detect test runner, run, check results
|
|
62
|
-
Step 5: Review → Two-pass checklist review (critical + informational)
|
|
63
|
-
Step 6: Version bump → Auto-detect version file, bump patch/minor
|
|
64
|
-
Step 7: Changelog → Auto-generate from commits + diff
|
|
65
|
-
Step 8: Journal → Write technical journal via /ck-journal
|
|
66
|
-
Step 9: Docs update → Update project docs via /ck-docs update (official only)
|
|
67
|
-
Step 10: Commit → Conventional commit with version/changelog
|
|
68
|
-
Step 11: Push → git push -u origin <branch>
|
|
69
|
-
Step 12: Create PR → gh pr create with structured body + linked issues
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
**Detailed steps:** Load `references/ship-workflow.md`
|
|
73
|
-
**Auto-detection:** Load `references/auto-detect.md`
|
|
74
|
-
**PR template:** Load `references/pr-template.md`
|
|
75
|
-
|
|
76
|
-
## Token Efficiency Rules
|
|
77
|
-
|
|
78
|
-
- Steps 4 (tests) and 5 (review): delegate to `tester` and `code-reviewer` subagents — don't inline
|
|
79
|
-
- Steps 8 (journal) and 9 (docs): run in **background** — don't block pipeline
|
|
80
|
-
- Step 2 (issues): use single `gh` command batch — avoid multiple API calls
|
|
81
|
-
- Skip steps early via flags to save tokens on unnecessary work
|
|
82
|
-
- Beta mode auto-skips: docs update (Step 9)
|
|
83
|
-
- Capture step outputs inline — don't re-read files already in context
|
|
84
|
-
|
|
85
|
-
## Quick Start
|
|
86
|
-
|
|
87
|
-
User says `/ck-ship` → run full pipeline → output PR URL.
|
|
88
|
-
User says `/ck-ship beta` → ship to dev branch with lighter pipeline.
|
|
89
|
-
User says `/ck-ship official` → ship to main with full docs + journal.
|
|
90
|
-
|
|
91
|
-
## Output Format
|
|
92
|
-
|
|
93
|
-
```
|
|
94
|
-
✓ Pre-flight: branch feature/foo, 5 commits, +200/-50 lines (mode: official)
|
|
95
|
-
✓ Issues: linked #42, created #43
|
|
96
|
-
✓ Merged: origin/main (up to date)
|
|
97
|
-
✓ Tests: 42 passed, 0 failed
|
|
98
|
-
✓ Review: 0 critical, 2 informational
|
|
99
|
-
✓ Version: 1.2.3 → 1.2.4
|
|
100
|
-
✓ Changelog: updated
|
|
101
|
-
✓ Journal: written (background)
|
|
102
|
-
✓ Docs: updated (background)
|
|
103
|
-
✓ Committed: feat(auth): add OAuth2 login flow
|
|
104
|
-
✓ Pushed: origin/feature/foo
|
|
105
|
-
✓ PR: https://github.com/org/repo/pull/123 (linked: #42, #43)
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Important Rules
|
|
109
|
-
|
|
110
|
-
- **Never skip tests** (unless `--skip-tests`). If tests fail, stop.
|
|
111
|
-
- **Never force push.** Regular `git push` only.
|
|
112
|
-
- **Never ask for confirmation** except for critical review issues and major/minor version bumps.
|
|
113
|
-
- **Auto-detect everything.** Test runner, version file, changelog format, target branch — detect from project files.
|
|
114
|
-
- **Framework-agnostic.** Works for Node, Python, Rust, Go, Ruby, Java, or any project with a test command.
|
|
115
|
-
- **Subagent delegation.** Use `tester` for tests, `code-reviewer` for review, `journal-writer` for journal, `docs-manager` for docs. Don't inline.
|
|
116
|
-
- **Background tasks.** Journal and docs run in background to not block the pipeline.
|
|
@@ -1,241 +0,0 @@
|
|
|
1
|
-
# Ship Workflow — Detailed Steps
|
|
2
|
-
|
|
3
|
-
## Step 1: Pre-flight
|
|
4
|
-
|
|
5
|
-
1. Check current branch: `git branch --show-current`
|
|
6
|
-
- If on target branch (main/master/dev): **ABORT** — "Ship from a feature branch, not the target branch."
|
|
7
|
-
2. Determine ship mode from arguments:
|
|
8
|
-
- `official` → target = auto-detect default branch (main/master)
|
|
9
|
-
- `beta` → target = auto-detect dev branch (dev/beta/develop)
|
|
10
|
-
- No argument → infer from branch name:
|
|
11
|
-
- `feature/* hotfix/* bugfix/*` → official
|
|
12
|
-
- `dev/* beta/* experiment/*` → beta
|
|
13
|
-
- Unclear → asking the user with options: "Official (main)", "Beta (dev)"
|
|
14
|
-
3. Auto-detect target branch:
|
|
15
|
-
```bash
|
|
16
|
-
# For official: detect default branch
|
|
17
|
-
git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@'
|
|
18
|
-
# Fallback
|
|
19
|
-
git rev-parse --verify origin/main 2>/dev/null && echo "main" || echo "master"
|
|
20
|
-
|
|
21
|
-
# For beta: detect dev branch
|
|
22
|
-
for b in dev beta develop; do
|
|
23
|
-
git rev-parse --verify origin/$b 2>/dev/null && echo "$b" && break
|
|
24
|
-
done
|
|
25
|
-
```
|
|
26
|
-
4. Run `git status` (never use `-uall`). Uncommitted changes are always included.
|
|
27
|
-
5. Run `git diff <target>...HEAD --stat` and `git log <target>..HEAD --oneline` to understand what's being shipped.
|
|
28
|
-
6. If `--dry-run`: output what would happen at each step and stop here.
|
|
29
|
-
|
|
30
|
-
## Step 2: Link Issues
|
|
31
|
-
|
|
32
|
-
Find or create related GitHub issues for traceability.
|
|
33
|
-
|
|
34
|
-
1. Search for related open issues by keywords from branch name and commit messages:
|
|
35
|
-
```bash
|
|
36
|
-
# Extract keywords from branch name
|
|
37
|
-
BRANCH=$(git branch --show-current)
|
|
38
|
-
KEYWORDS=$(echo "$BRANCH" | sed 's/[^a-zA-Z0-9]/ /g' | tr '[:upper:]' '[:lower:]')
|
|
39
|
-
|
|
40
|
-
# Search existing issues
|
|
41
|
-
gh issue list --state open --limit 10 --search "$KEYWORDS"
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
2. Also check if any issues are referenced in commit messages:
|
|
45
|
-
```bash
|
|
46
|
-
git log <target>..HEAD --oneline | grep -oE '#[0-9]+' | sort -u
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
3. **If related issues found:** Note issue numbers for PR linking.
|
|
50
|
-
|
|
51
|
-
4. **If NO related issues found:** Create a new issue with structured format:
|
|
52
|
-
```bash
|
|
53
|
-
gh issue create --title "<type>: <summary from commits>" --body "$(cat <<'EOF'
|
|
54
|
-
## Problem Statement
|
|
55
|
-
<infer from diff and commit messages>
|
|
56
|
-
|
|
57
|
-
## Proposal
|
|
58
|
-
<summarize the implementation approach>
|
|
59
|
-
|
|
60
|
-
## How It Works
|
|
61
|
-
<describe key changes with bullet points>
|
|
62
|
-
|
|
63
|
-
### Architecture
|
|
64
|
-
```
|
|
65
|
-
<ASCII diagram of component interactions>
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
## Challenges
|
|
69
|
-
- <potential edge cases or risks>
|
|
70
|
-
|
|
71
|
-
## Plan & Phases
|
|
72
|
-
- [x] Implementation complete
|
|
73
|
-
- [x] Tests passing
|
|
74
|
-
- [ ] Code review approved
|
|
75
|
-
- [ ] Merged to <target>
|
|
76
|
-
|
|
77
|
-
## Human Review Tasks
|
|
78
|
-
- [ ] Verify business logic correctness
|
|
79
|
-
- [ ] Check for edge cases not covered by tests
|
|
80
|
-
- [ ] Validate UX/API contract changes (if any)
|
|
81
|
-
EOF
|
|
82
|
-
)"
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
5. Store issue numbers for Step 12 (PR creation).
|
|
86
|
-
|
|
87
|
-
## Step 3: Merge target branch
|
|
88
|
-
|
|
89
|
-
Fetch and merge so tests run against the merged state:
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
git fetch origin <target> && git merge origin/<target> --no-edit
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
- **If merge conflicts:** Try auto-resolve simple ones (lockfiles, version files). For complex conflicts, **STOP** and show them.
|
|
96
|
-
- **If already up to date:** Continue silently.
|
|
97
|
-
|
|
98
|
-
## Step 4: Run Tests
|
|
99
|
-
|
|
100
|
-
**Skip if:** `--skip-tests` flag.
|
|
101
|
-
|
|
102
|
-
1. Auto-detect test command (see `auto-detect.md`)
|
|
103
|
-
2. Delegate to `tester` subagent — don't inline test execution
|
|
104
|
-
3. Check pass/fail from agent result
|
|
105
|
-
|
|
106
|
-
- **If any test fails:** Show failures and **STOP**. Do not proceed.
|
|
107
|
-
- **If all pass:** Note counts briefly and continue.
|
|
108
|
-
- **If no test runner detected:** Use asking the user — "No test runner detected. Skip tests or provide command?"
|
|
109
|
-
|
|
110
|
-
## Step 5: Pre-Landing Review
|
|
111
|
-
|
|
112
|
-
**Skip if:** `--skip-review` flag.
|
|
113
|
-
|
|
114
|
-
1. Run `git diff origin/<target>` to get the full diff
|
|
115
|
-
2. Delegate to `code-reviewer` subagent with the diff
|
|
116
|
-
3. Two-pass model:
|
|
117
|
-
- **Pass 1 (CRITICAL):** Security, injection, race conditions, auth bypass
|
|
118
|
-
- **Pass 2 (INFORMATIONAL):** Dead code, magic numbers, test gaps, style
|
|
119
|
-
|
|
120
|
-
4. **Output findings:**
|
|
121
|
-
```
|
|
122
|
-
Pre-Landing Review: N issues (X critical, Y informational)
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
5. **If critical issues found:** For EACH critical issue, ask the user:
|
|
126
|
-
- Problem description with `file:line`
|
|
127
|
-
- Recommended fix
|
|
128
|
-
- Options: A) Fix now (recommended), B) Acknowledge and ship, C) False positive — skip
|
|
129
|
-
|
|
130
|
-
6. **If user chose Fix (A):** Apply fixes, commit fixed files, then **re-run tests** (Step 4) before continuing.
|
|
131
|
-
7. **If only informational:** Include in PR body, continue.
|
|
132
|
-
8. **If no issues:** Output "No issues found." and continue.
|
|
133
|
-
|
|
134
|
-
## Step 6: Version Bump (conditional)
|
|
135
|
-
|
|
136
|
-
1. Auto-detect version source (see `auto-detect.md`)
|
|
137
|
-
2. If no version file found: **skip silently**
|
|
138
|
-
3. Auto-decide bump level from diff size:
|
|
139
|
-
- **< 50 lines:** patch bump
|
|
140
|
-
- **50+ lines:** patch bump (default safe choice)
|
|
141
|
-
- **Major feature or breaking change:** Use asking the user — "This looks like a significant change. Bump minor or patch?"
|
|
142
|
-
4. For beta mode: use prerelease suffix (e.g., `1.2.4-beta.1`)
|
|
143
|
-
5. Write new version to detected file
|
|
144
|
-
|
|
145
|
-
## Step 7: Changelog (conditional)
|
|
146
|
-
|
|
147
|
-
1. Check for CHANGELOG.md or CHANGES.md
|
|
148
|
-
2. If not found: **skip silently**
|
|
149
|
-
3. Auto-generate entry from ALL commits on branch:
|
|
150
|
-
- `git log <target>..HEAD --oneline` for commit list
|
|
151
|
-
- `git diff <target>...HEAD` for full diff context
|
|
152
|
-
4. Categorize into: Added, Changed, Fixed, Removed
|
|
153
|
-
5. Insert after file header, dated today
|
|
154
|
-
6. Format: `## [X.Y.Z] - YYYY-MM-DD`
|
|
155
|
-
|
|
156
|
-
**Do NOT ask user to describe changes.** Infer from diff and commits.
|
|
157
|
-
|
|
158
|
-
## Step 8: Journal (background)
|
|
159
|
-
|
|
160
|
-
**Skip if:** `--skip-journal` flag.
|
|
161
|
-
|
|
162
|
-
Write a technical journal entry capturing this ship session. Run as **background task** to not block pipeline.
|
|
163
|
-
|
|
164
|
-
1. Invoke `/ck-journal` skill via `journal-writer` subagent in background:
|
|
165
|
-
- Topic: summary of shipped changes (from commit messages + diff stats)
|
|
166
|
-
- Include: what was shipped, key decisions, technical challenges encountered
|
|
167
|
-
- Output: saved to `./docs/journals/` directory
|
|
168
|
-
2. Don't wait for completion — continue to next step immediately.
|
|
169
|
-
|
|
170
|
-
## Step 9: Docs Update (conditional, background)
|
|
171
|
-
|
|
172
|
-
**Skip if:** `--skip-docs` flag OR ship mode is `beta`.
|
|
173
|
-
|
|
174
|
-
Update project documentation for official releases. Run as **background task**.
|
|
175
|
-
|
|
176
|
-
1. Invoke `/ck-docs update` skill via `docs-manager` subagent in background:
|
|
177
|
-
- Analyzes code changes since last release
|
|
178
|
-
- Updates relevant docs in `./docs/` directory
|
|
179
|
-
2. Don't wait for completion — continue to next step immediately.
|
|
180
|
-
|
|
181
|
-
## Step 10: Commit
|
|
182
|
-
|
|
183
|
-
1. Stage all changes: `git add -A`
|
|
184
|
-
2. Security check: scan staged diff for secrets (API keys, tokens, passwords)
|
|
185
|
-
- If secrets found: **STOP**, warn user, suggest `.gitignore`
|
|
186
|
-
3. Compose commit message:
|
|
187
|
-
- Format: `type(scope): description`
|
|
188
|
-
- Infer type from changes (feat/fix/refactor/chore)
|
|
189
|
-
- If version + changelog present, include in same commit
|
|
190
|
-
4. Commit:
|
|
191
|
-
|
|
192
|
-
```bash
|
|
193
|
-
git commit -m "$(cat <<'EOF'
|
|
194
|
-
type(scope): description
|
|
195
|
-
|
|
196
|
-
Brief body describing the changes.
|
|
197
|
-
EOF
|
|
198
|
-
)"
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
## Step 11: Push
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
git push -u origin $(git branch --show-current)
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
- **Never force push.**
|
|
208
|
-
- If push rejected: suggest `git pull --rebase` and retry once.
|
|
209
|
-
|
|
210
|
-
## Step 12: Create PR
|
|
211
|
-
|
|
212
|
-
Check if `gh` CLI is available:
|
|
213
|
-
```bash
|
|
214
|
-
which gh 2>/dev/null || echo "MISSING"
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
If missing: output "Install GitHub CLI (gh) to auto-create PRs" and stop after push.
|
|
218
|
-
|
|
219
|
-
Create PR targeting the correct branch:
|
|
220
|
-
```bash
|
|
221
|
-
gh pr create --base <target-branch> --title "<type>: <summary>" --body "$(cat <<'EOF'
|
|
222
|
-
<PR body from pr-template.md>
|
|
223
|
-
EOF
|
|
224
|
-
)"
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
**Link issues** collected from Step 2:
|
|
228
|
-
```bash
|
|
229
|
-
# If issues were found/created, add closing keywords in PR body
|
|
230
|
-
# e.g., "Closes #42, Relates to #43"
|
|
231
|
-
```
|
|
232
|
-
|
|
233
|
-
**Output the PR URL** — this is the final output the user sees.
|
|
234
|
-
|
|
235
|
-
If PR already exists for this branch, update it instead:
|
|
236
|
-
```bash
|
|
237
|
-
gh pr edit --title "<type>: <summary>" --body "$(cat <<'EOF'
|
|
238
|
-
<PR body>
|
|
239
|
-
EOF
|
|
240
|
-
)"
|
|
241
|
-
```
|
package/skills/test/SKILL.md
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: test
|
|
3
|
-
description: "Run unit, integration, e2e, and UI tests. Use for test execution, coverage analysis, build verification, visual regression, and QA reports."
|
|
4
|
-
argument-hint: "[context] OR ui [url]"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Testing & Quality Assurance
|
|
8
|
-
|
|
9
|
-
Comprehensive testing framework covering code-level testing (unit, integration, e2e), UI/visual testing via browser automation, coverage analysis, and structured QA reporting.
|
|
10
|
-
|
|
11
|
-
## Default (No Arguments)
|
|
12
|
-
|
|
13
|
-
If invoked with context (test scope), proceed with testing. If invoked WITHOUT arguments, ask the user to present available test operations:
|
|
14
|
-
|
|
15
|
-
| Operation | Description |
|
|
16
|
-
|-----------|-------------|
|
|
17
|
-
| `(default)` | Run unit/integration/e2e tests |
|
|
18
|
-
| `ui` | Run UI tests on a website |
|
|
19
|
-
|
|
20
|
-
Present as options by asking the user with header "Test Operation", question "What would you like to do?".
|
|
21
|
-
|
|
22
|
-
## Core Principle
|
|
23
|
-
|
|
24
|
-
**NEVER IGNORE FAILING TESTS.** Fix root causes, not symptoms. No mocks/cheats/tricks to pass builds.
|
|
25
|
-
|
|
26
|
-
## When to Use
|
|
27
|
-
|
|
28
|
-
- **After implementation**: Validate new features or bug fixes
|
|
29
|
-
- **Coverage checks**: Ensure coverage meets project thresholds (80%+)
|
|
30
|
-
- **UI verification**: Visual regression, responsive layout, accessibility
|
|
31
|
-
- **Build validation**: Verify build process, dependencies, CI/CD compatibility
|
|
32
|
-
- **Pre-commit/push**: Final quality gate
|
|
33
|
-
|
|
34
|
-
## Workflows
|
|
35
|
-
|
|
36
|
-
### 1. Code Testing (`references/test-execution-workflow.md`)
|
|
37
|
-
|
|
38
|
-
Execute test suites, analyze results, generate coverage. Supports JS/TS (Jest/Vitest/Mocha), Python (pytest), Go, Rust, Flutter. Includes working process, quality standards, and tool commands.
|
|
39
|
-
|
|
40
|
-
**Load when:** Running unit/integration/e2e tests, checking coverage, validating builds
|
|
41
|
-
|
|
42
|
-
### 2. UI Testing (`references/ui-testing-workflow.md`)
|
|
43
|
-
|
|
44
|
-
Browser-based visual testing via `chrome-devtools` (if available) skill. Screenshots, responsive checks, accessibility audits, form automation, console error collection. Includes auth injection for protected routes.
|
|
45
|
-
|
|
46
|
-
**Load when:** Visual regression testing, UI bugs, responsive layout checks, accessibility audits
|
|
47
|
-
|
|
48
|
-
### 3. Report Format (`references/report-format.md`)
|
|
49
|
-
|
|
50
|
-
Structured QA report template: test results overview, coverage metrics, failed tests, performance, build status, recommendations.
|
|
51
|
-
|
|
52
|
-
**Load when:** Generating test summary reports
|
|
53
|
-
|
|
54
|
-
## Quick Reference
|
|
55
|
-
|
|
56
|
-
```
|
|
57
|
-
Code tests → test-execution-workflow.md
|
|
58
|
-
npm test / pytest / go test / cargo test / flutter test
|
|
59
|
-
Coverage: npm run test:coverage / pytest --cov
|
|
60
|
-
|
|
61
|
-
UI tests → ui-testing-workflow.md
|
|
62
|
-
Screenshots, responsive, a11y, forms, console errors
|
|
63
|
-
Auth: inject-auth.js for protected routes
|
|
64
|
-
|
|
65
|
-
Reports → report-format.md
|
|
66
|
-
Structured QA summary with metrics & recommendations
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
## Working Process
|
|
70
|
-
|
|
71
|
-
1. Identify testing scope from recent changes or requirements
|
|
72
|
-
2. Run typecheck/analyze commands to catch syntax errors first
|
|
73
|
-
3. Execute appropriate test suites
|
|
74
|
-
4. Analyze results — focus on failures
|
|
75
|
-
5. Generate coverage reports if applicable
|
|
76
|
-
6. For frontend: run UI tests via `chrome-devtools` (if available) skill
|
|
77
|
-
7. Produce structured summary report
|
|
78
|
-
|
|
79
|
-
## Tools Integration
|
|
80
|
-
|
|
81
|
-
- **Test runners**: Jest, Vitest, Mocha, pytest, go test, cargo test, flutter test
|
|
82
|
-
- **Coverage**: Istanbul/c8/nyc, pytest-cov, go cover
|
|
83
|
-
- **Browser**: `chrome-devtools` (if available) skill for UI testing (screenshots, ARIA, console, network)
|
|
84
|
-
- **Analysis**: `ai-multimodal` (if available) skill for screenshot analysis
|
|
85
|
-
- **Debugging**: `debug` skill when tests reveal bugs requiring investigation
|
|
86
|
-
- **Thinking**: `sequential-thinking` skill for complex test failure analysis
|
|
87
|
-
|
|
88
|
-
## Quality Standards
|
|
89
|
-
|
|
90
|
-
- All critical paths must have test coverage
|
|
91
|
-
- Validate happy path AND error scenarios
|
|
92
|
-
- Ensure test isolation — no interdependencies
|
|
93
|
-
- Tests must be deterministic and reproducible
|
|
94
|
-
- Clean up test data after execution
|
|
95
|
-
- Never ignore failing tests to pass the build
|
|
96
|
-
|
|
97
|
-
## Report Output
|
|
98
|
-
**IMPORTANT:** Invoke "/ck-project-organization" skill to organize the outputs.
|
|
99
|
-
|
|
100
|
-
Use naming pattern from `## Naming` section injected by hooks.
|
|
101
|
-
|
|
102
|
-
## Team Mode
|
|
103
|
-
|
|
104
|
-
When operating as teammate:
|
|
105
|
-
1. On start: check `TaskList`, claim assigned/next unblocked task via `TaskUpdate`
|
|
106
|
-
2. Read full task description via `TaskGet` before starting
|
|
107
|
-
3. Wait for blocked tasks (implementation) to complete before testing
|
|
108
|
-
4. Respect file ownership — only create/edit test files assigned
|
|
109
|
-
5. When done: `TaskUpdate(status: "completed")` then `SendMessage` results to lead
|
|
110
|
-
|
|
111
|
-
**Fallback:** Task tools (`TaskList`/`TaskUpdate`/`TaskGet`) are CLI-only — unavailable in VSCode extension. If they error, use `TodoWrite` for progress tracking and coordinate via `SendMessage` only.
|