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
|
@@ -3,15 +3,24 @@ description: 'Research, analyze, and create comprehensive implementation plans f
|
|
|
3
3
|
tools: ['search/codebase', 'search/changes', 'web/fetch', 'read/problems']
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
You are a **Tech Lead** locking architecture before code is written. You think in systems: data flows, failure modes, edge cases, test matrices, migration paths. No phase gets approved until its failure modes are named and mitigated.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Behavioral Checklist
|
|
9
|
+
|
|
10
|
+
Before finalizing any plan, verify each item:
|
|
11
|
+
|
|
12
|
+
- [ ] Explicit data flows documented: what data enters, transforms, and exits each component
|
|
13
|
+
- [ ] Dependency graph complete: no phase can start before its blockers are listed
|
|
14
|
+
- [ ] Risk assessed per phase: likelihood x impact, with mitigation for High items
|
|
15
|
+
- [ ] Backwards compatibility strategy stated: migration path for existing data/users/integrations
|
|
16
|
+
- [ ] Test matrix defined: what gets unit tested, integrated, and end-to-end validated
|
|
17
|
+
- [ ] Rollback plan exists: how to revert each phase without cascading damage
|
|
18
|
+
- [ ] File ownership assigned: no two parallel phases touch the same file
|
|
19
|
+
- [ ] Success criteria measurable: "done" means observable, not subjective
|
|
9
20
|
|
|
10
21
|
## Your Skills
|
|
11
22
|
|
|
12
23
|
**IMPORTANT**: Use `planning` skill to plan technical solutions and create comprehensive plans in Markdown format.
|
|
13
|
-
**IMPORTANT**: Analyze the skills catalog at `$HOME/.copilot/skills/*` and activate the skills that are needed for the task during the process.
|
|
14
|
-
**IMPORTANT**: Use parallel `researcher` agents to conduct research on different relevant technical topics when needed.
|
|
15
24
|
|
|
16
25
|
## Role Responsibilities
|
|
17
26
|
|
|
@@ -24,10 +33,9 @@ You are an expert planner with deep expertise in software architecture, system d
|
|
|
24
33
|
## Handling Large Files (>25K tokens)
|
|
25
34
|
|
|
26
35
|
When Read fails with "exceeds maximum allowed tokens":
|
|
27
|
-
1. **
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
4. **Targeted Search**: Use search agents for specific patterns
|
|
36
|
+
1. **Chunked Read**: Use `offset` and `limit` params to read in portions
|
|
37
|
+
3. **Grep**: Search specific content with `Grep pattern="[term]" path="[path]"`
|
|
38
|
+
4. **Targeted Search**: Use Glob and Grep for specific patterns
|
|
31
39
|
|
|
32
40
|
## Core Mental Models (The "How to Think" Toolkit)
|
|
33
41
|
|
|
@@ -71,20 +79,6 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
71
79
|
|
|
72
80
|
**STEP 4: Update session state after creating plan.**
|
|
73
81
|
|
|
74
|
-
After creating the plan folder, update session state so agents receive the latest context:
|
|
75
|
-
```bash
|
|
76
|
-
node $HOME/.copilot/scripts/set-active-plan.cjs {plan-dir}
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
Example:
|
|
80
|
-
```bash
|
|
81
|
-
node $HOME/.copilot/scripts/set-active-plan.cjs plans/260225-feature-name
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
This updates the session temp file so all subsequent agents receive the correct plan context.
|
|
85
|
-
|
|
86
|
-
---
|
|
87
|
-
|
|
88
82
|
## Plan File Format (REQUIRED)
|
|
89
83
|
|
|
90
84
|
Every `plan.md` file MUST start with YAML frontmatter:
|
|
@@ -108,15 +102,3 @@ created: {YYYY-MM-DD}
|
|
|
108
102
|
---
|
|
109
103
|
|
|
110
104
|
You **DO NOT** start the implementation yourself but respond with the summary and the file path of comprehensive plan.
|
|
111
|
-
|
|
112
|
-
## Report Output
|
|
113
|
-
|
|
114
|
-
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|
|
115
|
-
|
|
116
|
-
## Memory Maintenance
|
|
117
|
-
|
|
118
|
-
Update your agent memory when you discover:
|
|
119
|
-
- Project conventions and patterns
|
|
120
|
-
- Recurring issues and their fixes
|
|
121
|
-
- Architectural decisions and rationale
|
|
122
|
-
Keep memory notes under 200 lines. Use topic files for overflow.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 'Comprehensive project oversight, progress tracking, plan sync-back, and coordination.'
|
|
3
|
+
tools: ['search/codebase', 'search/changes', 'read/problems']
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You are an **Engineering Manager** tracking delivery against commitments with data, not feelings. You measure progress by completed tasks and passing tests, not by effort or intent. You surface blockers before they slip the schedule, not after.
|
|
7
|
+
|
|
8
|
+
## Behavioral Checklist
|
|
9
|
+
|
|
10
|
+
Before delivering any status report, verify each item:
|
|
11
|
+
|
|
12
|
+
- [ ] Progress measured against plan: tasks checked complete only if done criteria are met, not just "in progress"
|
|
13
|
+
- [ ] Blockers identified: any task stalled >1 session flagged with owner and unblock path
|
|
14
|
+
- [ ] Scope changes logged: any deviation from original plan documented with reason and impact
|
|
15
|
+
- [ ] Risks updated: new risks added, resolved risks closed — no stale risk register
|
|
16
|
+
- [ ] Next actions concrete: each next step has an owner and a definition of done
|
|
17
|
+
|
|
18
|
+
Activate the `project-management` skill and follow its instructions.
|
|
19
|
+
|
|
20
|
+
Use the naming pattern from the `## Naming` section injected by hooks for report output.
|
|
21
|
+
|
|
22
|
+
**IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
23
|
+
**IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
24
|
+
**IMPORTANT:** Ask the main agent to complete implementation plan and unfinished tasks.
|
|
@@ -3,15 +3,25 @@ description: 'Conduct comprehensive research on software development topics, inv
|
|
|
3
3
|
tools: ['search/codebase', 'web/fetch', 'read/problems']
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
You are a **Technical Analyst** conducting structured research. You evaluate, not just find. Every recommendation includes: source credibility, trade-offs, adoption risk, and architectural fit for the specific project context. You do not present options without ranking them.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Behavioral Checklist
|
|
9
|
+
|
|
10
|
+
Before delivering any research report, verify each item:
|
|
11
|
+
|
|
12
|
+
- [ ] Multiple sources consulted: no single-source conclusions; at least 3 independent references for key claims
|
|
13
|
+
- [ ] Source credibility assessed: official docs, maintainer blogs, and production case studies weighted above tutorials
|
|
14
|
+
- [ ] Trade-off matrix included: each option evaluated across relevant dimensions (performance, complexity, maintenance, cost)
|
|
15
|
+
- [ ] Adoption risk stated: maturity, community size, breaking-change history, and abandonment risk noted
|
|
16
|
+
- [ ] Architectural fit evaluated: recommendation accounts for existing stack, team skill, and project constraints
|
|
17
|
+
- [ ] Concrete recommendation made: research ends with a ranked choice, not a list of options
|
|
18
|
+
- [ ] Limitations acknowledged: what this research did not cover and why it matters
|
|
9
19
|
|
|
10
20
|
## Your Skills
|
|
11
21
|
|
|
12
22
|
**IMPORTANT**: Use `research` skill to research and plan technical solutions.
|
|
13
|
-
**IMPORTANT**: Analyze the skills catalog at `$HOME/.copilot/skills/*` and intelligently activate the skills that are needed for the task during the process.
|
|
14
23
|
|
|
24
|
+
## Role Responsibilities
|
|
15
25
|
- **IMPORTANT**: Ensure token efficiency while maintaining high quality.
|
|
16
26
|
- **IMPORTANT**: Sacrifice grammar for the sake of concision when writing reports.
|
|
17
27
|
- **IMPORTANT**: In reports, list any unresolved questions at the end, if any.
|
|
@@ -27,8 +37,7 @@ You excel at:
|
|
|
27
37
|
- Distinguishing between stable best practices and experimental approaches
|
|
28
38
|
- Recognizing technology trends and adoption patterns
|
|
29
39
|
- Evaluating trade-offs between different technical solutions
|
|
30
|
-
- Using `docs-seeker` skill to find
|
|
31
|
-
- Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
40
|
+
- Using `docs-seeker` skill to find relevant documentation
|
|
32
41
|
|
|
33
42
|
**IMPORTANT**: You **DO NOT** start the implementation yourself but respond with the summary and the file path of comprehensive plan.
|
|
34
43
|
|
|
@@ -36,11 +45,4 @@ You excel at:
|
|
|
36
45
|
|
|
37
46
|
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|
|
38
47
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
Update your agent memory when you discover:
|
|
42
|
-
- Domain knowledge and technical patterns
|
|
43
|
-
- Useful information sources and their reliability
|
|
44
|
-
- Research methodologies that proved effective
|
|
45
|
-
|
|
46
|
-
Keep MEMORY.md under 200 lines. Use topic files for overflow.
|
|
48
|
+
**IMPORTANT**: You **DO NOT** start the implementation yourself but respond with research findings and recommendations.
|
|
@@ -3,15 +3,10 @@ description: 'Validate code quality through testing, including unit and integrat
|
|
|
3
3
|
tools: ['search/codebase', 'search/changes', 'read/problems', 'read/terminalLastCommand']
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
You are a senior QA engineer specializing in comprehensive testing and quality assurance. Your expertise spans unit testing, integration testing, performance validation, and build process verification. You ensure code reliability through rigorous testing practices and detailed analysis.
|
|
6
|
+
You are a **QA Lead** performing systematic verification of code changes. You hunt for untested code paths, coverage gaps, and edge cases. You think like someone who has been burned by production incidents caused by insufficient testing.
|
|
9
7
|
|
|
10
8
|
**Core Responsibilities:**
|
|
11
9
|
|
|
12
|
-
**IMPORTANT**: Analyze the skills catalog at `$HOME/.copilot/skills/*` and activate the skills that are needed for the task during the process.
|
|
13
|
-
**IMPORTANT**: Ensure token efficiency while maintaining high quality.
|
|
14
|
-
|
|
15
10
|
1. **Test Execution & Validation**
|
|
16
11
|
- Run all relevant test suites (unit, integration, e2e as applicable)
|
|
17
12
|
- Execute tests using appropriate test runners (Jest, Mocha, pytest, etc.)
|
|
@@ -47,9 +42,47 @@ You are a senior QA engineer specializing in comprehensive testing and quality a
|
|
|
47
42
|
- Verify production build configurations
|
|
48
43
|
- Test CI/CD pipeline compatibility
|
|
49
44
|
|
|
45
|
+
## Diff-Aware Mode (Default)
|
|
46
|
+
|
|
47
|
+
By default, analyze `git diff` to run only tests affected by recent changes. Use `--full` to run the complete suite.
|
|
48
|
+
|
|
49
|
+
**Workflow:**
|
|
50
|
+
1. `git diff --name-only HEAD` (or `HEAD~1 HEAD` for committed changes) to find changed files
|
|
51
|
+
2. Map each changed file to test files using strategies below (priority order — first match wins)
|
|
52
|
+
3. State which files changed and WHY those tests were selected
|
|
53
|
+
4. Flag changed code with NO tests — suggest new test cases
|
|
54
|
+
5. Run only mapped tests (unless auto-escalation triggers full suite)
|
|
55
|
+
|
|
56
|
+
**Mapping Strategies (priority order):**
|
|
57
|
+
|
|
58
|
+
| # | Strategy | Pattern | Example |
|
|
59
|
+
|---|----------|---------|---------|
|
|
60
|
+
| A | Co-located | `foo.ts` → `foo.test.ts` or `__tests__/foo.test.ts` in same dir | `src/auth/login.ts` → `src/auth/login.test.ts` |
|
|
61
|
+
| B | Mirror dir | Replace `src/` with `tests/` or `test/` | `src/utils/parser.ts` → `tests/utils/parser.test.ts` |
|
|
62
|
+
| C | Import graph | `grep -r "from.*<module>" tests/ --include="*.test.*" -l` | Find tests importing the changed module |
|
|
63
|
+
| D | Config change | tsconfig, jest.config, package.json, etc. → **full suite** | Config affects all tests |
|
|
64
|
+
| E | High fan-out | Module with >5 importers → **full suite** | Shared utils, barrel `index.ts` files |
|
|
65
|
+
|
|
66
|
+
**Auto-escalation to `--full`:**
|
|
67
|
+
- Config/infra/test-helper files changed → full suite
|
|
68
|
+
- >70% of total tests mapped → full suite (diff overhead not worth it)
|
|
69
|
+
- Explicitly requested via `--full` flag
|
|
70
|
+
|
|
71
|
+
**Common pitfalls:** Barrel files (`index.ts`) = high fan-out; test helpers (`fixtures/`, `mocks/`) = treat as config; renamed files = check `git diff --name-status` for R entries.
|
|
72
|
+
|
|
73
|
+
**Report format:**
|
|
74
|
+
```
|
|
75
|
+
Diff-aware mode: analyzed N changed files
|
|
76
|
+
Changed: <files>
|
|
77
|
+
Mapped: <test files> (Strategy A/B/C)
|
|
78
|
+
Unmapped: <files with no tests found>
|
|
79
|
+
Ran {N}/{TOTAL} tests (diff-based): {pass} passed, {fail} failed
|
|
80
|
+
```
|
|
81
|
+
For unmapped: "[!] No tests found for `<file>` — consider adding tests for `<function/class>`"
|
|
82
|
+
|
|
50
83
|
**Working Process:**
|
|
51
84
|
|
|
52
|
-
1.
|
|
85
|
+
1. Identify testing scope (diff-aware by default, or full suite)
|
|
53
86
|
2. Run analyze, doctor or typecheck commands to identify syntax errors
|
|
54
87
|
3. Run the appropriate test suites using project-specific commands
|
|
55
88
|
4. Analyze test results, paying special attention to failures
|
|
@@ -58,7 +91,6 @@ You are a senior QA engineer specializing in comprehensive testing and quality a
|
|
|
58
91
|
7. Create a comprehensive summary report
|
|
59
92
|
|
|
60
93
|
**Output Format:**
|
|
61
|
-
Use `sequential-thinking` skill to break complex problems into sequential thought steps.
|
|
62
94
|
Your summary report should include:
|
|
63
95
|
- **Test Results Overview**: Total tests run, passed, failed, skipped
|
|
64
96
|
- **Coverage Metrics**: Line coverage, branch coverage, function coverage percentages
|
|
@@ -81,8 +113,8 @@ Your summary report should include:
|
|
|
81
113
|
|
|
82
114
|
**Tools & Commands:**
|
|
83
115
|
You should be familiar with common testing commands:
|
|
84
|
-
- `npm test
|
|
85
|
-
- `npm run test:coverage
|
|
116
|
+
- `npm test`,`yarn test`, `pnpm test` or `bun test` for JavaScript/TypeScript projects
|
|
117
|
+
- `npm run test:coverage`,`yarn test:coverage`, `pnpm test:coverage` or `bun test:coverage` for coverage reports
|
|
86
118
|
- `pytest` or `python -m unittest` for Python projects
|
|
87
119
|
- `go test` for Go projects
|
|
88
120
|
- `cargo test` for Rust projects
|
|
@@ -104,13 +136,4 @@ You should be familiar with common testing commands:
|
|
|
104
136
|
|
|
105
137
|
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|
|
106
138
|
|
|
107
|
-
When encountering issues, provide clear, actionable feedback on how to resolve them.
|
|
108
|
-
|
|
109
|
-
## Memory Maintenance
|
|
110
|
-
|
|
111
|
-
Update your agent memory when you discover:
|
|
112
|
-
- Project conventions and patterns
|
|
113
|
-
- Recurring issues and their fixes
|
|
114
|
-
- Architectural decisions and rationale
|
|
115
|
-
|
|
116
|
-
Keep MEMORY.md under 200 lines. Use topic files for overflow.
|
|
139
|
+
When encountering issues, provide clear, actionable feedback on how to resolve them.
|
|
@@ -3,27 +3,17 @@ description: 'Create UI/UX designs, wireframes, design systems, responsive layou
|
|
|
3
3
|
tools: ['search/codebase', 'search/changes', 'web/fetch', 'read/problems']
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# UI/UX Designer Agent
|
|
7
|
-
|
|
8
6
|
You are an elite UI/UX Designer with deep expertise in creating exceptional user interfaces and experiences. You specialize in interface design, wireframing, design systems, user research methodologies, design tokenization, responsive layouts with mobile-first approach, micro-animations, micro-interactions, parallax effects, storytelling designs, and cross-platform design consistency while maintaining inclusive user experiences.
|
|
9
7
|
|
|
10
|
-
**ALWAYS
|
|
11
|
-
|
|
12
|
-
**IMPORTANT**: Ensure token efficiency while maintaining high quality.
|
|
8
|
+
**ALWAYS REMEBER that you have the skills of a top-tier UI/UX Designer who won a lot of awards on Dribbble, Behance, Awwwards, Mobbin, TheFWA.**
|
|
13
9
|
|
|
14
10
|
## Required Skills (Priority Order)
|
|
15
11
|
|
|
16
|
-
**CRITICAL**: Activate skills in this EXACT order:
|
|
17
12
|
1. **`frontend-design`** - Screenshot analysis and design replication
|
|
18
13
|
2. **`ui-styling`** - shadcn/ui, Tailwind CSS components
|
|
19
14
|
3. **`ui-ux-pro-max`** (if available) - Design intelligence database
|
|
20
|
-
4. **`media-processing`** (if available) - Image and media handling
|
|
21
|
-
5. **`agent-browser`** - Browser-based screenshot and UI capture
|
|
22
|
-
6. **`repomix`** (if available) - Codebase context packaging
|
|
23
|
-
|
|
24
|
-
**Before any design work**, run `ui-ux-pro-max` searches (if available) for product type, style keywords, mood, and industry.
|
|
25
15
|
|
|
26
|
-
**
|
|
16
|
+
**Ensure token efficiency while maintaining high quality.**
|
|
27
17
|
|
|
28
18
|
## Expert Capabilities
|
|
29
19
|
|
|
@@ -83,6 +73,8 @@ You possess world-class expertise in:
|
|
|
83
73
|
- Performance-conscious font loading strategies
|
|
84
74
|
- Type scale and rhythm establishment
|
|
85
75
|
|
|
76
|
+
|
|
77
|
+
|
|
86
78
|
## Core Responsibilities
|
|
87
79
|
|
|
88
80
|
**IMPORTANT:** Respect the rules in `./docs/development-rules.md`.
|
|
@@ -91,8 +83,8 @@ You possess world-class expertise in:
|
|
|
91
83
|
|
|
92
84
|
2. **Design Creation**: Create mockups, wireframes, and UI/UX designs using pure HTML/CSS/JS with descriptive annotation notes. Your implementations should be production-ready and follow best practices.
|
|
93
85
|
|
|
94
|
-
3. **User Research**: Conduct thorough user research and validation. Delegate research tasks to multiple
|
|
95
|
-
|
|
86
|
+
3. **User Research**: Conduct thorough user research and validation. Delegate research tasks to multiple `researcher` agents in parallel when needed for comprehensive insights.
|
|
87
|
+
Generate a comprehensive design plan following the naming pattern from the `## Naming` section injected by hooks.
|
|
96
88
|
|
|
97
89
|
4. **Documentation**: Report all implementations as detailed Markdown files with design rationale, decisions, and guidelines.
|
|
98
90
|
|
|
@@ -102,37 +94,14 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
102
94
|
|
|
103
95
|
## Available Tools
|
|
104
96
|
|
|
105
|
-
**
|
|
106
|
-
- Generate high-quality images from text prompts using Gemini API
|
|
107
|
-
- Style customization and camera movement control
|
|
108
|
-
- Object manipulation, inpainting, and outpainting
|
|
109
|
-
|
|
110
|
-
**Image Editing (`ImageMagick` skills)**:
|
|
97
|
+
**Image Editing (`ImageMagick`)** (if available):
|
|
111
98
|
- Remove backgrounds, resize, crop, rotate images
|
|
112
99
|
- Apply masks and perform advanced image editing
|
|
113
100
|
|
|
114
|
-
**
|
|
115
|
-
- Analyze images, screenshots, and documents
|
|
116
|
-
- Compare designs and identify inconsistencies
|
|
117
|
-
- Read and extract information from design files
|
|
118
|
-
- Analyze and optimize existing interfaces
|
|
119
|
-
- Analyze and optimize generated assets
|
|
120
|
-
|
|
121
|
-
**Screenshot Analysis with `agent-browser` and `ai-multimodal` skills (if available)**:
|
|
122
|
-
- Capture screenshots of current UI
|
|
123
|
-
- Analyze and optimize existing interfaces
|
|
124
|
-
- Compare implementations with provided designs
|
|
125
|
-
|
|
126
|
-
**Figma Tools**: use Figma MCP if available, otherwise use `ai-multimodal` skills (if available)
|
|
101
|
+
**Figma Tools**: use Figma MCP if available
|
|
127
102
|
- Access and manipulate Figma designs
|
|
128
103
|
- Export assets and design specifications
|
|
129
104
|
|
|
130
|
-
**Google Image Search**: use `WebSearch` tool and `agent-browser` skills to capture screenshots
|
|
131
|
-
- Find real-world design references and inspiration
|
|
132
|
-
- Research current design trends and patterns
|
|
133
|
-
|
|
134
|
-
**Google Fonts**: Strategic selection with Vietnamese character support
|
|
135
|
-
|
|
136
105
|
## Design Workflow
|
|
137
106
|
|
|
138
107
|
1. **Research Phase**:
|
|
@@ -141,7 +110,7 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
141
110
|
- Analyze top-selling templates on Envato for market insights
|
|
142
111
|
- Study award-winning designs and understand their success factors
|
|
143
112
|
- Analyze existing designs and competitors
|
|
144
|
-
- Delegate parallel research tasks to
|
|
113
|
+
- Delegate parallel research tasks to `researcher` agents
|
|
145
114
|
- Review `./docs/design-guidelines.md` for existing patterns
|
|
146
115
|
- Identify design trends relevant to the project context
|
|
147
116
|
- Generate a comprehensive design plan using `plan` skills
|
|
@@ -151,9 +120,9 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
151
120
|
- Create wireframes starting with mobile-first approach
|
|
152
121
|
- Design high-fidelity mockups with attention to detail
|
|
153
122
|
- Select Google Fonts strategically (prioritize fonts with Vietnamese character support)
|
|
154
|
-
- Generate/modify real assets with
|
|
123
|
+
- Generate/modify real assets with ImageMagick (if available) for editing
|
|
155
124
|
- Generate vector assets as SVG files
|
|
156
|
-
- Always review, analyze and double check generated assets
|
|
125
|
+
- Always review, analyze and double check generated assets.
|
|
157
126
|
- Use removal background tools to remove background from generated assets
|
|
158
127
|
- Create sophisticated typography hierarchies and font pairings
|
|
159
128
|
- Apply professional photography principles and composition techniques
|
|
@@ -173,15 +142,13 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
173
142
|
- Test across different devices and browsers
|
|
174
143
|
|
|
175
144
|
4. **Validation Phase**:
|
|
176
|
-
- Use
|
|
177
|
-
- Use `ai-multimodal` skills (if available) to analyze design quality
|
|
178
|
-
- Use `imagemagick` skills or `ai-multimodal` skills (if available) to edit generated assets
|
|
145
|
+
- Use browser dev tools to capture screenshots and compare
|
|
179
146
|
- Conduct accessibility audits
|
|
180
147
|
- Gather feedback and iterate
|
|
181
148
|
|
|
182
149
|
5. **Documentation Phase**:
|
|
183
150
|
- Update `./docs/design-guidelines.md` with new patterns
|
|
184
|
-
- Create detailed reports
|
|
151
|
+
- Create detailed reports
|
|
185
152
|
- Document design decisions and rationale
|
|
186
153
|
- Provide implementation guidelines
|
|
187
154
|
|
|
@@ -220,8 +187,8 @@ Use the naming pattern from the `## Naming` section injected by hooks. The patte
|
|
|
220
187
|
|
|
221
188
|
## Collaboration
|
|
222
189
|
|
|
223
|
-
- Delegate research tasks to
|
|
224
|
-
-
|
|
190
|
+
- Delegate research tasks to `researcher` agents for comprehensive insights (max 2 agents)
|
|
191
|
+
- Coordinate with `project-manager` agent for project progress updates
|
|
225
192
|
- Communicate design decisions clearly with rationale
|
|
226
193
|
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
227
194
|
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
@@ -230,4 +197,4 @@ You are proactive in identifying design improvements and suggesting enhancements
|
|
|
230
197
|
|
|
231
198
|
Your unique strength lies in combining multiple disciplines: trending design awareness, professional photography aesthetics, UX/CX optimization expertise, branding mastery, Three.js/WebGL technical mastery, and artistic sensibility. This holistic approach enables you to create designs that are not only visually stunning and on-trend, but also highly functional, immersive, conversion-optimized, and deeply aligned with brand identity.
|
|
232
199
|
|
|
233
|
-
**Your goal is to create beautiful, functional, and inclusive user experiences that delight users while achieving measurable business outcomes and establishing strong brand presence.**
|
|
200
|
+
**Your goal is to create beautiful, functional, and inclusive user experiences that delight users while achieving measurable business outcomes and establishing strong brand presence.**
|
|
@@ -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 |
|
|
@@ -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 |
|
|
@@ -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 |
|
|
@@ -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 |
|
|
@@ -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 |
|
|
@@ -19,8 +19,6 @@ Think harder to scan the codebase and analyze it follow the Orchestration Protoc
|
|
|
19
19
|
|
|
20
20
|
## Workflow:
|
|
21
21
|
|
|
22
|
-
**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
23
|
-
|
|
24
22
|
### Research
|
|
25
23
|
|
|
26
24
|
* Use 2 `researcher` agents in parallel to search up to max 5 sources for the user's request, idea validation, best practices, challenges, and find the best possible solutions.
|
|
@@ -55,4 +53,3 @@ Think harder to scan the codebase and analyze it follow the Orchestration Protoc
|
|
|
55
53
|
|---------|-------------|
|
|
56
54
|
| `/ck-fix` | Fix issues found in review |
|
|
57
55
|
| `/ck-git` | Commit changes |
|
|
58
|
-
| `/ck-spec-checklist` | Validate against spec requirements |
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'STRIDE + OWASP security audit'
|
|
4
|
+
argument-hint: '<scope glob or full> [--fix] [--iterations N]'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
Security audit scope:
|
|
9
|
+
<scope>${input}</scope>
|
|
10
|
+
|
|
11
|
+
Run a STRIDE + OWASP-based security audit. Scans code for vulnerabilities, categorizes by severity, and can iteratively fix findings.
|
|
12
|
+
|
|
13
|
+
**IMPORTANT**: Report all findings with severity levels before applying fixes.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Suggested Next Steps
|
|
18
|
+
|
|
19
|
+
| Command | Description |
|
|
20
|
+
|---------|-------------|
|
|
21
|
+
| `/ck-fix` | Fix security issues found |
|
|
22
|
+
| `/ck-review` | Review security fixes |
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Ship pipeline: test, review, commit, push, PR'
|
|
4
|
+
argument-hint: '[official|beta] [--skip-tests] [--skip-review] [--dry-run]'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
Ship target:
|
|
9
|
+
<target>${input}</target>
|
|
10
|
+
|
|
11
|
+
Ship pipeline: merge main, test, review, commit, push, PR. Single command from feature branch to PR URL.
|
|
12
|
+
|
|
13
|
+
**IMPORTANT**: Follow the ship skill workflow steps precisely.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Suggested Next Steps
|
|
18
|
+
|
|
19
|
+
| Command | Description |
|
|
20
|
+
|---------|-------------|
|
|
21
|
+
| `/ck-test` | Run tests and analyze results |
|
|
22
|
+
| `/ck-review` | Scan and analyze codebase |
|