cokit-cli 1.2.7 → 1.3.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/brainstormer.agent.md +28 -14
- package/agents/code-reviewer.agent.md +101 -67
- package/agents/code-simplifier.agent.md +36 -41
- package/agents/debugger.agent.md +29 -24
- package/agents/docs-manager.agent.md +15 -23
- package/agents/fullstack-developer.agent.md +16 -6
- package/agents/git-manager.agent.md +0 -3
- package/agents/planner.agent.md +16 -34
- package/agents/project-manager.agent.md +24 -0
- package/agents/researcher.agent.md +15 -13
- package/agents/tester.agent.md +43 -20
- package/agents/ui-ux-designer.agent.md +16 -49
- package/docs/README.md +8 -9
- 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-comprehensive-mapping-guide.md +8 -10
- package/docs/cokit-slides.md +2 -5
- package/docs/cokit-sync-and-maintenance-guide.md +42 -190
- package/docs/cokit-team-presentation.md +6 -9
- package/docs/copilot-processing-flow.md +3 -3
- package/docs/migration-guide.md +14 -14
- package/docs/project-overview-pdr.md +5 -6
- package/docs/project-roadmap.md +12 -14
- package/docs/skills-and-orchestration-layer-en.md +404 -0
- package/docs/skills-and-orchestration-layer-vi.md +404 -0
- package/docs/system-architecture.md +13 -17
- package/docs/{claudekit-porting-rules.md → upstream-porting-rules.md} +15 -16
- package/package.json +3 -4
- package/prompts/ck-ask.prompt.md +0 -1
- package/prompts/ck-bootstrap.prompt.md +0 -3
- package/prompts/ck-brainstorm.prompt.md +0 -1
- package/prompts/ck-cook.prompt.md +0 -1
- 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-frontend.prompt.md +20 -0
- package/prompts/ck-help.prompt.md +0 -1
- package/prompts/ck-plan-fast.prompt.md +0 -3
- package/prompts/ck-plan-hard.prompt.md +0 -3
- package/prompts/ck-plan.prompt.md +0 -3
- package/prompts/ck-project.prompt.md +20 -0
- package/prompts/ck-review.prompt.md +0 -3
- 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 +0 -2
- package/prompts/ck-watzup.prompt.md +0 -1
- package/skills/agent-browser/SKILL.md +11 -8
- package/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/bootstrap/SKILL.md +102 -0
- package/skills/bootstrap/references/shared-phases.md +59 -0
- package/skills/bootstrap/references/workflow-auto.md +52 -0
- package/skills/bootstrap/references/workflow-fast.md +50 -0
- package/skills/bootstrap/references/workflow-full.md +60 -0
- package/skills/bootstrap/references/workflow-parallel.md +59 -0
- package/skills/brainstorm/SKILL.md +63 -15
- package/skills/code-review/SKILL.md +138 -135
- package/skills/code-review/references/adversarial-review.md +223 -0
- package/skills/code-review/references/checklist-workflow.md +100 -0
- package/skills/code-review/references/checklists/api.md +52 -0
- package/skills/code-review/references/checklists/base.md +100 -0
- package/skills/code-review/references/checklists/web-app.md +54 -0
- package/skills/code-review/references/code-review-reception.md +48 -144
- package/skills/code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/code-review/references/edge-case-scouting.md +119 -0
- package/skills/code-review/references/input-mode-resolution.md +135 -0
- package/skills/code-review/references/parallel-review-workflow.md +76 -0
- package/skills/code-review/references/requesting-code-review.md +115 -104
- package/skills/code-review/references/spec-compliance-review.md +43 -0
- package/skills/code-review/references/task-management-reviews.md +155 -0
- package/skills/common/README.md +2 -12
- package/skills/common/api_key_helper.py +7 -37
- package/skills/context-engineering/SKILL.md +4 -3
- package/skills/context-engineering/references/context-degradation.md +2 -2
- package/skills/context-engineering/references/runtime-awareness.md +5 -47
- package/skills/cook/README.md +13 -13
- package/skills/cook/SKILL.md +86 -58
- package/skills/cook/references/intent-detection.md +7 -7
- package/skills/cook/references/review-cycle.md +2 -2
- package/skills/cook/references/subagent-patterns.md +75 -0
- package/skills/cook/references/workflow-steps.md +75 -23
- package/skills/databases/SKILL.md +3 -30
- package/skills/databases/db-design.md +1 -1
- package/skills/debug/SKILL.md +47 -105
- package/skills/debug/references/frontend-verification.md +103 -0
- package/skills/debug/references/investigation-methodology.md +101 -0
- package/skills/debug/references/log-and-ci-analysis.md +97 -0
- package/skills/debug/references/performance-diagnostics.md +113 -0
- package/skills/debug/references/reporting-standards.md +122 -0
- package/skills/debug/references/task-management-debugging.md +155 -0
- package/skills/deploy/SKILL.md +154 -0
- package/skills/deploy/references/platform-config-templates.md +35 -0
- package/skills/deploy/references/platforms/aws.md +58 -0
- package/skills/deploy/references/platforms/cloudflare.md +41 -0
- package/skills/deploy/references/platforms/coolify.md +32 -0
- package/skills/deploy/references/platforms/digitalocean.md +45 -0
- package/skills/deploy/references/platforms/dokploy.md +29 -0
- package/skills/deploy/references/platforms/flyio.md +54 -0
- package/skills/deploy/references/platforms/gcp.md +45 -0
- package/skills/deploy/references/platforms/github-pages.md +56 -0
- package/skills/deploy/references/platforms/heroku.md +31 -0
- package/skills/deploy/references/platforms/netlify.md +39 -0
- package/skills/deploy/references/platforms/railway.md +38 -0
- package/skills/deploy/references/platforms/render.md +39 -0
- package/skills/deploy/references/platforms/tose.md +35 -0
- package/skills/deploy/references/platforms/vercel.md +37 -0
- package/skills/deploy/references/platforms/vultr.md +27 -0
- package/skills/devops/SKILL.md +6 -12
- package/skills/docs-seeker/SKILL.md +2 -1
- package/skills/docs-seeker/references/context7-patterns.md +4 -0
- package/skills/docs-seeker/scripts/fetch-docs.js +1 -2
- package/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
- package/skills/docs-seeker/workflows/library-search.md +1 -0
- package/skills/fix/SKILL.md +141 -44
- package/skills/fix/references/complexity-assessment.md +21 -9
- package/skills/fix/references/diagnosis-protocol.md +133 -0
- package/skills/fix/references/mode-selection.md +27 -11
- package/skills/fix/references/parallel-exploration.md +35 -12
- package/skills/fix/references/prevention-gate.md +87 -0
- package/skills/fix/references/review-cycle.md +3 -3
- package/skills/fix/references/skill-activation-matrix.md +64 -31
- package/skills/fix/references/task-orchestration.md +110 -0
- package/skills/fix/references/workflow-deep.md +110 -47
- package/skills/fix/references/workflow-logs.md +46 -10
- package/skills/fix/references/workflow-quick.md +43 -20
- package/skills/fix/references/workflow-standard.md +75 -41
- package/skills/fix/references/workflow-test.md +49 -10
- package/skills/fix/references/workflow-ui.md +56 -18
- package/skills/frontend-design/SKILL.md +109 -77
- package/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/frontend-design/references/anti-slop-rules.md +103 -0
- package/skills/frontend-design/references/asset-generation.md +284 -108
- package/skills/frontend-design/references/bento-motion-engine.md +142 -0
- package/skills/frontend-design/references/magicui-components.md +129 -0
- package/skills/frontend-design/references/performance-guardrails.md +169 -0
- package/skills/frontend-design/references/premium-design-patterns.md +93 -0
- package/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
- package/skills/frontend-design/references/visual-analysis-overview.md +1 -1
- package/skills/frontend-design/references/workflow-3d.md +98 -0
- package/skills/frontend-design/references/workflow-describe.md +4 -3
- package/skills/frontend-design/references/workflow-immersive.md +82 -0
- package/skills/frontend-design/references/workflow-quick.md +10 -12
- package/skills/frontend-design/references/workflow-screenshot.md +9 -8
- package/skills/frontend-design/references/workflow-video.md +74 -0
- package/skills/frontend-development/SKILL.md +400 -0
- package/skills/frontend-development/resources/common-patterns.md +331 -0
- package/skills/frontend-development/resources/complete-examples.md +872 -0
- package/skills/frontend-development/resources/component-patterns.md +502 -0
- package/skills/frontend-development/resources/data-fetching.md +767 -0
- package/skills/frontend-development/resources/file-organization.md +502 -0
- package/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/skills/frontend-development/resources/performance.md +406 -0
- package/skills/frontend-development/resources/routing-guide.md +364 -0
- package/skills/frontend-development/resources/styling-guide.md +428 -0
- package/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/skills/git/SKILL.md +18 -4
- package/skills/git/references/commit-standards.md +3 -3
- package/skills/git/references/workflow-commit.md +3 -3
- package/skills/git/references/workflow-merge.md +1 -1
- package/skills/git/references/workflow-pr.md +1 -1
- package/skills/git/references/workflow-push.md +1 -1
- package/skills/mcp-management/README.md +18 -18
- package/skills/mcp-management/SKILL.md +16 -15
- package/skills/mcp-management/references/configuration.md +4 -4
- package/skills/mcp-management/references/gemini-cli-integration.md +12 -12
- package/skills/mcp-management/scripts/.env.example +2 -2
- package/skills/mcp-management/scripts/dist/mcp-client.js +1 -1
- package/skills/mcp-management/scripts/mcp-client.ts +1 -1
- package/skills/mermaidjs-v11/SKILL.md +1 -0
- package/skills/planning/SKILL.md +122 -91
- package/skills/planning/references/archive-workflow.md +53 -0
- package/skills/planning/references/codebase-understanding.md +1 -1
- package/skills/planning/references/output-standards.md +17 -13
- package/skills/planning/references/plan-organization.md +52 -30
- package/skills/planning/references/red-team-personas.md +69 -0
- package/skills/planning/references/red-team-workflow.md +77 -0
- package/skills/planning/references/scope-challenge.md +90 -0
- package/skills/planning/references/task-management.md +134 -0
- package/skills/planning/references/validate-question-framework.md +80 -0
- package/skills/planning/references/validate-workflow.md +65 -0
- package/skills/planning/references/workflow-modes.md +154 -0
- package/skills/problem-solving/SKILL.md +1 -0
- package/skills/project-management/SKILL.md +133 -0
- package/skills/project-management/references/documentation-triggers.md +60 -0
- package/skills/project-management/references/hydration-workflow.md +89 -0
- package/skills/project-management/references/progress-tracking.md +120 -0
- package/skills/project-management/references/reporting-patterns.md +94 -0
- package/skills/project-management/references/task-operations.md +87 -0
- package/skills/repomix/SKILL.md +3 -2
- package/skills/repomix/references/usage-patterns.md +2 -2
- package/skills/repomix/scripts/README.md +1 -1
- package/skills/repomix/scripts/repomix_batch.py +2 -2
- package/skills/research/SKILL.md +7 -4
- package/skills/scout/SKILL.md +24 -24
- package/skills/scout/references/external-scouting.md +17 -17
- package/skills/scout/references/internal-scouting.md +9 -9
- package/skills/scout/references/task-management-scouting.md +125 -0
- package/skills/security/SKILL.md +139 -0
- package/skills/security/references/stride-owasp-checklist.md +128 -0
- package/skills/sequential-thinking/README.md +3 -3
- package/skills/sequential-thinking/SKILL.md +2 -0
- package/skills/sequential-thinking/package.json +1 -1
- package/skills/ship/SKILL.md +116 -0
- package/skills/ship/references/auto-detect.md +103 -0
- package/skills/ship/references/pr-template.md +90 -0
- package/skills/ship/references/ship-workflow.md +241 -0
- package/skills/test/SKILL.md +111 -0
- package/skills/test/references/report-format.md +58 -0
- package/skills/test/references/test-execution-workflow.md +103 -0
- package/skills/test/references/ui-testing-workflow.md +65 -0
- package/skills/ui-styling/SKILL.md +2 -0
- package/skills/web-testing/SKILL.md +8 -60
- package/templates/repo/.github/agents/brainstormer.agent.md +28 -14
- package/templates/repo/.github/agents/code-reviewer.agent.md +101 -67
- package/templates/repo/.github/agents/code-simplifier.agent.md +36 -41
- package/templates/repo/.github/agents/debugger.agent.md +29 -24
- package/templates/repo/.github/agents/docs-manager.agent.md +15 -23
- package/templates/repo/.github/agents/fullstack-developer.agent.md +16 -6
- package/templates/repo/.github/agents/git-manager.agent.md +0 -3
- package/templates/repo/.github/agents/planner.agent.md +16 -34
- package/templates/repo/.github/agents/project-manager.agent.md +24 -0
- package/templates/repo/.github/agents/researcher.agent.md +15 -13
- package/templates/repo/.github/agents/tester.agent.md +43 -20
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +16 -49
- package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-cook.prompt.md +0 -1
- 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-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 +0 -3
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +0 -3
- 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 +0 -3
- 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 +0 -2
- package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
- package/templates/repo/.github/skills/agent-browser/SKILL.md +11 -8
- package/templates/repo/.github/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/templates/repo/.github/skills/bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/brainstorm/SKILL.md +63 -15
- package/templates/repo/.github/skills/code-review/SKILL.md +138 -135
- package/templates/repo/.github/skills/code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/code-review/references/checklist-workflow.md +100 -0
- package/templates/repo/.github/skills/code-review/references/checklists/api.md +52 -0
- package/templates/repo/.github/skills/code-review/references/checklists/base.md +100 -0
- package/templates/repo/.github/skills/code-review/references/checklists/web-app.md +54 -0
- package/templates/repo/.github/skills/code-review/references/code-review-reception.md +48 -144
- package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/code-review/references/edge-case-scouting.md +119 -0
- package/templates/repo/.github/skills/code-review/references/input-mode-resolution.md +135 -0
- package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +19 -8
- package/templates/repo/.github/skills/code-review/references/spec-compliance-review.md +43 -0
- package/templates/repo/.github/skills/code-review/references/task-management-reviews.md +155 -0
- package/templates/repo/.github/skills/common/README.md +2 -12
- package/templates/repo/.github/skills/common/api_key_helper.py +7 -37
- package/templates/repo/.github/skills/context-engineering/SKILL.md +4 -3
- package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +2 -2
- package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +5 -47
- package/templates/repo/.github/skills/cook/README.md +13 -13
- package/templates/repo/.github/skills/cook/SKILL.md +86 -58
- package/templates/repo/.github/skills/cook/references/intent-detection.md +7 -7
- package/templates/repo/.github/skills/cook/references/review-cycle.md +2 -2
- package/templates/repo/.github/skills/cook/references/subagent-patterns.md +75 -0
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +75 -23
- package/templates/repo/.github/skills/databases/SKILL.md +3 -30
- package/templates/repo/.github/skills/databases/db-design.md +1 -1
- package/templates/repo/.github/skills/debug/SKILL.md +47 -105
- package/templates/repo/.github/skills/debug/references/frontend-verification.md +103 -0
- package/templates/repo/.github/skills/debug/references/investigation-methodology.md +101 -0
- package/templates/repo/.github/skills/debug/references/log-and-ci-analysis.md +97 -0
- package/templates/repo/.github/skills/debug/references/performance-diagnostics.md +113 -0
- package/templates/repo/.github/skills/debug/references/reporting-standards.md +122 -0
- package/templates/repo/.github/skills/debug/references/task-management-debugging.md +155 -0
- package/templates/repo/.github/skills/deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/deploy/references/platform-config-templates.md +35 -0
- package/templates/repo/.github/skills/deploy/references/platforms/aws.md +58 -0
- package/templates/repo/.github/skills/deploy/references/platforms/cloudflare.md +41 -0
- package/templates/repo/.github/skills/deploy/references/platforms/coolify.md +32 -0
- package/templates/repo/.github/skills/deploy/references/platforms/digitalocean.md +45 -0
- package/templates/repo/.github/skills/deploy/references/platforms/dokploy.md +29 -0
- package/templates/repo/.github/skills/deploy/references/platforms/flyio.md +54 -0
- package/templates/repo/.github/skills/deploy/references/platforms/gcp.md +45 -0
- package/templates/repo/.github/skills/deploy/references/platforms/github-pages.md +56 -0
- package/templates/repo/.github/skills/deploy/references/platforms/heroku.md +31 -0
- package/templates/repo/.github/skills/deploy/references/platforms/netlify.md +39 -0
- package/templates/repo/.github/skills/deploy/references/platforms/railway.md +38 -0
- package/templates/repo/.github/skills/deploy/references/platforms/render.md +39 -0
- package/templates/repo/.github/skills/deploy/references/platforms/tose.md +35 -0
- package/templates/repo/.github/skills/deploy/references/platforms/vercel.md +37 -0
- package/templates/repo/.github/skills/deploy/references/platforms/vultr.md +27 -0
- package/templates/repo/.github/skills/devops/SKILL.md +6 -12
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +2 -1
- package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +4 -0
- package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +1 -2
- package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
- package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +1 -0
- package/templates/repo/.github/skills/fix/SKILL.md +141 -44
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +21 -9
- package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/fix/references/mode-selection.md +27 -11
- package/templates/repo/.github/skills/fix/references/parallel-exploration.md +35 -12
- package/templates/repo/.github/skills/fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/fix/references/review-cycle.md +3 -3
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +64 -31
- package/templates/repo/.github/skills/fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +110 -47
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +46 -10
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +43 -20
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +75 -41
- package/templates/repo/.github/skills/fix/references/workflow-test.md +49 -10
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +56 -18
- package/templates/repo/.github/skills/frontend-design/SKILL.md +49 -17
- package/templates/repo/.github/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/templates/repo/.github/skills/frontend-design/references/anti-slop-rules.md +103 -0
- package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +284 -108
- package/templates/repo/.github/skills/frontend-design/references/bento-motion-engine.md +142 -0
- package/templates/repo/.github/skills/frontend-design/references/magicui-components.md +129 -0
- package/templates/repo/.github/skills/frontend-design/references/performance-guardrails.md +169 -0
- package/templates/repo/.github/skills/frontend-design/references/premium-design-patterns.md +93 -0
- package/templates/repo/.github/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
- package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +1 -1
- package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +4 -3
- package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +10 -12
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +9 -8
- package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/frontend-development/resources/common-patterns.md +331 -0
- package/templates/repo/.github/skills/frontend-development/resources/complete-examples.md +872 -0
- package/templates/repo/.github/skills/frontend-development/resources/component-patterns.md +502 -0
- package/templates/repo/.github/skills/frontend-development/resources/data-fetching.md +767 -0
- package/templates/repo/.github/skills/frontend-development/resources/file-organization.md +502 -0
- package/templates/repo/.github/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/repo/.github/skills/frontend-development/resources/performance.md +406 -0
- package/templates/repo/.github/skills/frontend-development/resources/routing-guide.md +364 -0
- package/templates/repo/.github/skills/frontend-development/resources/styling-guide.md +428 -0
- package/templates/repo/.github/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/templates/repo/.github/skills/git/SKILL.md +18 -4
- package/templates/repo/.github/skills/git/references/commit-standards.md +3 -3
- package/templates/repo/.github/skills/git/references/workflow-commit.md +3 -3
- package/templates/repo/.github/skills/git/references/workflow-merge.md +1 -1
- package/templates/repo/.github/skills/git/references/workflow-pr.md +1 -1
- package/templates/repo/.github/skills/git/references/workflow-push.md +1 -1
- package/templates/repo/.github/skills/mcp-management/README.md +18 -18
- package/templates/repo/.github/skills/mcp-management/SKILL.md +16 -15
- package/templates/repo/.github/skills/mcp-management/references/configuration.md +4 -4
- package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +12 -12
- package/templates/repo/.github/skills/mcp-management/scripts/.env.example +2 -2
- package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +1 -1
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +1 -0
- package/templates/repo/.github/skills/planning/SKILL.md +122 -91
- package/templates/repo/.github/skills/planning/references/archive-workflow.md +53 -0
- package/templates/repo/.github/skills/planning/references/codebase-understanding.md +1 -1
- package/templates/repo/.github/skills/planning/references/output-standards.md +17 -13
- package/templates/repo/.github/skills/planning/references/plan-organization.md +52 -30
- package/templates/repo/.github/skills/planning/references/red-team-personas.md +69 -0
- package/templates/repo/.github/skills/planning/references/red-team-workflow.md +77 -0
- package/templates/repo/.github/skills/planning/references/scope-challenge.md +90 -0
- package/templates/repo/.github/skills/planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/planning/references/validate-question-framework.md +80 -0
- package/templates/repo/.github/skills/planning/references/validate-workflow.md +65 -0
- package/templates/repo/.github/skills/planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/problem-solving/SKILL.md +1 -0
- package/templates/repo/.github/skills/project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/project-management/references/hydration-workflow.md +89 -0
- package/templates/repo/.github/skills/project-management/references/progress-tracking.md +120 -0
- package/templates/repo/.github/skills/project-management/references/reporting-patterns.md +94 -0
- package/templates/repo/.github/skills/project-management/references/task-operations.md +87 -0
- package/templates/repo/.github/skills/repomix/SKILL.md +3 -2
- package/templates/repo/.github/skills/repomix/references/usage-patterns.md +2 -2
- package/templates/repo/.github/skills/repomix/scripts/README.md +1 -1
- package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +2 -2
- package/templates/repo/.github/skills/research/SKILL.md +7 -4
- package/templates/repo/.github/skills/scout/SKILL.md +24 -24
- package/templates/repo/.github/skills/scout/references/external-scouting.md +17 -17
- package/templates/repo/.github/skills/scout/references/internal-scouting.md +9 -9
- package/templates/repo/.github/skills/scout/references/task-management-scouting.md +125 -0
- package/templates/repo/.github/skills/security/SKILL.md +139 -0
- package/templates/repo/.github/skills/security/references/stride-owasp-checklist.md +128 -0
- package/templates/repo/.github/skills/sequential-thinking/README.md +3 -3
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +2 -0
- package/templates/repo/.github/skills/sequential-thinking/package-lock.json +3652 -0
- package/templates/repo/.github/skills/sequential-thinking/package.json +1 -1
- package/templates/repo/.github/skills/ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ship/references/auto-detect.md +103 -0
- package/templates/repo/.github/skills/ship/references/pr-template.md +90 -0
- package/templates/repo/.github/skills/ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/test/SKILL.md +111 -0
- package/templates/repo/.github/skills/test/references/report-format.md +58 -0
- package/templates/repo/.github/skills/test/references/test-execution-workflow.md +103 -0
- package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ui-styling/SKILL.md +2 -0
- package/templates/repo/.github/skills/web-testing/SKILL.md +8 -60
- 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/templates/repo/.github/AGENTS.md +0 -103
- 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/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/mcp-management/assets/tools.json +0 -3146
- 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/ui-styling/LICENSE.txt +0 -202
- 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
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
# Skills & Orchestration Layer - Training Slides (Tiếng Việt)
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## Slide 1: Vấn Đề — Tại Sao Chat-Style AI Coding Không Đủ
|
|
6
|
+
|
|
7
|
+
### Level 0: Raw Prompting (Cách đa số dev đang làm)
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
Bạn: "Thêm user authentication"
|
|
11
|
+
AI: Đây là basic auth... [code snippet hời hợt]
|
|
12
|
+
Bạn: "Không, tôi cần JWT tokens"
|
|
13
|
+
AI: Đây là JWT... [snippet khác, mất hết context trước đó]
|
|
14
|
+
Bạn: "Nó không hoạt động với User model của tôi"
|
|
15
|
+
AI: Bạn paste User model được không? [đã mất toàn bộ context]
|
|
16
|
+
Bạn: [paste 200 dòng] "Giờ fix middleware luôn"
|
|
17
|
+
AI: [hallucinate middleware không khớp codebase của bạn]
|
|
18
|
+
...
|
|
19
|
+
45 phút sau: code rời rạc, không tests, không docs, copy-paste thủ công
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
**Pain points:**
|
|
23
|
+
- **Shallow work** — AI cho snippet chung chung, không phải production code
|
|
24
|
+
- **Không biết codebase** — không biết files, patterns, conventions của bạn
|
|
25
|
+
- **Context bay hơi** — mỗi message bắt đầu lại từ đầu
|
|
26
|
+
- **Thủ công hết** — bạn tự copy-paste, test, review, commit
|
|
27
|
+
- **Không quality gates** — không ai kiểm tra output của AI trước khi ship
|
|
28
|
+
|
|
29
|
+
### Level 1: Skills (Tốt hơn, nhưng vẫn rời rạc)
|
|
30
|
+
|
|
31
|
+
Skills cho AI **domain expertise** — cách viết backend, style UI, test đúng cách. Nhưng standalone skills bị cô lập. Mỗi cái làm tốt một việc trong chân không:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
/skill-backend → generate API code ...nhưng ai plan?
|
|
35
|
+
/skill-test → viết test cases ...nhưng ai chạy?
|
|
36
|
+
/skill-review → review code quality ...nhưng ai fix issues?
|
|
37
|
+
/skill-git → commit changes ...nhưng ai điều phối?
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Skills không có orchestration = **hộp đồ nghề mà không có thợ xây**. Bạn vẫn phải tự chain thủ công.
|
|
41
|
+
|
|
42
|
+
### Level 2: Orchestration (Tầng còn thiếu)
|
|
43
|
+
|
|
44
|
+
Nếu 1 command có thể **plan, code, test, review, và ship** — tự động?
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
/ck-cook "Add user auth"
|
|
48
|
+
│
|
|
49
|
+
├─ 1. Scout → scout agent quét codebase, tìm file liên quan
|
|
50
|
+
├─ 2. Research → researcher agents thu thập thông tin (parallel)
|
|
51
|
+
├─ 3. Plan → planner agent lên kiến trúc và phân tích
|
|
52
|
+
├─ 4. Implement → fullstack-developer agent code (parallel mode)
|
|
53
|
+
├─ 5. Simplify → code-simplifier agent refine code
|
|
54
|
+
├─ 6. Test → tester agent chạy tests, debugger agent nếu fail
|
|
55
|
+
├─ 7. Review → code-reviewer agent đánh giá chất lượng
|
|
56
|
+
└─ 8. Finalize → docs-manager cập nhật docs, git-manager commit
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**10 agents** được orchestrate bởi **1 command**. Phần còn lại CoKit tự lo.
|
|
60
|
+
|
|
61
|
+
### Con Đường Tiến Hoá
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐
|
|
65
|
+
│ Level 0 │ │ Level 1 │ │ Level 2 │
|
|
66
|
+
│ RAW CHAT │ ──> │ SKILLS │ ──> │ ORCHESTRATION │
|
|
67
|
+
│ │ │ │ │ │
|
|
68
|
+
│ • Hời hợt │ │ • Sâu nhưng │ │ • Sâu VÀ │
|
|
69
|
+
│ • Mất context│ │ rời rạc │ │ phối hợp │
|
|
70
|
+
│ • Thủ công │ │ • Vẫn chain │ │ • Tự động │
|
|
71
|
+
│ • Không gate│ │ thủ công │ │ • Quality gates │
|
|
72
|
+
│ │ │ │ │ • 10 agents, 1 cmd │
|
|
73
|
+
│ 45 phút/feat│ │ 20 phút/feat│ │ 5 phút/feat │
|
|
74
|
+
└─────────────┘ └─────────────┘ └─────────────────────┘
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
**CoKit hoạt động ở Level 2.** Đó là sự khác biệt.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Slide 2: Orchestration Layer Là Gì?
|
|
82
|
+
|
|
83
|
+
Hệ thống **phối hợp AI agents, prompts, và skills** để deliver workflow phát triển end-to-end.
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
┌──────────────────────────────────────────────────────┐
|
|
87
|
+
│ USER: /ck-cook "Add user auth" │
|
|
88
|
+
└──────────────┬───────────────────────────────────────┘
|
|
89
|
+
▼
|
|
90
|
+
┌──────────────────────────────────────────────────────┐
|
|
91
|
+
│ ORCHESTRATION LAYER (4 Tiers) │
|
|
92
|
+
│ │
|
|
93
|
+
│ Tier 1 → Tier 2 → Tier 3 → Tier 4 │
|
|
94
|
+
│ (chỉ huy) (quản lý) (công cụ) (chuyên gia) │
|
|
95
|
+
│ │
|
|
96
|
+
└──────────────┬───────────────────────────────────────┘
|
|
97
|
+
▼
|
|
98
|
+
┌──────────────────────────────────────────────────────┐
|
|
99
|
+
│ DELIVERED FEATURE │
|
|
100
|
+
│ Code + Tests + Docs + Commit │
|
|
101
|
+
└──────────────────────────────────────────────────────┘
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Không có orchestration → bạn prompt từng bước một.
|
|
105
|
+
Có orchestration → 1 command trigger cả pipeline.
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Slide 3: Tổng Quan Con Số
|
|
110
|
+
|
|
111
|
+
| Resource | Số lượng | Mục đích |
|
|
112
|
+
|----------|---------|----------|
|
|
113
|
+
| **Tiers** | **4** | Kiến trúc hub-and-spoke phân tầng |
|
|
114
|
+
| **Prompts** | **34** | Command templates (18 core + 10 variants + 6 spec) |
|
|
115
|
+
| **Agents** | **12** | AI personas chuyên biệt |
|
|
116
|
+
| **Skills** | **27** | Gói domain expertise |
|
|
117
|
+
| **Instructions** | **5** | Rules tự động load theo file type |
|
|
118
|
+
| **Collections** | **5** | Nhóm resources đóng gói |
|
|
119
|
+
| **Rules** | **4** | File protocol orchestration |
|
|
120
|
+
|
|
121
|
+
**Tổng cộng: 87 resources** hoạt động xuyên suốt 4 tiers.
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## Slide 4: Kiến Trúc 4 Tầng
|
|
126
|
+
|
|
127
|
+
```mermaid
|
|
128
|
+
flowchart TB
|
|
129
|
+
subgraph T1["TIER 1: Orchestrators (2 prompts)"]
|
|
130
|
+
direction LR
|
|
131
|
+
cook["/ck-cook"]
|
|
132
|
+
boot["/ck-bootstrap"]
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
subgraph T2["TIER 2: Workflows (18 prompts + 12 agents)"]
|
|
136
|
+
direction LR
|
|
137
|
+
plan["/ck-plan\nplanner"]
|
|
138
|
+
fix["/ck-fix\ndebugger"]
|
|
139
|
+
test["/ck-test\ntester"]
|
|
140
|
+
review["/ck-review\nreviewer"]
|
|
141
|
+
scout["/ck-scout\nscout"]
|
|
142
|
+
git["/ck-git\ngit-mgr"]
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
subgraph T3["TIER 3: Utility Skills (8 core + 3 conditional)"]
|
|
146
|
+
direction LR
|
|
147
|
+
research["research"]
|
|
148
|
+
st["sequential\nthinking"]
|
|
149
|
+
ds["docs-seeker"]
|
|
150
|
+
ps["problem\nsolving"]
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
subgraph T4["TIER 4: Standalone Skills (7 core + 20 deferred)"]
|
|
154
|
+
direction LR
|
|
155
|
+
be["backend-dev"]
|
|
156
|
+
fe["frontend-design"]
|
|
157
|
+
db["databases"]
|
|
158
|
+
dv["devops"]
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
T1 -->|"references agents"| T2
|
|
162
|
+
T2 -->|"activates skills"| T3
|
|
163
|
+
T4 -.->|"context-activated theo file type"| T4
|
|
164
|
+
|
|
165
|
+
style T1 fill:#FF6B6B,color:#fff
|
|
166
|
+
style T2 fill:#4ECDC4,color:#fff
|
|
167
|
+
style T3 fill:#45B7D1,color:#fff
|
|
168
|
+
style T4 fill:#96CEB4,color:#fff
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**Nguyên tắc:** Mỗi tier chỉ gọi XUỐNG. Không circular dependencies. Không gọi ngược lên.
|
|
172
|
+
|
|
173
|
+
| Tier | Tên Việt | Vai trò | Trả lời câu hỏi |
|
|
174
|
+
|------|----------|---------|-----------------|
|
|
175
|
+
| 1 | Tầng Chỉ Huy | Điều phối workflow end-to-end | **LÀM GÌ** và theo thứ tự nào |
|
|
176
|
+
| 2 | Tầng Quản Lý Trung Gian | Thực thi từng domain cụ thể | **LÀM NHƯ THẾ NÀO** cho mỗi bước |
|
|
177
|
+
| 3 | Tầng Công Cụ Thuần Tuý | Cung cấp capability tái sử dụng | **BẰNG PHƯƠNG PHÁP GÌ** |
|
|
178
|
+
| 4 | Tầng Chuyên Gia Độc Lập | Domain expert tự đủ | **VỀ LĨNH VỰC NÀO** |
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Slide 5: Tier 1 — Orchestrators (Tầng Chỉ Huy)
|
|
183
|
+
|
|
184
|
+
**2 prompts** | Điều phối workflow end-to-end
|
|
185
|
+
|
|
186
|
+
| Prompt | Chức năng | Agents sử dụng |
|
|
187
|
+
|--------|----------|----------------|
|
|
188
|
+
| `/ck-cook` | Full pipeline: Scout → Research → Plan → Implement → Simplify → Test → Review → Finalize | researcher, scout, planner, ui-ux-designer, fullstack-developer, code-simplifier, tester, debugger, code-reviewer, docs-manager, git-manager |
|
|
189
|
+
| `/ck-bootstrap` | Khởi tạo project mới | researcher, planner |
|
|
190
|
+
|
|
191
|
+
**Hình dung:** Giống project manager — biết tất cả các bước và delegate cho từng chuyên gia.
|
|
192
|
+
|
|
193
|
+
Cook có **6 modes** dựa trên input detection:
|
|
194
|
+
|
|
195
|
+
| Mode | Kích hoạt khi | Hành vi |
|
|
196
|
+
|------|--------------|---------|
|
|
197
|
+
| interactive | mặc định | User approve từng gate |
|
|
198
|
+
| auto | "auto", "trust me" | Tự approve nếu score ≥ 9.5 |
|
|
199
|
+
| fast | "fast", "quick" | Bỏ qua research phase |
|
|
200
|
+
| parallel | "parallel", 3+ features | Multi-agent execution |
|
|
201
|
+
| no-test | "no test", "skip test" | Bỏ qua testing |
|
|
202
|
+
| code | path tới plan.md | Execute plan có sẵn |
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## Slide 6: Tier 2 — Workflows (Tầng Quản Lý)
|
|
207
|
+
|
|
208
|
+
**18 prompts + 12 agents** | Mỗi command = **Prompt** (workflow) + **Agent** (persona)
|
|
209
|
+
|
|
210
|
+
| Nhóm | Commands | Agent | Skills kích hoạt |
|
|
211
|
+
|------|----------|-------|-----------------|
|
|
212
|
+
| Planning | `/ck-plan`, `-fast`, `-hard`, `-validate`, `-red-team` | `planner` | planning, research, docs-seeker |
|
|
213
|
+
| Scouting | `/ck-scout` | `scout` | repomix (if available) |
|
|
214
|
+
| Debugging | `/ck-debug` | `debugger` | debug methodology (4 phases) |
|
|
215
|
+
| Fixing | `/ck-fix`, `-types`, `-test`, `-ci`, `-ui`, `-fast`, `-hard`, `-logs` | `debugger` | debug, problem-solving, sequential-thinking |
|
|
216
|
+
| Testing | `/ck-test` | `tester` | web-testing |
|
|
217
|
+
| Review | `/ck-review` | `code-reviewer` | sequential-thinking |
|
|
218
|
+
| Brainstorm | `/ck-brainstorm` | `brainstormer` | research, docs-seeker |
|
|
219
|
+
| Simplify | `/ck-simplify` | `code-simplifier` | — |
|
|
220
|
+
| Git | `/ck-git` | `git-manager` | git |
|
|
221
|
+
| Docs | `/ck-docs` | `docs-manager` | docs-seeker |
|
|
222
|
+
| Q&A | `/ck-ask`, `/ck-watzup` | (không) | tuỳ context |
|
|
223
|
+
|
|
224
|
+
**12 agents** phục vụ **18 prompts** — riêng `debugger` đã power 9 prompt variants.
|
|
225
|
+
|
|
226
|
+
### Prompt Navigation (Không Phải Cross-Hub Orchestration)
|
|
227
|
+
|
|
228
|
+
Các prompt Tier 2 liên kết nhau qua **"Suggested Next Steps"** ở cuối mỗi prompt:
|
|
229
|
+
|
|
230
|
+
```
|
|
231
|
+
/ck-fix → gợi ý → /ck-test, /ck-git
|
|
232
|
+
/ck-test → gợi ý → /ck-fix, /ck-review, /ck-git
|
|
233
|
+
/ck-brainstorm → gợi ý → /ck-plan (bước 8: "Tạo implementation plan?")
|
|
234
|
+
/ck-review → gợi ý → /ck-fix, /ck-git
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
Đây là **sequential prompt chaining** (user chọn bước tiếp theo), KHÔNG phải automatic cross-hub orchestration. User quyết định có follow navigation hay không.
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## Slide 7: Tier 3 — Utility Skills (Tầng Công Cụ)
|
|
242
|
+
|
|
243
|
+
**8 core + 3 conditional** | Cung cấp capability tái sử dụng, stateless
|
|
244
|
+
|
|
245
|
+
```
|
|
246
|
+
┌──────────────────┐
|
|
247
|
+
┌──────────────>│ sequential- │<──────────────┐
|
|
248
|
+
│ │ thinking │ │
|
|
249
|
+
│ └──────────────────┘ │
|
|
250
|
+
│ ▲ │
|
|
251
|
+
┌───┴────────┐ ┌──────┴──────────┐ ┌───────┴──┐
|
|
252
|
+
│ debugger │ │ code-reviewer │ │ planner │
|
|
253
|
+
└────────────┘ └─────────────────┘ └──────────┘
|
|
254
|
+
|
|
255
|
+
→ 1 skill phục vụ NHIỀU agents = DRY principle
|
|
256
|
+
→ Leaf nodes: không bao giờ gọi skill khác
|
|
257
|
+
→ Chỉ load khi context khớp = tiết kiệm token
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
| Skill | Khả năng | Được dùng bởi |
|
|
261
|
+
|-------|---------|---------------|
|
|
262
|
+
| **research** | Web search, tổng hợp tài liệu | planner, brainstormer |
|
|
263
|
+
| **docs-seeker** | Tra cứu docs thư viện qua context7 | planner, brainstormer, docs-manager |
|
|
264
|
+
| **sequential-thinking** | Suy luận từng bước có revision | debugger, planner, code-reviewer, brainstormer |
|
|
265
|
+
| **problem-solving** | Kỹ thuật hệ thống khi bị stuck | debugger (fix skill) |
|
|
266
|
+
| **agent-browser** | Browser automation CLI | debugger (fix-ui), tester |
|
|
267
|
+
| **repomix** *(if available)* | Pack repo cho AI đọc | scout |
|
|
268
|
+
| **context-engineering** | Tối ưu token consumption | mọi agent khi bị giới hạn context |
|
|
269
|
+
| **mermaidjs-v11** | Syntax Mermaid diagram v11 | planner, visual generation |
|
|
270
|
+
| **ui-ux-pro-max** *(if available)* | Design intelligence | ui-ux-designer |
|
|
271
|
+
| **ai-multimodal** *(if available)* | Phân tích image/video (Gemini) | mọi agent cần vision |
|
|
272
|
+
| **media-processing** *(if available)* | FFmpeg/ImageMagick | mọi agent cần xử lý media |
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
## Slide 8: Tier 4 — Standalone Skills (Tầng Chuyên Gia)
|
|
277
|
+
|
|
278
|
+
**7 core + 20 deferred** | Domain expert tự đủ, không phụ thuộc CoKit core
|
|
279
|
+
|
|
280
|
+
| Nhóm | Skills |
|
|
281
|
+
|------|--------|
|
|
282
|
+
| Backend | `backend-development`, `databases`, `devops` |
|
|
283
|
+
| Frontend | `frontend-design`, `ui-styling` |
|
|
284
|
+
| Testing | `web-testing` |
|
|
285
|
+
| Git | `git` |
|
|
286
|
+
| MCP | `mcp-management` |
|
|
287
|
+
|
|
288
|
+
**Khác Tier 3 ở đâu:**
|
|
289
|
+
- Tier 3: **Phương pháp luận** — cách suy nghĩ, research, debug
|
|
290
|
+
- Tier 4: **Kiến thức chuyên môn** — cách build backend, style UI, deploy
|
|
291
|
+
|
|
292
|
+
**Pluggable:** Thêm `skills/ck-new-skill/SKILL.md` → tự động được phát hiện bởi context. Không cần sửa gì khác.
|
|
293
|
+
|
|
294
|
+
---
|
|
295
|
+
|
|
296
|
+
## Slide 9: Luồng Giao Tiếp Đầy Đủ
|
|
297
|
+
|
|
298
|
+
```mermaid
|
|
299
|
+
sequenceDiagram
|
|
300
|
+
actor User
|
|
301
|
+
participant T1 as Tier 1: /ck-cook
|
|
302
|
+
participant T2a as Tier 2: scout
|
|
303
|
+
participant T2b as Tier 2: planner
|
|
304
|
+
participant T2c as Tier 2: tester
|
|
305
|
+
participant T2d as Tier 2: code-reviewer
|
|
306
|
+
participant T3 as Tier 3: Skills
|
|
307
|
+
|
|
308
|
+
User->>T1: /ck-cook "Add auth"
|
|
309
|
+
|
|
310
|
+
T1->>T2a: Quét codebase
|
|
311
|
+
T2a->>T3: repomix (if available)
|
|
312
|
+
T2a-->>T1: File map
|
|
313
|
+
|
|
314
|
+
T1->>T2b: Tạo plan
|
|
315
|
+
T2b->>T3: research + docs-seeker
|
|
316
|
+
T2b-->>T1: Plan.md
|
|
317
|
+
|
|
318
|
+
Note over T1: Implement code<br/>(fullstack-developer agent)
|
|
319
|
+
Note over T1: Simplify code<br/>(code-simplifier agent)
|
|
320
|
+
|
|
321
|
+
T1->>T2c: Chạy tests
|
|
322
|
+
T2c-->>T1: Kết quả
|
|
323
|
+
|
|
324
|
+
T1->>T2d: Code review
|
|
325
|
+
T2d->>T3: sequential-thinking
|
|
326
|
+
T2d-->>T1: Score + feedback
|
|
327
|
+
|
|
328
|
+
Note over T1: docs-manager → cập nhật docs
|
|
329
|
+
Note over T1: git-manager → commit & push
|
|
330
|
+
T1-->>User: Feature delivered
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## Slide 10: Nguyên Tắc Thiết Kế
|
|
336
|
+
|
|
337
|
+
### 1. Hub-and-Spoke (Không Phải Mesh)
|
|
338
|
+
Orchestrators (hub) delegate cho specialists (spokes). **Không có** giao tiếp ngang hàng giữa agents. Các prompt Tier 2 gợi ý bước tiếp theo, nhưng **user quyết định** — đó là navigation, không phải automatic orchestration.
|
|
339
|
+
|
|
340
|
+
### 2. Separation of Concerns
|
|
341
|
+
Mỗi resource làm MỘT việc tốt:
|
|
342
|
+
- **Prompt** = định nghĩa workflow
|
|
343
|
+
- **Agent** = định nghĩa expertise/persona
|
|
344
|
+
- **Skill** = cung cấp knowledge/methodology
|
|
345
|
+
|
|
346
|
+
### 3. DRY qua Shared Skills
|
|
347
|
+
`sequential-thinking` viết 1 lần → dùng bởi debugger, planner, code-reviewer, brainstormer.
|
|
348
|
+
|
|
349
|
+
### 4. Graceful Degradation
|
|
350
|
+
External tools dùng `(if available)`. Không có repomix? Scout fallback về built-in search.
|
|
351
|
+
|
|
352
|
+
### 5. Pluggable Architecture
|
|
353
|
+
Skill mới = file SKILL.md mới. Không cần đăng ký. Không sửa prompt nào. Context-activated.
|
|
354
|
+
|
|
355
|
+
---
|
|
356
|
+
|
|
357
|
+
## Slide 11: Bảng Tóm Tắt
|
|
358
|
+
|
|
359
|
+
```
|
|
360
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
361
|
+
│ COKIT ORCHESTRATION - TÓM TẮT │
|
|
362
|
+
├─────────────────────────────────────────────────────────────┤
|
|
363
|
+
│ │
|
|
364
|
+
│ TIER 1 (2) /ck-cook, /ck-bootstrap │
|
|
365
|
+
│ ───────── Điều phối workflow end-to-end │
|
|
366
|
+
│ │
|
|
367
|
+
│ TIER 2 (30) 18 prompts + 12 agents │
|
|
368
|
+
│ ───────── /ck-plan, /ck-fix, /ck-test, /ck-review... │
|
|
369
|
+
│ Thực thi từng domain cụ thể │
|
|
370
|
+
│ │
|
|
371
|
+
│ TIER 3 (11) 8 core + 3 conditional skills │
|
|
372
|
+
│ ───────── research, sequential-thinking, docs-seeker │
|
|
373
|
+
│ Cung cấp capability tái sử dụng │
|
|
374
|
+
│ │
|
|
375
|
+
│ TIER 4 (27) 7 core + 20 deferred skills │
|
|
376
|
+
│ ───────── backend-dev, databases, devops, ui-styling │
|
|
377
|
+
│ Domain expert tự đủ │
|
|
378
|
+
│ │
|
|
379
|
+
│ TỔNG: 4 tiers │ 34 prompts │ 12 agents │ 27 skills │
|
|
380
|
+
│ 5 instructions │ 5 collections │ 4 rules │
|
|
381
|
+
│ │
|
|
382
|
+
│ MỘT COMMAND ĐỂ ĐIỀU PHỐI TẤT CẢ: /ck-cook │
|
|
383
|
+
│ │
|
|
384
|
+
└─────────────────────────────────────────────────────────────┘
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
## Slide 12: Thử Ngay
|
|
390
|
+
|
|
391
|
+
| Muốn... | Gõ |
|
|
392
|
+
|---------|-----|
|
|
393
|
+
| Build feature end-to-end | `/ck-cook "mô tả"` |
|
|
394
|
+
| Lên plan trước khi code | `/ck-plan "mô tả"` |
|
|
395
|
+
| Fix bug | `/ck-fix "mô tả lỗi"` |
|
|
396
|
+
| Fix TypeScript errors | `/ck-fix-types` |
|
|
397
|
+
| Chạy & phân tích tests | `/ck-test` |
|
|
398
|
+
| Review code quality | `/ck-review` |
|
|
399
|
+
| Tìm kiếm trong codebase | `/ck-scout "từ khoá"` |
|
|
400
|
+
| Brainstorm giải pháp | `/ck-brainstorm "vấn đề"` |
|
|
401
|
+
| Hỏi nhanh | `/ck-ask "câu hỏi"` |
|
|
402
|
+
| Commit changes | `/ck-git` |
|
|
403
|
+
|
|
404
|
+
**Mẹo:** Bắt đầu với `/ck-cook` — nó tự orchestrate mọi thứ phía sau.
|
|
@@ -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 |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Upstream → CoKit Porting Rules
|
|
2
2
|
|
|
3
|
-
**Purpose:** Definitive reference for porting
|
|
3
|
+
**Purpose:** Definitive reference for porting upstream content to CoKit (GitHub Copilot).
|
|
4
4
|
**Audience:** AI agents and developers performing sync/port operations.
|
|
5
5
|
**Last Updated:** 2026-02-25
|
|
6
6
|
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
|
|
9
9
|
## 0. Porting Workflow
|
|
10
10
|
|
|
11
|
-
**IMPORTANT:** Always follow this order when porting from
|
|
11
|
+
**IMPORTANT:** Always follow this order when porting from upstream.
|
|
12
12
|
|
|
13
13
|
### Step 1: Inventory CoKit
|
|
14
14
|
Map what CoKit already has — prompts, agents, skills, instructions. This is the source of truth.
|
|
15
15
|
|
|
16
|
-
### Step 2: Diff against
|
|
17
|
-
Compare
|
|
16
|
+
### Step 2: Diff against upstream
|
|
17
|
+
Compare upstream commands/agents/skills with CoKit inventory. Identify:
|
|
18
18
|
- **Updates** — existing CoKit files that need content sync
|
|
19
|
-
- **New variants** —
|
|
19
|
+
- **New variants** — upstream has a new sub-command (e.g., `/plan:red-team`) → create as `/ck-plan-red-team` variant
|
|
20
20
|
- **New top-level** — entirely new prompt/agent/skill → create in CoKit
|
|
21
21
|
|
|
22
22
|
### Step 3: Verify Copilot compatibility
|
|
@@ -40,8 +40,8 @@ Key things to re-check periodically:
|
|
|
40
40
|
|
|
41
41
|
## 1. Syntax Conversions
|
|
42
42
|
|
|
43
|
-
|
|
|
44
|
-
|
|
43
|
+
| Upstream | CoKit | Notes |
|
|
44
|
+
|----------|-------|-------|
|
|
45
45
|
| `$ARGUMENTS` | `${input}` | Copilot prompt variable |
|
|
46
46
|
| `@agent-name` | `` `agent-name` agent `` | No `@` prefix in Copilot |
|
|
47
47
|
| `.claude/` paths | `$HOME/.copilot/` | Global config directory |
|
|
@@ -50,7 +50,7 @@ Key things to re-check periodically:
|
|
|
50
50
|
|
|
51
51
|
## 2. Command References
|
|
52
52
|
|
|
53
|
-
|
|
|
53
|
+
| Upstream | CoKit | Notes |
|
|
54
54
|
|-----------|-------|-------|
|
|
55
55
|
| `/fix:types` | `/ck-fix-types` | Colon → hyphen |
|
|
56
56
|
| `/fix:tests` | `/ck-fix-test` | Colon → hyphen |
|
|
@@ -59,12 +59,12 @@ Key things to re-check periodically:
|
|
|
59
59
|
| `/plan --fast` | `/ck-plan-fast` | Flag → separate command |
|
|
60
60
|
| `SlashCommand(/scout)` | `/ck-scout` | Remove `SlashCommand()` wrapper |
|
|
61
61
|
|
|
62
|
-
**New variant?** If
|
|
62
|
+
**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.
|
|
63
63
|
|
|
64
64
|
## 3. Tool/API Conversions
|
|
65
65
|
|
|
66
|
-
|
|
|
67
|
-
|
|
66
|
+
| Upstream | CoKit | Notes |
|
|
67
|
+
|----------|-------|-------|
|
|
68
68
|
| `AskUserQuestion` | Natural conversation | Just ask the user directly |
|
|
69
69
|
| `Task(subagent_type="X")` | Natural language delegation | Describe what agent should do |
|
|
70
70
|
| `TaskCreate/TaskUpdate/TaskList` | Checklist/todo tracking | No task management API |
|
|
@@ -96,8 +96,8 @@ Key things to re-check periodically:
|
|
|
96
96
|
### CoKit agents (12)
|
|
97
97
|
`brainstormer`, `code-reviewer`, `code-simplifier`, `debugger`, `docs-manager`, `fullstack-developer`, `git-manager`, `planner`, `researcher`, `scout`, `tester`, `ui-ux-designer`
|
|
98
98
|
|
|
99
|
-
###
|
|
100
|
-
|
|
|
99
|
+
### Upstream agents that DON'T exist in CoKit
|
|
100
|
+
| Upstream Agent | CoKit Replacement |
|
|
101
101
|
|-----------------|-------------------|
|
|
102
102
|
| `project-manager` | Direct action (describe what to do) |
|
|
103
103
|
| `journal-writer` | Remove or convert to manual journaling |
|
|
@@ -147,7 +147,6 @@ New variant → update flowchart + Deep Dive in `index.html`, do NOT bump prompt
|
|
|
147
147
|
- [ ] `docs/cokit-comprehensive-mapping-guide.md`
|
|
148
148
|
- [ ] `docs/cokit-team-presentation.md`
|
|
149
149
|
- [ ] `docs/cokit-sync-and-maintenance-guide.md`
|
|
150
|
-
- [ ] `docs/guide-next-steps-speckit-cokit-implementation.md`
|
|
151
150
|
- [ ] `docs/project-overview-pdr.md`
|
|
152
151
|
|
|
153
152
|
### If new commands added
|
|
@@ -164,7 +163,7 @@ grep -r "@\w+-\w+" agents/ skills/ prompts/ # @agent-name syntax
|
|
|
164
163
|
grep -r "project-manager" agents/ skills/ prompts/ # Non-existent agent
|
|
165
164
|
grep -r "subagent" agents/ # Wrong terminology
|
|
166
165
|
grep -r "\.claude/" agents/ skills/ prompts/ # Wrong path
|
|
167
|
-
grep -r "AskUserQuestion\|SlashCommand" agents/ skills/ prompts/ #
|
|
166
|
+
grep -r "AskUserQuestion\|SlashCommand" agents/ skills/ prompts/ # Upstream-only APIs
|
|
168
167
|
grep -r "chrome-devtools" agents/ # Renamed tool
|
|
169
168
|
grep -r "\$ARGUMENTS" agents/ prompts/ # Wrong variable
|
|
170
169
|
grep -r "^name:\|^model:\|^memory:" agents/ prompts/ # Invalid frontmatter
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cokit-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.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
|
@@ -48,8 +48,6 @@ 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
53
|
* Use multiple `researcher` agents in parallel to explore the user's request, idea validation, challenges, and find the best possible solutions.
|
|
@@ -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 |
|
|
@@ -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 |
|