cokit-cli 1.2.7 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -31
- package/agents/ck-brainstormer.agent.md +92 -0
- package/agents/ck-code-reviewer.agent.md +145 -0
- package/agents/ck-code-simplifier.agent.md +41 -0
- package/agents/ck-debugger.agent.md +142 -0
- package/agents/ck-docs-manager.agent.md +209 -0
- package/agents/ck-fullstack-developer.agent.md +106 -0
- package/agents/ck-git-manager.agent.md +7 -0
- package/agents/ck-planner.agent.md +104 -0
- package/agents/ck-project-manager.agent.md +24 -0
- package/agents/ck-researcher.agent.md +48 -0
- package/agents/ck-tester.agent.md +139 -0
- package/agents/ck-ui-ux-designer.agent.md +200 -0
- package/docs/README.md +8 -16
- package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
- package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
- package/docs/code-standards.md +1 -2
- package/docs/codebase-summary.md +35 -66
- package/docs/cokit-commands-usage-guide.md +27 -73
- package/docs/cokit-sync-and-maintenance-guide.md +43 -191
- package/docs/copilot-processing-flow.md +18 -18
- package/docs/migration-guide.md +14 -14
- package/docs/project-overview-pdr.md +5 -6
- package/docs/project-roadmap.md +12 -14
- package/docs/system-architecture.md +13 -17
- package/docs/upstream-porting-rules.md +182 -0
- package/package.json +3 -4
- package/prompts/ck-ask.prompt.md +0 -1
- package/prompts/ck-bootstrap.prompt.md +12 -15
- package/prompts/ck-brainstorm.prompt.md +0 -1
- package/prompts/ck-cook.prompt.md +11 -12
- package/prompts/ck-debug.prompt.md +0 -1
- package/prompts/ck-deploy.prompt.md +22 -0
- package/prompts/ck-docs.prompt.md +0 -1
- package/prompts/ck-fix-fast.prompt.md +1 -1
- package/prompts/ck-fix-hard.prompt.md +2 -2
- package/prompts/ck-frontend.prompt.md +20 -0
- package/prompts/ck-help.prompt.md +0 -1
- package/prompts/ck-plan-fast.prompt.md +1 -4
- package/prompts/ck-plan-hard.prompt.md +3 -6
- package/prompts/ck-plan-red-team.prompt.md +1 -1
- package/prompts/ck-plan.prompt.md +0 -3
- package/prompts/ck-project.prompt.md +20 -0
- package/prompts/ck-review.prompt.md +4 -7
- package/prompts/ck-scout.prompt.md +0 -1
- package/prompts/ck-security.prompt.md +22 -0
- package/prompts/ck-ship.prompt.md +22 -0
- package/prompts/ck-test.prompt.md +1 -3
- package/prompts/ck-watzup.prompt.md +0 -1
- package/skills/ck-agent-browser/SKILL.md +294 -0
- package/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/ck-backend-development/SKILL.md +94 -0
- package/skills/ck-bootstrap/SKILL.md +102 -0
- package/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/skills/ck-brainstorm/SKILL.md +122 -0
- package/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/skills/ck-code-review/SKILL.md +196 -0
- package/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/skills/ck-code-review/references/checklists/api.md +52 -0
- package/skills/ck-code-review/references/checklists/base.md +100 -0
- package/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/skills/ck-common/README.md +110 -0
- package/skills/ck-common/api_key_helper.py +381 -0
- package/skills/ck-context-engineering/SKILL.md +107 -0
- package/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/skills/ck-cook/README.md +86 -0
- package/skills/ck-cook/SKILL.md +155 -0
- package/skills/ck-cook/references/intent-detection.md +101 -0
- package/skills/ck-cook/references/review-cycle.md +75 -0
- package/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/skills/ck-cook/references/workflow-steps.md +192 -0
- package/skills/ck-databases/SKILL.md +84 -0
- package/skills/ck-databases/db-design.md +188 -0
- package/skills/ck-debug/SKILL.md +120 -0
- package/skills/ck-debug/references/frontend-verification.md +103 -0
- package/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/skills/ck-debug/references/reporting-standards.md +122 -0
- package/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/skills/ck-deploy/SKILL.md +154 -0
- package/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/skills/ck-deploy/references/platforms/render.md +39 -0
- package/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/skills/ck-devops/SKILL.md +96 -0
- package/skills/ck-docs-seeker/SKILL.md +97 -0
- package/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/skills/ck-fix/SKILL.md +209 -0
- package/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/skills/ck-fix/references/mode-selection.md +46 -0
- package/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/skills/ck-fix/references/prevention-gate.md +87 -0
- package/skills/ck-fix/references/review-cycle.md +77 -0
- package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/skills/ck-fix/references/task-orchestration.md +110 -0
- package/skills/ck-fix/references/workflow-ci.md +28 -0
- package/skills/ck-fix/references/workflow-deep.md +154 -0
- package/skills/ck-fix/references/workflow-logs.md +72 -0
- package/skills/ck-fix/references/workflow-quick.md +82 -0
- package/skills/ck-fix/references/workflow-standard.md +120 -0
- package/skills/ck-fix/references/workflow-test.md +75 -0
- package/skills/ck-fix/references/workflow-ui.md +72 -0
- package/skills/ck-frontend-design/SKILL.md +109 -0
- package/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/skills/ck-frontend-development/SKILL.md +400 -0
- package/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/skills/ck-frontend-development/resources/performance.md +406 -0
- package/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/skills/ck-git/SKILL.md +113 -0
- package/skills/ck-git/references/commit-standards.md +46 -0
- package/skills/ck-git/references/workflow-commit.md +58 -0
- package/skills/ck-git/references/workflow-merge.md +48 -0
- package/skills/ck-git/references/workflow-pr.md +58 -0
- package/skills/ck-git/references/workflow-push.md +52 -0
- package/skills/ck-mcp-management/README.md +219 -0
- package/skills/ck-mcp-management/SKILL.md +210 -0
- package/skills/ck-mcp-management/references/configuration.md +114 -0
- package/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/skills/ck-mcp-management/scripts/dist/mcp-client.js +183 -0
- package/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/skills/ck-planning/SKILL.md +194 -0
- package/skills/ck-planning/references/archive-workflow.md +53 -0
- package/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/skills/ck-planning/references/output-standards.md +145 -0
- package/skills/ck-planning/references/plan-organization.md +182 -0
- package/skills/ck-planning/references/red-team-personas.md +69 -0
- package/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/skills/ck-planning/references/research-phase.md +49 -0
- package/skills/ck-planning/references/scope-challenge.md +90 -0
- package/skills/ck-planning/references/task-management.md +134 -0
- package/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/skills/ck-planning/references/validate-workflow.md +65 -0
- package/skills/ck-planning/references/workflow-modes.md +154 -0
- package/skills/ck-problem-solving/SKILL.md +96 -0
- package/skills/ck-project-management/SKILL.md +133 -0
- package/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/skills/ck-project-management/references/task-operations.md +87 -0
- package/skills/ck-repomix/SKILL.md +248 -0
- package/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/skills/ck-repomix/scripts/README.md +179 -0
- package/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/skills/ck-research/SKILL.md +172 -0
- package/skills/ck-scout/SKILL.md +91 -0
- package/skills/ck-scout/references/external-scouting.md +140 -0
- package/skills/ck-scout/references/internal-scouting.md +119 -0
- package/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/skills/ck-security/SKILL.md +139 -0
- package/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/skills/ck-sequential-thinking/README.md +183 -0
- package/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/skills/ck-sequential-thinking/package.json +31 -0
- package/skills/ck-ship/SKILL.md +116 -0
- package/skills/ck-ship/references/auto-detect.md +103 -0
- package/skills/ck-ship/references/pr-template.md +90 -0
- package/skills/ck-ship/references/ship-workflow.md +241 -0
- package/skills/ck-test/SKILL.md +111 -0
- package/skills/ck-test/references/report-format.md +58 -0
- package/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/skills/ck-ui-styling/SKILL.md +321 -0
- package/skills/ck-web-testing/SKILL.md +96 -0
- package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
- package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
- package/templates/repo/.github/agents/ck-code-simplifier.agent.md +41 -0
- package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
- package/templates/repo/.github/agents/ck-docs-manager.agent.md +209 -0
- package/templates/repo/.github/agents/ck-fullstack-developer.agent.md +106 -0
- package/templates/repo/.github/agents/ck-git-manager.agent.md +7 -0
- package/templates/repo/.github/agents/ck-planner.agent.md +104 -0
- package/templates/repo/.github/agents/ck-project-manager.agent.md +24 -0
- package/templates/repo/.github/agents/ck-researcher.agent.md +48 -0
- package/templates/repo/.github/agents/ck-tester.agent.md +139 -0
- package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
- package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -15
- package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -12
- package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
- package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -4
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -6
- package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-review.prompt.md +4 -7
- package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-test.prompt.md +1 -3
- package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
- package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
- package/templates/repo/.github/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
- package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/api.md +52 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/base.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/templates/repo/.github/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/templates/repo/.github/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/templates/repo/.github/skills/ck-common/README.md +110 -0
- package/templates/repo/.github/skills/ck-common/api_key_helper.py +381 -0
- package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/templates/repo/.github/skills/ck-cook/README.md +86 -0
- package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
- package/templates/repo/.github/skills/ck-cook/references/intent-detection.md +101 -0
- package/templates/repo/.github/skills/ck-cook/references/review-cycle.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
- package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
- package/templates/repo/.github/skills/ck-databases/db-design.md +188 -0
- package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
- package/templates/repo/.github/skills/ck-debug/references/frontend-verification.md +103 -0
- package/templates/repo/.github/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/templates/repo/.github/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/templates/repo/.github/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/templates/repo/.github/skills/ck-debug/references/reporting-standards.md +122 -0
- package/templates/repo/.github/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/render.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
- package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
- package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/ck-fix/references/mode-selection.md +46 -0
- package/templates/repo/.github/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/ck-fix/references/review-cycle.md +77 -0
- package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
- package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +406 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
- package/templates/repo/.github/skills/ck-git/references/commit-standards.md +46 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
- package/templates/repo/.github/skills/ck-mcp-management/README.md +219 -0
- package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +114 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
- package/templates/repo/.github/skills/ck-planning/references/archive-workflow.md +53 -0
- package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/templates/repo/.github/skills/ck-planning/references/output-standards.md +145 -0
- package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +182 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-personas.md +69 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
- package/templates/repo/.github/skills/ck-planning/references/scope-challenge.md +90 -0
- package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/templates/repo/.github/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/templates/repo/.github/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/templates/repo/.github/skills/ck-project-management/references/task-operations.md +87 -0
- package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
- package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/README.md +179 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
- package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
- package/templates/repo/.github/skills/ck-scout/references/external-scouting.md +140 -0
- package/templates/repo/.github/skills/ck-scout/references/internal-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
- package/templates/repo/.github/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package-lock.json +3652 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -0
- package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-ship/references/auto-detect.md +103 -0
- package/templates/repo/.github/skills/ck-ship/references/pr-template.md +90 -0
- package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
- package/templates/repo/.github/skills/ck-test/references/report-format.md +58 -0
- package/templates/repo/.github/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
- package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
- package/agents/brainstormer.agent.md +0 -78
- package/agents/code-reviewer.agent.md +0 -111
- package/agents/code-simplifier.agent.md +0 -46
- package/agents/debugger.agent.md +0 -137
- package/agents/docs-manager.agent.md +0 -217
- package/agents/fullstack-developer.agent.md +0 -96
- package/agents/git-manager.agent.md +0 -10
- package/agents/planner.agent.md +0 -122
- package/agents/researcher.agent.md +0 -46
- package/agents/tester.agent.md +0 -116
- package/agents/ui-ux-designer.agent.md +0 -233
- package/docs/claudekit-porting-rules.md +0 -182
- package/docs/cokit-comprehensive-mapping-guide.md +0 -357
- package/docs/cokit-slides.md +0 -210
- package/docs/cokit-team-presentation.md +0 -354
- package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
- package/prompts/ck-spec-analyze.prompt.md +0 -201
- package/prompts/ck-spec-checklist.prompt.md +0 -308
- package/prompts/ck-spec-clarify.prompt.md +0 -190
- package/prompts/ck-spec-constitution.prompt.md +0 -92
- package/prompts/ck-spec-implement.prompt.md +0 -157
- package/prompts/ck-spec-plan.prompt.md +0 -95
- package/prompts/ck-spec-specify.prompt.md +0 -261
- package/prompts/ck-spec-tasks.prompt.md +0 -181
- package/skills/agent-browser/SKILL.md +0 -291
- package/skills/backend-development/SKILL.md +0 -94
- package/skills/brainstorm/SKILL.md +0 -74
- package/skills/code-review/SKILL.md +0 -193
- package/skills/code-review/references/code-review-reception.md +0 -209
- package/skills/code-review/references/requesting-code-review.md +0 -105
- package/skills/common/README.md +0 -120
- package/skills/common/api_key_helper.py +0 -411
- package/skills/context-engineering/SKILL.md +0 -106
- package/skills/context-engineering/references/context-degradation.md +0 -93
- package/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/skills/cook/README.md +0 -86
- package/skills/cook/SKILL.md +0 -127
- package/skills/cook/references/intent-detection.md +0 -101
- package/skills/cook/references/review-cycle.md +0 -75
- package/skills/cook/references/workflow-steps.md +0 -140
- package/skills/databases/SKILL.md +0 -111
- package/skills/databases/db-design.md +0 -188
- package/skills/debug/SKILL.md +0 -178
- package/skills/devops/SKILL.md +0 -102
- package/skills/docs-seeker/SKILL.md +0 -96
- package/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/skills/docs-seeker/workflows/library-search.md +0 -86
- package/skills/fix/SKILL.md +0 -112
- package/skills/fix/references/complexity-assessment.md +0 -61
- package/skills/fix/references/mode-selection.md +0 -30
- package/skills/fix/references/parallel-exploration.md +0 -77
- package/skills/fix/references/review-cycle.md +0 -77
- package/skills/fix/references/skill-activation-matrix.md +0 -65
- package/skills/fix/references/workflow-ci.md +0 -28
- package/skills/fix/references/workflow-deep.md +0 -91
- package/skills/fix/references/workflow-logs.md +0 -36
- package/skills/fix/references/workflow-quick.md +0 -59
- package/skills/fix/references/workflow-standard.md +0 -86
- package/skills/fix/references/workflow-test.md +0 -36
- package/skills/fix/references/workflow-ui.md +0 -34
- package/skills/frontend-design/SKILL.md +0 -77
- package/skills/frontend-design/references/asset-generation.md +0 -161
- package/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/skills/frontend-design/references/workflow-describe.md +0 -86
- package/skills/frontend-design/references/workflow-quick.md +0 -54
- package/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/skills/git/SKILL.md +0 -99
- package/skills/git/references/commit-standards.md +0 -46
- package/skills/git/references/workflow-commit.md +0 -58
- package/skills/git/references/workflow-merge.md +0 -48
- package/skills/git/references/workflow-pr.md +0 -58
- package/skills/git/references/workflow-push.md +0 -52
- package/skills/mcp-management/README.md +0 -219
- package/skills/mcp-management/SKILL.md +0 -209
- package/skills/mcp-management/references/configuration.md +0 -114
- package/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/skills/mcp-management/scripts/.env.example +0 -10
- package/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/skills/mermaidjs-v11/SKILL.md +0 -115
- package/skills/planning/SKILL.md +0 -163
- package/skills/planning/references/codebase-understanding.md +0 -62
- package/skills/planning/references/output-standards.md +0 -141
- package/skills/planning/references/plan-organization.md +0 -160
- package/skills/planning/references/research-phase.md +0 -49
- package/skills/problem-solving/SKILL.md +0 -95
- package/skills/repomix/SKILL.md +0 -247
- package/skills/repomix/references/usage-patterns.md +0 -232
- package/skills/repomix/scripts/README.md +0 -179
- package/skills/repomix/scripts/repomix_batch.py +0 -455
- package/skills/research/SKILL.md +0 -169
- package/skills/scout/SKILL.md +0 -91
- package/skills/scout/references/external-scouting.md +0 -140
- package/skills/scout/references/internal-scouting.md +0 -119
- package/skills/sequential-thinking/README.md +0 -183
- package/skills/sequential-thinking/SKILL.md +0 -92
- package/skills/sequential-thinking/package.json +0 -31
- package/skills/ui-styling/SKILL.md +0 -319
- package/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/AGENTS.md +0 -103
- package/templates/repo/.github/agents/brainstormer.agent.md +0 -78
- package/templates/repo/.github/agents/code-reviewer.agent.md +0 -111
- package/templates/repo/.github/agents/code-simplifier.agent.md +0 -46
- package/templates/repo/.github/agents/debugger.agent.md +0 -137
- package/templates/repo/.github/agents/docs-manager.agent.md +0 -217
- package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
- package/templates/repo/.github/agents/git-manager.agent.md +0 -10
- package/templates/repo/.github/agents/planner.agent.md +0 -122
- package/templates/repo/.github/agents/researcher.agent.md +0 -46
- package/templates/repo/.github/agents/tester.agent.md +0 -116
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -233
- package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
- package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
- package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
- package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
- package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
- package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
- package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
- package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
- package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -291
- package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
- package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -74
- package/templates/repo/.github/skills/code-review/SKILL.md +0 -193
- package/templates/repo/.github/skills/code-review/references/code-review-reception.md +0 -209
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -105
- package/templates/repo/.github/skills/common/README.md +0 -120
- package/templates/repo/.github/skills/common/api_key_helper.py +0 -411
- package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -106
- package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +0 -93
- package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/templates/repo/.github/skills/cook/README.md +0 -86
- package/templates/repo/.github/skills/cook/SKILL.md +0 -127
- package/templates/repo/.github/skills/cook/references/intent-detection.md +0 -101
- package/templates/repo/.github/skills/cook/references/review-cycle.md +0 -75
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -140
- package/templates/repo/.github/skills/databases/SKILL.md +0 -111
- package/templates/repo/.github/skills/databases/db-design.md +0 -188
- package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
- package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
- package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
- package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
- package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
- package/templates/repo/.github/skills/debug/SKILL.md +0 -178
- package/templates/repo/.github/skills/devops/SKILL.md +0 -102
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -96
- package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +0 -86
- package/templates/repo/.github/skills/fix/SKILL.md +0 -112
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -61
- package/templates/repo/.github/skills/fix/references/mode-selection.md +0 -30
- package/templates/repo/.github/skills/fix/references/parallel-exploration.md +0 -77
- package/templates/repo/.github/skills/fix/references/review-cycle.md +0 -77
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -65
- package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -91
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -59
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -86
- package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -34
- package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -77
- package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +0 -161
- package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -86
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -54
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/templates/repo/.github/skills/git/SKILL.md +0 -99
- package/templates/repo/.github/skills/git/references/commit-standards.md +0 -46
- package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
- package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
- package/templates/repo/.github/skills/mcp-management/README.md +0 -219
- package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -209
- package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
- package/templates/repo/.github/skills/mcp-management/references/configuration.md +0 -114
- package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/templates/repo/.github/skills/mcp-management/scripts/.env.example +0 -10
- package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
- package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
- package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -115
- package/templates/repo/.github/skills/planning/SKILL.md +0 -163
- package/templates/repo/.github/skills/planning/references/codebase-understanding.md +0 -62
- package/templates/repo/.github/skills/planning/references/output-standards.md +0 -141
- package/templates/repo/.github/skills/planning/references/plan-organization.md +0 -160
- package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
- package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -95
- package/templates/repo/.github/skills/repomix/SKILL.md +0 -247
- package/templates/repo/.github/skills/repomix/references/usage-patterns.md +0 -232
- package/templates/repo/.github/skills/repomix/scripts/README.md +0 -179
- package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +0 -455
- package/templates/repo/.github/skills/research/SKILL.md +0 -169
- package/templates/repo/.github/skills/scout/SKILL.md +0 -91
- package/templates/repo/.github/skills/scout/references/external-scouting.md +0 -140
- package/templates/repo/.github/skills/scout/references/internal-scouting.md +0 -119
- package/templates/repo/.github/skills/sequential-thinking/README.md +0 -183
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -92
- package/templates/repo/.github/skills/sequential-thinking/package.json +0 -31
- package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
- package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -319
- package/templates/repo/.github/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
- package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
- package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
- package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
- package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
- package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
- package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
- package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
- package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
- package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
- package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
- package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
- package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
- package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
- package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
- package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
- package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
- package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
- package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
- package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
- package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
- package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
- package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
- package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
- package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
- package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
- package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
- /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
- /package/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/skills/{devops → ck-devops}/.env.example +0 -0
- /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
- /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
## Overview
|
|
4
4
|
```
|
|
5
5
|
┌─────────────────────────────────────────────────────────────┐
|
|
6
|
-
│
|
|
6
|
+
│ SOURCE │
|
|
7
7
|
├─────────────────────────────────────────────────────────────┤
|
|
8
|
-
│
|
|
9
|
-
│ ├── commands/
|
|
10
|
-
│ ├── skills/
|
|
8
|
+
│ Upstream Source │
|
|
9
|
+
│ ├── commands/ │
|
|
10
|
+
│ ├── skills/ │
|
|
11
11
|
│ └── (local install) │
|
|
12
12
|
└─────────────────────────────────────────────────────────────┘
|
|
13
13
|
│
|
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
├─────────────────────────────────────────────────────────────┤
|
|
18
18
|
│ eng/sync.mjs │
|
|
19
19
|
│ ├── Load resource-origins.yml (mappings + ignore list) │
|
|
20
|
-
│ ├── transform-
|
|
21
|
-
│ ├── transform-speckit.mjs → ck-spec-* namespace │
|
|
20
|
+
│ ├── transform-upstream.mjs → ck-* namespace │
|
|
22
21
|
│ ├── patch-navigation.mjs → Add "Suggested Next Steps" │
|
|
23
22
|
│ └── Write to prompts/ │
|
|
24
23
|
└─────────────────────────────────────────────────────────────┘
|
|
@@ -28,7 +27,7 @@
|
|
|
28
27
|
│ OUTPUT │
|
|
29
28
|
├─────────────────────────────────────────────────────────────┤
|
|
30
29
|
│ prompts/ │
|
|
31
|
-
│ ├── ck-*.prompt.md (
|
|
30
|
+
│ ├── ck-*.prompt.md (17 commands) │
|
|
32
31
|
│ └── agents/, skills/, instructions/, collections/ │
|
|
33
32
|
└─────────────────────────────────────────────────────────────┘
|
|
34
33
|
│
|
|
@@ -45,12 +44,11 @@
|
|
|
45
44
|
|
|
46
45
|
### Sync Pipeline
|
|
47
46
|
```
|
|
48
|
-
1.
|
|
49
|
-
2.
|
|
50
|
-
3.
|
|
51
|
-
4.
|
|
52
|
-
5.
|
|
53
|
-
6. Update: resource-origins.yml (timestamps)
|
|
47
|
+
1. Read upstream commands source
|
|
48
|
+
2. Transform: rename, replace $ARGUMENTS, remove model field
|
|
49
|
+
3. Patch: inject navigation footer
|
|
50
|
+
4. Write: prompts/*.prompt.md
|
|
51
|
+
5. Update: resource-origins.yml (timestamps)
|
|
54
52
|
```
|
|
55
53
|
|
|
56
54
|
### CLI Install
|
|
@@ -66,8 +64,7 @@
|
|
|
66
64
|
| Component | File | Purpose |
|
|
67
65
|
|-----------|------|---------|
|
|
68
66
|
| Orchestrator | eng/sync.mjs | Runs full sync pipeline |
|
|
69
|
-
|
|
|
70
|
-
| SpecKit Transform | eng/transform-speckit.mjs | Transform upstream/speckit/ |
|
|
67
|
+
| Upstream Transform | eng/transform-upstream.mjs | Transform upstream commands |
|
|
71
68
|
| Navigation Patch | eng/patch-navigation.mjs | Add cross-command navigation |
|
|
72
69
|
| Config | eng/resource-origins.yml | Mappings, ignore list, navigation |
|
|
73
70
|
|
|
@@ -75,5 +72,4 @@
|
|
|
75
72
|
|
|
76
73
|
| Prefix | Source | Example |
|
|
77
74
|
|--------|--------|---------|
|
|
78
|
-
| `ck-*` |
|
|
79
|
-
| `ck-spec-*` | SpecKit | ck-spec-specify, ck-spec-plan |
|
|
75
|
+
| `ck-*` | Upstream | ck-plan, ck-fix, ck-test |
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# Upstream → CoKit Porting Rules
|
|
2
|
+
|
|
3
|
+
**Purpose:** Definitive reference for porting upstream content to CoKit (GitHub Copilot).
|
|
4
|
+
**Audience:** AI agents and developers performing sync/port operations.
|
|
5
|
+
**Last Updated:** 2026-02-25
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 0. Porting Workflow
|
|
10
|
+
|
|
11
|
+
**IMPORTANT:** Always follow this order when porting from upstream.
|
|
12
|
+
|
|
13
|
+
### Step 1: Inventory CoKit
|
|
14
|
+
Map what CoKit already has — prompts, agents, skills, instructions. This is the source of truth.
|
|
15
|
+
|
|
16
|
+
### Step 2: Diff against upstream
|
|
17
|
+
Compare upstream commands/agents/skills with CoKit inventory. Identify:
|
|
18
|
+
- **Updates** — existing CoKit files that need content sync
|
|
19
|
+
- **New variants** — upstream has a new sub-command (e.g., `/plan:red-team`) → create as `/ck-plan-red-team` variant
|
|
20
|
+
- **New top-level** — entirely new prompt/agent/skill → create in CoKit
|
|
21
|
+
|
|
22
|
+
### Step 3: Verify Copilot compatibility
|
|
23
|
+
Before porting, **websearch** to check if Copilot now supports features that were previously unavailable. Copilot evolves fast — what didn't work last month may work now.
|
|
24
|
+
|
|
25
|
+
Key things to re-check periodically:
|
|
26
|
+
- Subagent spawning & orchestration (`code.visualstudio.com/docs/copilot/agents/subagents`)
|
|
27
|
+
- Agent-to-agent communication (currently NOT supported — may change)
|
|
28
|
+
- Persistent memory API (currently NOT supported — may change)
|
|
29
|
+
- Plan mode / approval flows (currently NOT supported — may change)
|
|
30
|
+
- File ownership / task management APIs (currently NOT supported — may change)
|
|
31
|
+
- New frontmatter fields (check `code.visualstudio.com/docs/copilot/customization/custom-agents`)
|
|
32
|
+
|
|
33
|
+
### Step 4: Apply conversion rules (sections below)
|
|
34
|
+
|
|
35
|
+
### Step 5: Validate with grep patterns (section 9)
|
|
36
|
+
|
|
37
|
+
### Step 6: Update version & docs (section 8)
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 1. Syntax Conversions
|
|
42
|
+
|
|
43
|
+
| Upstream | CoKit | Notes |
|
|
44
|
+
|----------|-------|-------|
|
|
45
|
+
| `$ARGUMENTS` | `${input}` | Copilot prompt variable |
|
|
46
|
+
| `@agent-name` | `` `agent-name` agent `` | No `@` prefix in Copilot |
|
|
47
|
+
| `.claude/` paths | `$HOME/.copilot/` | Global config directory |
|
|
48
|
+
| `~/.claude/` | `$HOME/.copilot/` | Same as above |
|
|
49
|
+
| `subagent` | `agent` | Copilot terminology |
|
|
50
|
+
| Unprefixed skill/agent name | `ck-` prefixed | Namespace consistency |
|
|
51
|
+
|
|
52
|
+
## 2. Command References
|
|
53
|
+
|
|
54
|
+
| Upstream | CoKit | Notes |
|
|
55
|
+
|-----------|-------|-------|
|
|
56
|
+
| `/fix:types` | `/ck-fix-types` | Colon → hyphen |
|
|
57
|
+
| `/fix:tests` | `/ck-fix-test` | Colon → hyphen |
|
|
58
|
+
| `/scout:ext` | `/ck-scout ext` | Colon → space (argument) |
|
|
59
|
+
| `/plan --hard` | `/ck-plan-hard` | Flag → separate command |
|
|
60
|
+
| `/plan --fast` | `/ck-plan-fast` | Flag → separate command |
|
|
61
|
+
| `SlashCommand(/scout)` | `/ck-scout` | Remove `SlashCommand()` wrapper |
|
|
62
|
+
|
|
63
|
+
**New variant?** If upstream adds a new sub-command (e.g., `/plan:red-team`), create it as a variant prompt file in CoKit (`ck-plan-red-team.prompt.md`). Variants don't count toward prompt total.
|
|
64
|
+
|
|
65
|
+
## 3. Tool/API Conversions
|
|
66
|
+
|
|
67
|
+
| Upstream | CoKit | Notes |
|
|
68
|
+
|----------|-------|-------|
|
|
69
|
+
| `AskUserQuestion` | Natural conversation | Just ask the user directly |
|
|
70
|
+
| `Task(subagent_type="X")` | Natural language delegation | Describe what agent should do |
|
|
71
|
+
| `TaskCreate/TaskUpdate/TaskList` | Checklist/todo tracking | No task management API |
|
|
72
|
+
| `SendMessage` | Direct communication | No message passing API |
|
|
73
|
+
| `EnterPlanMode/ExitPlanMode` | N/A | Copilot doesn't have plan mode |
|
|
74
|
+
|
|
75
|
+
**NOTE:** Websearch these before each port session — Copilot may add equivalents.
|
|
76
|
+
|
|
77
|
+
## 4. Frontmatter Fields
|
|
78
|
+
|
|
79
|
+
### Remove (unsupported by Copilot)
|
|
80
|
+
- `name:` — Copilot infers from filename
|
|
81
|
+
- `model:` — Copilot handles model selection
|
|
82
|
+
- `memory:` — No persistent memory API
|
|
83
|
+
- `version:` — Not a valid field
|
|
84
|
+
- `license:` — Not a valid field
|
|
85
|
+
- `scripts:` — Not valid in prompts
|
|
86
|
+
- `handoffs:` — Not valid in prompts
|
|
87
|
+
- `agent_scripts:` — Not valid
|
|
88
|
+
|
|
89
|
+
### Keep/Modify
|
|
90
|
+
- `description:` — Keep, but single line only (no examples)
|
|
91
|
+
- `agent: 'agent'` — Required for agent-mode prompts
|
|
92
|
+
- `tools:` — Keep valid tool references
|
|
93
|
+
- `argument-hint:` — Keep for user guidance
|
|
94
|
+
|
|
95
|
+
## 5. Agent-Specific Rules
|
|
96
|
+
|
|
97
|
+
### CoKit agents (12)
|
|
98
|
+
`ck-brainstormer`, `ck-code-reviewer`, `ck-code-simplifier`, `ck-debugger`, `ck-docs-manager`, `ck-fullstack-developer`, `ck-git-manager`, `ck-planner`, `ck-researcher`, `ck-scout`, `ck-tester`, `ck-ui-ux-designer`
|
|
99
|
+
|
|
100
|
+
### Upstream agents that DON'T exist in CoKit
|
|
101
|
+
| Upstream Agent | CoKit Replacement |
|
|
102
|
+
|-----------------|-------------------|
|
|
103
|
+
| `ck-project-manager` | Direct action (describe what to do) |
|
|
104
|
+
| `journal-writer` | Remove or convert to manual journaling |
|
|
105
|
+
| `mcp-manager` | Remove or use `mcp-management` skill |
|
|
106
|
+
|
|
107
|
+
### Agent file conventions
|
|
108
|
+
- Remove `## Team Mode` sections — Copilot subagents don't support task claiming, peer communication, or file ownership
|
|
109
|
+
- Add skills activation directive referencing `$HOME/.copilot/skills/*`
|
|
110
|
+
|
|
111
|
+
## 6. External Tool Qualifiers
|
|
112
|
+
|
|
113
|
+
If a skill/tool exists in CoKit's `skills/*/SKILL.md` → it's available, no qualifier needed.
|
|
114
|
+
If NOT → add `(if available)`:
|
|
115
|
+
|
|
116
|
+
| Tool | Action | Reason |
|
|
117
|
+
|------|--------|--------|
|
|
118
|
+
| `repomix` | Add "(if available)" | External npm package, needs CLI install |
|
|
119
|
+
| `ai-multimodal` | Add "(if available)" | External Gemini skill, not in CoKit |
|
|
120
|
+
| `ui-ux-pro-max` | Add "(if available)" | Not in CoKit skills |
|
|
121
|
+
| `media-processing` | Add "(if available)" | Not in CoKit skills |
|
|
122
|
+
| `chrome-devtools` | Use `agent-browser` | Renamed in CoKit |
|
|
123
|
+
| `document-skills` | Use `docs-seeker` | Different name in CoKit |
|
|
124
|
+
|
|
125
|
+
**Single flag:** Always use `(if available)` — never `(if installed)`.
|
|
126
|
+
|
|
127
|
+
**Before porting:** Check if any missing skill has been added to CoKit since last port. If so, remove the qualifier.
|
|
128
|
+
|
|
129
|
+
## 7. Prompt Classification
|
|
130
|
+
|
|
131
|
+
- **Prompts** = top-level commands counted in "25 prompts" (e.g., `/ck-plan`, `/ck-fix`, `/ck-cook`)
|
|
132
|
+
- **Variant commands** = sub-routes, NOT counted (e.g., `/ck-plan-fast`, `/ck-plan-hard`, `/ck-plan-validate`, `/ck-plan-red-team`)
|
|
133
|
+
|
|
134
|
+
New variant → update flowchart + Deep Dive in `index.html`, do NOT bump prompt count.
|
|
135
|
+
|
|
136
|
+
## 8. Version & Docs Update Checklist
|
|
137
|
+
|
|
138
|
+
### Always update
|
|
139
|
+
- [ ] `package.json` + `package-lock.json` (`npm install --package-lock-only`)
|
|
140
|
+
- [ ] `CHANGELOG.md` — new entry
|
|
141
|
+
- [ ] `index.html` — hero badge + footer version
|
|
142
|
+
- [ ] `README.md` — "What's New" section
|
|
143
|
+
- [ ] `docs/project-roadmap.md` — version + last updated
|
|
144
|
+
|
|
145
|
+
### Sync if outdated (check version string)
|
|
146
|
+
- [ ] `docs/README.md`
|
|
147
|
+
- [ ] `docs/codebase-summary.md`
|
|
148
|
+
- [ ] `docs/cokit-comprehensive-mapping-guide.md`
|
|
149
|
+
- [ ] `docs/cokit-team-presentation.md`
|
|
150
|
+
- [ ] `docs/cokit-sync-and-maintenance-guide.md`
|
|
151
|
+
- [ ] `docs/project-overview-pdr.md`
|
|
152
|
+
|
|
153
|
+
### If new commands added
|
|
154
|
+
- [ ] Flowchart nodes/edges in `index.html`
|
|
155
|
+
- [ ] Deep Dive section in `index.html`
|
|
156
|
+
- [ ] Prompts table in `index.html` (if variant of existing command)
|
|
157
|
+
|
|
158
|
+
## 9. Validation Grep Patterns
|
|
159
|
+
|
|
160
|
+
After porting, run these — must return 0 matches (except historical/changelog):
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
grep -r "@\w+-\w+" agents/ skills/ prompts/ # @agent-name syntax
|
|
164
|
+
grep -r "project-manager" agents/ skills/ prompts/ # Non-existent agent
|
|
165
|
+
grep -r "subagent" agents/ # Wrong terminology
|
|
166
|
+
grep -r "\.claude/" agents/ skills/ prompts/ # Wrong path
|
|
167
|
+
grep -r "AskUserQuestion\|SlashCommand" agents/ skills/ prompts/ # Upstream-only APIs
|
|
168
|
+
grep -r "chrome-devtools" agents/ # Renamed tool
|
|
169
|
+
grep -r "\$ARGUMENTS" agents/ prompts/ # Wrong variable
|
|
170
|
+
grep -r "^name:\|^model:\|^memory:" agents/ prompts/ # Invalid frontmatter
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## 10. Common Mistakes
|
|
174
|
+
|
|
175
|
+
1. **`@agent-name`** → Use `` `agent-name` agent `` (no `@` prefix)
|
|
176
|
+
2. **`ck-project-manager` agent** → Doesn't exist, replace with direct instructions
|
|
177
|
+
3. **Team Mode sections** → Don't port, Copilot subagents are isolated
|
|
178
|
+
4. **Missing "(if available)"** → External tools need `(if available)` qualifier. Use this single flag only — never "(if installed)"
|
|
179
|
+
5. **Counting variants as prompts** → Variants don't bump prompt count
|
|
180
|
+
6. **`SlashCommand()` wrappers** → Convert to plain `/ck-*`
|
|
181
|
+
7. **`document-skills`** → Use `docs-seeker`
|
|
182
|
+
8. **`chrome-devtools`** → Use `agent-browser`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cokit-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Make GitHub Copilot smarter in 30 seconds",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,8 +30,7 @@
|
|
|
30
30
|
"test": "node --test",
|
|
31
31
|
"lint": "echo 'No linter configured'",
|
|
32
32
|
"build": "echo 'Build complete'",
|
|
33
|
-
"sync": "
|
|
34
|
-
"sync:pull": "git subtree pull --prefix=upstream/speckit speckit main --squash",
|
|
33
|
+
"sync": "node eng/sync.mjs",
|
|
35
34
|
"sync:transform": "node eng/sync.mjs",
|
|
36
35
|
"sync:dry-run": "node eng/sync.mjs --dry-run",
|
|
37
36
|
"convert:agents": "node eng/convert-agents.mjs",
|
|
@@ -39,7 +38,7 @@
|
|
|
39
38
|
"convert:skills": "node eng/convert-skills.mjs",
|
|
40
39
|
"convert:all": "npm run convert:agents && npm run convert:commands && npm run convert:skills && npm run rewrite && npm run clean",
|
|
41
40
|
"rewrite": "node eng/rewrite-single-agent.mjs",
|
|
42
|
-
"clean": "node eng/clean-
|
|
41
|
+
"clean": "node eng/clean-references.mjs"
|
|
43
42
|
},
|
|
44
43
|
"keywords": [
|
|
45
44
|
"copilot",
|
package/prompts/ck-ask.prompt.md
CHANGED
|
@@ -40,7 +40,7 @@ argument-hint: 'Describe your project requirements'
|
|
|
40
40
|
|
|
41
41
|
Follow strictly these following steps:
|
|
42
42
|
|
|
43
|
-
**First thing first:** check if Git has been initialized, if not, ask the user if they want to initialize it, if yes, use `git-manager` agent to initialize it.
|
|
43
|
+
**First thing first:** check if Git has been initialized, if not, ask the user if they want to initialize it, if yes, use `ck-git-manager` agent to initialize it.
|
|
44
44
|
|
|
45
45
|
### Fullfill the request
|
|
46
46
|
|
|
@@ -48,23 +48,21 @@ Follow strictly these following steps:
|
|
|
48
48
|
* Ask 1 question at a time, wait for the user to answer before moving to the next question.
|
|
49
49
|
* If you don't have any questions, start the next step.
|
|
50
50
|
|
|
51
|
-
**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
52
|
-
|
|
53
51
|
### Research
|
|
54
52
|
|
|
55
|
-
* Use multiple `researcher` agents in parallel to explore the user's request, idea validation, challenges, and find the best possible solutions.
|
|
53
|
+
* Use multiple `ck-researcher` agents in parallel to explore the user's request, idea validation, challenges, and find the best possible solutions.
|
|
56
54
|
* Keep every research markdown report concise (≤150 lines) while covering all requested topics and citations.
|
|
57
55
|
|
|
58
56
|
### Tech Stack
|
|
59
57
|
|
|
60
58
|
1. Ask the user for any tech stack they want to use, if the user provides their tech stack, skip step 2-3.
|
|
61
|
-
2. Use `planner` agent and multiple `researcher` agents in parallel to find a best fit tech stack for this project, keeping research reports within the ≤150 lines limit.
|
|
59
|
+
2. Use `ck-planner` agent and multiple `ck-researcher` agents in parallel to find a best fit tech stack for this project, keeping research reports within the ≤150 lines limit.
|
|
62
60
|
3. Ask the user to review and approve the tech stack, if the user requests to change the tech stack, repeat the previous step until the user approves the tech stack
|
|
63
61
|
4. Write the tech stack down in `./docs` directory
|
|
64
62
|
|
|
65
63
|
### Planning
|
|
66
64
|
|
|
67
|
-
* Use `planner` agent to create a detailed implementation plan following the progressive disclosure structure:
|
|
65
|
+
* Use `ck-planner` agent to create a detailed implementation plan following the progressive disclosure structure:
|
|
68
66
|
- Create a directory using naming pattern from `## Naming` section.
|
|
69
67
|
- Save the overview access point at `plan.md`, keep it generic, under 80 lines, and list each phase with status/progress and links.
|
|
70
68
|
- For each phase, add `phase-XX-phase-name.md` files containing sections (Context links, Overview with date/priority/statuses, Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps).
|
|
@@ -76,11 +74,11 @@ Follow strictly these following steps:
|
|
|
76
74
|
### Wireframe & Design
|
|
77
75
|
|
|
78
76
|
* Ask the user if they want to create wireframes and design guidelines, if yes, continue to the next step, if no, skip to **"Implementation"** phase.
|
|
79
|
-
* Use `ui-ux-designer` agent and multiple `researcher` agents in parallel to create a design plan that follows the same directory/phase structure described above, keeping related research reports within the ≤150 lines limit.
|
|
77
|
+
* Use `ck-ui-ux-designer` agent and multiple `ck-researcher` agents in parallel to create a design plan that follows the same directory/phase structure described above, keeping related research reports within the ≤150 lines limit.
|
|
80
78
|
- **Research** about design style, trends, fonts, colors, border, spacing, elements' positions, etc.
|
|
81
79
|
- Describe details of the assets in the design so they can be generated later on.
|
|
82
80
|
- **IMPORTANT:** Try to predict the font name (Google Fonts) and font size in the given screenshot, don't just use **Inter** or **Poppins** fonts.
|
|
83
|
-
* Then use `ui-ux-designer` agent to create the design guidelines at `./docs/design-guidelines.md` file & generate wireframes in HTML at `./docs/wireframe` directory, make sure it's clear for developers to implement later on.
|
|
81
|
+
* Then use `ck-ui-ux-designer` agent to create the design guidelines at `./docs/design-guidelines.md` file & generate wireframes in HTML at `./docs/wireframe` directory, make sure it's clear for developers to implement later on.
|
|
84
82
|
* Use `agent-browser` skill to take a screenshot of the wireframes and save it at `./docs/wireframes/` directory.
|
|
85
83
|
* Ask the user to review and approve the design guidelines, if the user requests to change the design guidelines, repeat the previous step until the user approves the design guidelines.
|
|
86
84
|
|
|
@@ -90,26 +88,26 @@ Follow strictly these following steps:
|
|
|
90
88
|
### Implementation
|
|
91
89
|
|
|
92
90
|
* Use `general agent (main agent)` to implement the plan step by step, follow the implementation plan in `./plans` directory.
|
|
93
|
-
* Use `ui-ux-designer` agent to implement the frontend part follow the design guidelines at `./docs/design-guidelines.md` file.
|
|
91
|
+
* Use `ck-ui-ux-designer` agent to implement the frontend part follow the design guidelines at `./docs/design-guidelines.md` file.
|
|
94
92
|
* Generate and verify visual assets as needed.
|
|
95
93
|
* Run type checking and compile the code command to make sure there are no syntax errors.
|
|
96
94
|
|
|
97
95
|
### Testing
|
|
98
96
|
|
|
99
97
|
* Write the tests for the plan, make sure you don't use fake data just to pass the tests, tests should be real and cover all possible cases.
|
|
100
|
-
* Use `tester` agent to run the tests, make sure it works, then report back to main agent.
|
|
101
|
-
* If there are issues or failed tests, use `debugger` agent to find the root cause of the issues, then ask main agent to fix all of them and
|
|
98
|
+
* Use `ck-tester` agent to run the tests, make sure it works, then report back to main agent.
|
|
99
|
+
* If there are issues or failed tests, use `ck-debugger` agent to find the root cause of the issues, then ask main agent to fix all of them and
|
|
102
100
|
* Repeat the process until all tests pass or no more issues are reported. Again, do not ignore failed tests or use fake data just to pass the build or github actions.
|
|
103
101
|
|
|
104
102
|
### Code Review
|
|
105
103
|
|
|
106
|
-
* After finishing, delegate to `code-reviewer` agent to review code. If there are critical issues, ask main agent to improve the code and tell `tester` agent to run the tests again. Repeat the process until all tests pass.
|
|
104
|
+
* After finishing, delegate to `ck-code-reviewer` agent to review code. If there are critical issues, ask main agent to improve the code and tell `ck-tester` agent to run the tests again. Repeat the process until all tests pass.
|
|
107
105
|
* When all tests pass, code is reviewed, the tasks are completed, report back to user with a summary of the changes and explain everything briefly, ask user to review the changes and approve them.
|
|
108
106
|
* **IMPORTANT:** Sacrifice grammar for the sake of concision when writing outputs.
|
|
109
107
|
|
|
110
108
|
### Documentation
|
|
111
109
|
|
|
112
|
-
* If user approves the changes, use `docs-manager` agent to update the docs if needed.
|
|
110
|
+
* If user approves the changes, use `ck-docs-manager` agent to update the docs if needed.
|
|
113
111
|
* Create/update `./docs/README.md` file (keep it concise, under 300 lines).
|
|
114
112
|
* Create/update `./docs/codebase-summary.md` file.
|
|
115
113
|
* Create/update `./docs/project-overview.-pdr.md` (Product Development Requirements) file.
|
|
@@ -126,7 +124,7 @@ Follow strictly these following steps:
|
|
|
126
124
|
|
|
127
125
|
### Final Report
|
|
128
126
|
* Report back to user with a summary of the changes and explain everything briefly, guide user to get started and suggest the next steps.
|
|
129
|
-
* Ask the user if they want to commit and push to git repository, if yes, use `git-manager` agent to commit and push to git repository.
|
|
127
|
+
* Ask the user if they want to commit and push to git repository, if yes, use `ck-git-manager` agent to commit and push to git repository.
|
|
130
128
|
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
131
129
|
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
132
130
|
|
|
@@ -138,4 +136,3 @@ Follow strictly these following steps:
|
|
|
138
136
|
|---------|-------------|
|
|
139
137
|
| `/ck-brainstorm` | Explore ideas |
|
|
140
138
|
| `/ck-plan` | Create plan |
|
|
141
|
-
| `/ck-spec-specify` | Write detailed feature spec |
|
|
@@ -62,15 +62,15 @@ Human review required at these checkpoints (skipped with `--auto`):
|
|
|
62
62
|
|
|
63
63
|
| Phase | Agent |
|
|
64
64
|
|-------|-------|
|
|
65
|
-
| Research | `researcher` agent (parallel, optional in fast) |
|
|
66
|
-
| Scout | `scout` agent |
|
|
67
|
-
| Plan | `planner` agent |
|
|
68
|
-
| UI Work | `ui-ux-designer` agent |
|
|
69
|
-
| Implement | `fullstack-developer` agent (parallel mode) |
|
|
70
|
-
| Simplify | `code-simplifier` agent (post-implement) |
|
|
71
|
-
| Testing | `tester`, `debugger` agents |
|
|
72
|
-
| Review | `code-reviewer` agent |
|
|
73
|
-
| Finalize | `docs-manager`, `git-manager` agents |
|
|
65
|
+
| Research | `ck-researcher` agent (parallel, optional in fast) |
|
|
66
|
+
| Scout | `ck-scout` agent |
|
|
67
|
+
| Plan | `ck-planner` agent |
|
|
68
|
+
| UI Work | `ck-ui-ux-designer` agent |
|
|
69
|
+
| Implement | `ck-fullstack-developer` agent (parallel mode) |
|
|
70
|
+
| Simplify | `ck-code-simplifier` agent (post-implement) |
|
|
71
|
+
| Testing | `ck-tester`, `ck-debugger` agents |
|
|
72
|
+
| Review | `ck-code-reviewer` agent |
|
|
73
|
+
| Finalize | `ck-docs-manager`, `ck-git-manager` agents |
|
|
74
74
|
|
|
75
75
|
## Process
|
|
76
76
|
|
|
@@ -78,8 +78,8 @@ Human review required at these checkpoints (skipped with `--auto`):
|
|
|
78
78
|
2. **Scout**: Use `/ck-scout` to discover relevant files
|
|
79
79
|
3. **Research** (if applicable): Gather technical context
|
|
80
80
|
4. **Plan**: Create or load implementation plan
|
|
81
|
-
5. **Implement**: Execute plan phases (use `fullstack-developer` agent in parallel mode)
|
|
82
|
-
6. **Simplify**: `code-simplifier` agent refines implemented code for clarity
|
|
81
|
+
5. **Implement**: Execute plan phases (use `ck-fullstack-developer` agent in parallel mode)
|
|
82
|
+
6. **Simplify**: `ck-code-simplifier` agent refines implemented code for clarity
|
|
83
83
|
7. **Test**: Run tests and validate
|
|
84
84
|
8. **Review**: Code review with quality gates
|
|
85
85
|
9. **Finalize**: Update docs, commit changes
|
|
@@ -93,4 +93,3 @@ Human review required at these checkpoints (skipped with `--auto`):
|
|
|
93
93
|
| `/ck-test` | Run tests |
|
|
94
94
|
| `/ck-review` | Code review |
|
|
95
95
|
| `/ck-git` | Commit changes |
|
|
96
|
-
| `/ck-spec-implement` | Spec-driven implementation instead |
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Deploy to any platform with auto-detection'
|
|
4
|
+
argument-hint: '[platform] [environment]'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
Deploy target:
|
|
9
|
+
<target>${input}</target>
|
|
10
|
+
|
|
11
|
+
Auto-detects deployment target from config files. Supports Vercel, Netlify, Cloudflare, Railway, Fly.io, Render, Docker, AWS, GCP, and more.
|
|
12
|
+
|
|
13
|
+
**IMPORTANT**: Verify deployment target before executing.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Suggested Next Steps
|
|
18
|
+
|
|
19
|
+
| Command | Description |
|
|
20
|
+
|---------|-------------|
|
|
21
|
+
| `/ck-test` | Run tests before deploy |
|
|
22
|
+
| `/ck-fix` | Fix deployment issues |
|
|
@@ -28,7 +28,7 @@ If user chooses "Switch to /ck-fix", run `/ck-fix ${input}` immediately — do N
|
|
|
28
28
|
<issues>${input}</issues>
|
|
29
29
|
|
|
30
30
|
## Workflow
|
|
31
|
-
1. Activate `debug` and `problem-solving` skills to find the root cause.
|
|
31
|
+
1. Activate `ck-debug` and `ck-problem-solving` skills to find the root cause.
|
|
32
32
|
2. Implement the fix.
|
|
33
33
|
3. Test the fix and make sure it works.
|
|
34
34
|
4. If there are issues or failed tests, repeat from step 1.
|
|
@@ -36,8 +36,8 @@ If user chooses "Switch to /ck-fix", run immediately — do NOT ask user to re-
|
|
|
36
36
|
|
|
37
37
|
### Fix the issue
|
|
38
38
|
|
|
39
|
-
Use `sequential-thinking` skill to break complex problems into sequential thought steps.
|
|
40
|
-
Use `problem-solving` skills to tackle the issues.
|
|
39
|
+
Use `ck-sequential-thinking` skill to break complex problems into sequential thought steps.
|
|
40
|
+
Use `ck-problem-solving` skills to tackle the issues.
|
|
41
41
|
|
|
42
42
|
1. Investigate and find the root cause of the issues.
|
|
43
43
|
2. Research about the root causes on the internet (if needed).
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Build React/TypeScript frontends with modern patterns'
|
|
4
|
+
argument-hint: '[component or feature]'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
Frontend task:
|
|
9
|
+
<task>${input}</task>
|
|
10
|
+
|
|
11
|
+
Build React/TypeScript frontends with modern patterns. Covers components, Suspense, lazy loading, useSuspenseQuery, MUI v7 styling, TanStack Router, and performance optimization.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Suggested Next Steps
|
|
16
|
+
|
|
17
|
+
| Command | Description |
|
|
18
|
+
|---------|-------------|
|
|
19
|
+
| `/ck-test` | Test frontend components |
|
|
20
|
+
| `/ck-review` | Review frontend code |
|
|
@@ -39,7 +39,7 @@ Check the `## Plan Context` section in the injected context:
|
|
|
39
39
|
- If "Plan: none" → Create new plan using naming from `## Naming` section.
|
|
40
40
|
|
|
41
41
|
## Workflow
|
|
42
|
-
Use `planner` agent to:
|
|
42
|
+
Use `ck-planner` agent to:
|
|
43
43
|
1. If creating new: Create directory using `Plan dir:` from `## Naming` section, then run `node $HOME/.copilot/scripts/set-active-plan.cjs {plan-dir}`
|
|
44
44
|
If reusing: Use the active plan path from Plan Context.
|
|
45
45
|
Make sure you pass the directory path to every agent during the process.
|
|
@@ -89,7 +89,6 @@ This reminder is **NON-NEGOTIABLE** - always output it after presenting the plan
|
|
|
89
89
|
|
|
90
90
|
## Important Notes
|
|
91
91
|
- **IMPORTANT:** Ensure token consumption efficiency while maintaining high quality.
|
|
92
|
-
- **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
93
92
|
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
94
93
|
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
95
94
|
- **IMPORTANT**: **Do not** start implementing.
|
|
@@ -100,8 +99,6 @@ This reminder is **NON-NEGOTIABLE** - always output it after presenting the plan
|
|
|
100
99
|
|
|
101
100
|
| Command | Description |
|
|
102
101
|
|---------|-------------|
|
|
103
|
-
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
104
102
|
| `/ck-cook` | Implement plan |
|
|
105
103
|
| `/ck-test` | Run tests and analyze results |
|
|
106
104
|
| `/ck-fix` | Analyze and fix issues |
|
|
107
|
-
| `/ck-spec-specify` | Too complex? Switch to spec-driven flow |
|
|
@@ -44,12 +44,12 @@ Check the `## Plan Context` section in the injected context:
|
|
|
44
44
|
If reusing: Use the active plan path from Plan Context.
|
|
45
45
|
Make sure you pass the directory path to every agent during the process.
|
|
46
46
|
2. Follow strictly to the "Plan Creation & Organization" rules of `planning` skill.
|
|
47
|
-
3. Use multiple `researcher` agents (max 2 agents) in parallel to research for this task:
|
|
47
|
+
3. Use multiple `ck-researcher` agents (max 2 agents) in parallel to research for this task:
|
|
48
48
|
Each agent research for a different aspect of the task and are allowed to perform max 5 tool calls.
|
|
49
49
|
4. Analyze the codebase by reading `codebase-summary.md`, `code-standards.md`, `system-architecture.md` and `project-overview-pdr.md` file.
|
|
50
50
|
**ONLY PERFORM THIS FOLLOWING STEP IF `codebase-summary.md` is not available or older than 3 days**: Use `/scout <instructions>` slash command to search the codebase for files needed to complete the task.
|
|
51
|
-
5. Main agent gathers all research and scout report filepaths, and pass them to `planner` agent with the prompt to create an implementation plan of this task.
|
|
52
|
-
6. Main agent receives the implementation plan from `planner` agent, and ask user to review the plan
|
|
51
|
+
5. Main agent gathers all research and scout report filepaths, and pass them to `ck-planner` agent with the prompt to create an implementation plan of this task.
|
|
52
|
+
6. Main agent receives the implementation plan from `ck-planner` agent, and ask user to review the plan
|
|
53
53
|
|
|
54
54
|
## Post-Plan Validation (Optional)
|
|
55
55
|
|
|
@@ -115,7 +115,6 @@ This reminder is **NON-NEGOTIABLE** when validation is skipped.
|
|
|
115
115
|
- For each phase, create `{plan-dir}/phase-XX-phase-name-here.md` containing the following sections in order: Context links (reference parent plan, dependencies, docs), Overview (date, description, priority, implementation status, review status), Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps.
|
|
116
116
|
|
|
117
117
|
## Important Notes
|
|
118
|
-
**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
119
118
|
**IMPORTANT:** Ensure token efficiency while maintaining high quality.
|
|
120
119
|
**IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
121
120
|
**IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
@@ -127,8 +126,6 @@ This reminder is **NON-NEGOTIABLE** when validation is skipped.
|
|
|
127
126
|
|
|
128
127
|
| Command | Description |
|
|
129
128
|
|---------|-------------|
|
|
130
|
-
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
131
129
|
| `/ck-cook` | Implement plan |
|
|
132
130
|
| `/ck-test` | Run tests and analyze results |
|
|
133
131
|
| `/ck-fix` | Analyze and fix issues |
|
|
134
|
-
| `/ck-spec-specify` | Need formal spec? Switch to spec-driven flow |
|
|
@@ -69,7 +69,7 @@ Available lenses (select per Step 2):
|
|
|
69
69
|
|
|
70
70
|
### Step 4: Spawn Reviewers
|
|
71
71
|
|
|
72
|
-
Launch reviewers simultaneously using `code-reviewer` agents in parallel.
|
|
72
|
+
Launch reviewers simultaneously using `ck-code-reviewer` agents in parallel.
|
|
73
73
|
|
|
74
74
|
**Each reviewer prompt MUST include:**
|
|
75
75
|
1. This override: `"IGNORE your default code-review instructions. You are reviewing a PLAN DOCUMENT, not code. There is no code to lint, build, or test. Focus exclusively on plan quality."`
|
|
@@ -56,7 +56,6 @@ If user chooses validation or mode is `auto`: Execute `/ck-plan-validate {plan-p
|
|
|
56
56
|
- Hard plans recommend validation
|
|
57
57
|
|
|
58
58
|
## Important Notes
|
|
59
|
-
**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
60
59
|
**IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
61
60
|
**IMPORTANT:** Ensure token efficiency while maintaining high quality.
|
|
62
61
|
**IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
@@ -69,8 +68,6 @@ If user chooses validation or mode is `auto`: Execute `/ck-plan-validate {plan-p
|
|
|
69
68
|
| Command | Description |
|
|
70
69
|
|---------|-------------|
|
|
71
70
|
| `/ck-plan-validate` | Validate plan with critical questions |
|
|
72
|
-
| `/ck-spec-tasks` | Break plan into actionable tasks |
|
|
73
71
|
| `/ck-cook` | Implement plan |
|
|
74
72
|
| `/ck-test` | Run tests and analyze results |
|
|
75
73
|
| `/ck-fix` | Analyze and fix issues |
|
|
76
|
-
| `/ck-spec-specify` | Need detailed spec first? Start spec-driven flow |
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Track progress, manage tasks, generate reports'
|
|
4
|
+
argument-hint: '[status|hydrate|sync|report]'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
Project management task:
|
|
9
|
+
<task>${input}</task>
|
|
10
|
+
|
|
11
|
+
Track progress, update plan statuses, generate reports, coordinate docs updates.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Suggested Next Steps
|
|
16
|
+
|
|
17
|
+
| Command | Description |
|
|
18
|
+
|---------|-------------|
|
|
19
|
+
| `/ck-plan` | Create implementation plan |
|
|
20
|
+
| `/ck-cook` | Implement features |
|