cokit-cli 1.2.7 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -31
- package/agents/ck-brainstormer.agent.md +92 -0
- package/agents/ck-code-reviewer.agent.md +145 -0
- package/agents/ck-code-simplifier.agent.md +41 -0
- package/agents/ck-debugger.agent.md +142 -0
- package/agents/ck-docs-manager.agent.md +209 -0
- package/agents/ck-fullstack-developer.agent.md +106 -0
- package/agents/ck-git-manager.agent.md +7 -0
- package/agents/ck-planner.agent.md +104 -0
- package/agents/ck-project-manager.agent.md +24 -0
- package/agents/ck-researcher.agent.md +48 -0
- package/agents/ck-tester.agent.md +139 -0
- package/agents/ck-ui-ux-designer.agent.md +200 -0
- package/docs/README.md +8 -16
- package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
- package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
- package/docs/code-standards.md +1 -2
- package/docs/codebase-summary.md +35 -66
- package/docs/cokit-commands-usage-guide.md +27 -73
- package/docs/cokit-sync-and-maintenance-guide.md +43 -191
- package/docs/copilot-processing-flow.md +18 -18
- package/docs/migration-guide.md +14 -14
- package/docs/project-overview-pdr.md +5 -6
- package/docs/project-roadmap.md +12 -14
- package/docs/system-architecture.md +13 -17
- package/docs/upstream-porting-rules.md +182 -0
- package/package.json +3 -4
- package/prompts/ck-ask.prompt.md +0 -1
- package/prompts/ck-bootstrap.prompt.md +12 -15
- package/prompts/ck-brainstorm.prompt.md +0 -1
- package/prompts/ck-cook.prompt.md +11 -12
- package/prompts/ck-debug.prompt.md +0 -1
- package/prompts/ck-deploy.prompt.md +22 -0
- package/prompts/ck-docs.prompt.md +0 -1
- package/prompts/ck-fix-fast.prompt.md +1 -1
- package/prompts/ck-fix-hard.prompt.md +2 -2
- package/prompts/ck-frontend.prompt.md +20 -0
- package/prompts/ck-help.prompt.md +0 -1
- package/prompts/ck-plan-fast.prompt.md +1 -4
- package/prompts/ck-plan-hard.prompt.md +3 -6
- package/prompts/ck-plan-red-team.prompt.md +1 -1
- package/prompts/ck-plan.prompt.md +0 -3
- package/prompts/ck-project.prompt.md +20 -0
- package/prompts/ck-review.prompt.md +4 -7
- package/prompts/ck-scout.prompt.md +0 -1
- package/prompts/ck-security.prompt.md +22 -0
- package/prompts/ck-ship.prompt.md +22 -0
- package/prompts/ck-test.prompt.md +1 -3
- package/prompts/ck-watzup.prompt.md +0 -1
- package/skills/ck-agent-browser/SKILL.md +294 -0
- package/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/ck-backend-development/SKILL.md +94 -0
- package/skills/ck-bootstrap/SKILL.md +102 -0
- package/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/skills/ck-brainstorm/SKILL.md +122 -0
- package/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/skills/ck-code-review/SKILL.md +196 -0
- package/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/skills/ck-code-review/references/checklists/api.md +52 -0
- package/skills/ck-code-review/references/checklists/base.md +100 -0
- package/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/skills/ck-common/README.md +110 -0
- package/skills/ck-common/api_key_helper.py +381 -0
- package/skills/ck-context-engineering/SKILL.md +107 -0
- package/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/skills/ck-cook/README.md +86 -0
- package/skills/ck-cook/SKILL.md +155 -0
- package/skills/ck-cook/references/intent-detection.md +101 -0
- package/skills/ck-cook/references/review-cycle.md +75 -0
- package/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/skills/ck-cook/references/workflow-steps.md +192 -0
- package/skills/ck-databases/SKILL.md +84 -0
- package/skills/ck-databases/db-design.md +188 -0
- package/skills/ck-debug/SKILL.md +120 -0
- package/skills/ck-debug/references/frontend-verification.md +103 -0
- package/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/skills/ck-debug/references/reporting-standards.md +122 -0
- package/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/skills/ck-deploy/SKILL.md +154 -0
- package/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/skills/ck-deploy/references/platforms/render.md +39 -0
- package/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/skills/ck-devops/SKILL.md +96 -0
- package/skills/ck-docs-seeker/SKILL.md +97 -0
- package/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/skills/ck-fix/SKILL.md +209 -0
- package/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/skills/ck-fix/references/mode-selection.md +46 -0
- package/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/skills/ck-fix/references/prevention-gate.md +87 -0
- package/skills/ck-fix/references/review-cycle.md +77 -0
- package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/skills/ck-fix/references/task-orchestration.md +110 -0
- package/skills/ck-fix/references/workflow-ci.md +28 -0
- package/skills/ck-fix/references/workflow-deep.md +154 -0
- package/skills/ck-fix/references/workflow-logs.md +72 -0
- package/skills/ck-fix/references/workflow-quick.md +82 -0
- package/skills/ck-fix/references/workflow-standard.md +120 -0
- package/skills/ck-fix/references/workflow-test.md +75 -0
- package/skills/ck-fix/references/workflow-ui.md +72 -0
- package/skills/ck-frontend-design/SKILL.md +109 -0
- package/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/skills/ck-frontend-development/SKILL.md +400 -0
- package/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/skills/ck-frontend-development/resources/performance.md +406 -0
- package/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/skills/ck-git/SKILL.md +113 -0
- package/skills/ck-git/references/commit-standards.md +46 -0
- package/skills/ck-git/references/workflow-commit.md +58 -0
- package/skills/ck-git/references/workflow-merge.md +48 -0
- package/skills/ck-git/references/workflow-pr.md +58 -0
- package/skills/ck-git/references/workflow-push.md +52 -0
- package/skills/ck-mcp-management/README.md +219 -0
- package/skills/ck-mcp-management/SKILL.md +210 -0
- package/skills/ck-mcp-management/references/configuration.md +114 -0
- package/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/skills/ck-mcp-management/scripts/dist/mcp-client.js +183 -0
- package/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/skills/ck-planning/SKILL.md +194 -0
- package/skills/ck-planning/references/archive-workflow.md +53 -0
- package/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/skills/ck-planning/references/output-standards.md +145 -0
- package/skills/ck-planning/references/plan-organization.md +182 -0
- package/skills/ck-planning/references/red-team-personas.md +69 -0
- package/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/skills/ck-planning/references/research-phase.md +49 -0
- package/skills/ck-planning/references/scope-challenge.md +90 -0
- package/skills/ck-planning/references/task-management.md +134 -0
- package/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/skills/ck-planning/references/validate-workflow.md +65 -0
- package/skills/ck-planning/references/workflow-modes.md +154 -0
- package/skills/ck-problem-solving/SKILL.md +96 -0
- package/skills/ck-project-management/SKILL.md +133 -0
- package/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/skills/ck-project-management/references/task-operations.md +87 -0
- package/skills/ck-repomix/SKILL.md +248 -0
- package/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/skills/ck-repomix/scripts/README.md +179 -0
- package/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/skills/ck-research/SKILL.md +172 -0
- package/skills/ck-scout/SKILL.md +91 -0
- package/skills/ck-scout/references/external-scouting.md +140 -0
- package/skills/ck-scout/references/internal-scouting.md +119 -0
- package/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/skills/ck-security/SKILL.md +139 -0
- package/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/skills/ck-sequential-thinking/README.md +183 -0
- package/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/skills/ck-sequential-thinking/package.json +31 -0
- package/skills/ck-ship/SKILL.md +116 -0
- package/skills/ck-ship/references/auto-detect.md +103 -0
- package/skills/ck-ship/references/pr-template.md +90 -0
- package/skills/ck-ship/references/ship-workflow.md +241 -0
- package/skills/ck-test/SKILL.md +111 -0
- package/skills/ck-test/references/report-format.md +58 -0
- package/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/skills/ck-ui-styling/SKILL.md +321 -0
- package/skills/ck-web-testing/SKILL.md +96 -0
- package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
- package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
- package/templates/repo/.github/agents/ck-code-simplifier.agent.md +41 -0
- package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
- package/templates/repo/.github/agents/ck-docs-manager.agent.md +209 -0
- package/templates/repo/.github/agents/ck-fullstack-developer.agent.md +106 -0
- package/templates/repo/.github/agents/ck-git-manager.agent.md +7 -0
- package/templates/repo/.github/agents/ck-planner.agent.md +104 -0
- package/templates/repo/.github/agents/ck-project-manager.agent.md +24 -0
- package/templates/repo/.github/agents/ck-researcher.agent.md +48 -0
- package/templates/repo/.github/agents/ck-tester.agent.md +139 -0
- package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
- package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -15
- package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -12
- package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
- package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -4
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -6
- package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
- package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-review.prompt.md +4 -7
- package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-test.prompt.md +1 -3
- package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
- package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
- package/templates/repo/.github/skills/ck-agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
- package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
- package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklist-workflow.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/api.md +52 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/base.md +100 -0
- package/templates/repo/.github/skills/ck-code-review/references/checklists/web-app.md +54 -0
- package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +113 -0
- package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/ck-code-review/references/edge-case-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-code-review/references/input-mode-resolution.md +135 -0
- package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
- package/templates/repo/.github/skills/ck-code-review/references/spec-compliance-review.md +43 -0
- package/templates/repo/.github/skills/ck-code-review/references/task-management-reviews.md +155 -0
- package/templates/repo/.github/skills/ck-common/README.md +110 -0
- package/templates/repo/.github/skills/ck-common/api_key_helper.py +381 -0
- package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/context-degradation.md +93 -0
- package/templates/repo/.github/skills/ck-context-engineering/references/runtime-awareness.md +160 -0
- package/templates/repo/.github/skills/ck-cook/README.md +86 -0
- package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
- package/templates/repo/.github/skills/ck-cook/references/intent-detection.md +101 -0
- package/templates/repo/.github/skills/ck-cook/references/review-cycle.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/subagent-patterns.md +75 -0
- package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
- package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
- package/templates/repo/.github/skills/ck-databases/db-design.md +188 -0
- package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
- package/templates/repo/.github/skills/ck-debug/references/frontend-verification.md +103 -0
- package/templates/repo/.github/skills/ck-debug/references/investigation-methodology.md +101 -0
- package/templates/repo/.github/skills/ck-debug/references/log-and-ci-analysis.md +97 -0
- package/templates/repo/.github/skills/ck-debug/references/performance-diagnostics.md +113 -0
- package/templates/repo/.github/skills/ck-debug/references/reporting-standards.md +122 -0
- package/templates/repo/.github/skills/ck-debug/references/task-management-debugging.md +155 -0
- package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/ck-deploy/references/platform-config-templates.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/aws.md +58 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/cloudflare.md +41 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/coolify.md +32 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/digitalocean.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/dokploy.md +29 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/flyio.md +54 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/gcp.md +45 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/github-pages.md +56 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/heroku.md +31 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/netlify.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/railway.md +38 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/render.md +39 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/tose.md +35 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vercel.md +37 -0
- package/templates/repo/.github/skills/ck-deploy/references/platforms/vultr.md +27 -0
- package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
- package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +68 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +213 -0
- package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +94 -0
- package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +87 -0
- package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
- package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
- package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/ck-fix/references/mode-selection.md +46 -0
- package/templates/repo/.github/skills/ck-fix/references/parallel-exploration.md +100 -0
- package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/ck-fix/references/review-cycle.md +77 -0
- package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
- package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
- package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
- package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/ai-multimodal-overview.md +165 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/anti-slop-rules.md +103 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/asset-generation.md +337 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/bento-motion-engine.md +142 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/magicui-components.md +129 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/performance-guardrails.md +169 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/premium-design-patterns.md +93 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/redesign-audit-checklist.md +114 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +95 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
- package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +331 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +872 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +767 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +502 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +406 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +364 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +428 -0
- package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +418 -0
- package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
- package/templates/repo/.github/skills/ck-git/references/commit-standards.md +46 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
- package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
- package/templates/repo/.github/skills/ck-mcp-management/README.md +219 -0
- package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +114 -0
- package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +221 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +10 -0
- package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +230 -0
- package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
- package/templates/repo/.github/skills/ck-planning/references/archive-workflow.md +53 -0
- package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -0
- package/templates/repo/.github/skills/ck-planning/references/output-standards.md +145 -0
- package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +182 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-personas.md +69 -0
- package/templates/repo/.github/skills/ck-planning/references/red-team-workflow.md +77 -0
- package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
- package/templates/repo/.github/skills/ck-planning/references/scope-challenge.md +90 -0
- package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-question-framework.md +80 -0
- package/templates/repo/.github/skills/ck-planning/references/validate-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
- package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/ck-project-management/references/hydration-workflow.md +89 -0
- package/templates/repo/.github/skills/ck-project-management/references/progress-tracking.md +120 -0
- package/templates/repo/.github/skills/ck-project-management/references/reporting-patterns.md +94 -0
- package/templates/repo/.github/skills/ck-project-management/references/task-operations.md +87 -0
- package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
- package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +232 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/README.md +179 -0
- package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +455 -0
- package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
- package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
- package/templates/repo/.github/skills/ck-scout/references/external-scouting.md +140 -0
- package/templates/repo/.github/skills/ck-scout/references/internal-scouting.md +119 -0
- package/templates/repo/.github/skills/ck-scout/references/task-management-scouting.md +125 -0
- package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
- package/templates/repo/.github/skills/ck-security/references/stride-owasp-checklist.md +128 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package-lock.json +3652 -0
- package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -0
- package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ck-ship/references/auto-detect.md +103 -0
- package/templates/repo/.github/skills/ck-ship/references/pr-template.md +90 -0
- package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
- package/templates/repo/.github/skills/ck-test/references/report-format.md +58 -0
- package/templates/repo/.github/skills/ck-test/references/test-execution-workflow.md +103 -0
- package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
- package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
- package/agents/brainstormer.agent.md +0 -78
- package/agents/code-reviewer.agent.md +0 -111
- package/agents/code-simplifier.agent.md +0 -46
- package/agents/debugger.agent.md +0 -137
- package/agents/docs-manager.agent.md +0 -217
- package/agents/fullstack-developer.agent.md +0 -96
- package/agents/git-manager.agent.md +0 -10
- package/agents/planner.agent.md +0 -122
- package/agents/researcher.agent.md +0 -46
- package/agents/tester.agent.md +0 -116
- package/agents/ui-ux-designer.agent.md +0 -233
- package/docs/claudekit-porting-rules.md +0 -182
- package/docs/cokit-comprehensive-mapping-guide.md +0 -357
- package/docs/cokit-slides.md +0 -210
- package/docs/cokit-team-presentation.md +0 -354
- package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
- package/prompts/ck-spec-analyze.prompt.md +0 -201
- package/prompts/ck-spec-checklist.prompt.md +0 -308
- package/prompts/ck-spec-clarify.prompt.md +0 -190
- package/prompts/ck-spec-constitution.prompt.md +0 -92
- package/prompts/ck-spec-implement.prompt.md +0 -157
- package/prompts/ck-spec-plan.prompt.md +0 -95
- package/prompts/ck-spec-specify.prompt.md +0 -261
- package/prompts/ck-spec-tasks.prompt.md +0 -181
- package/skills/agent-browser/SKILL.md +0 -291
- package/skills/backend-development/SKILL.md +0 -94
- package/skills/brainstorm/SKILL.md +0 -74
- package/skills/code-review/SKILL.md +0 -193
- package/skills/code-review/references/code-review-reception.md +0 -209
- package/skills/code-review/references/requesting-code-review.md +0 -105
- package/skills/common/README.md +0 -120
- package/skills/common/api_key_helper.py +0 -411
- package/skills/context-engineering/SKILL.md +0 -106
- package/skills/context-engineering/references/context-degradation.md +0 -93
- package/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/skills/cook/README.md +0 -86
- package/skills/cook/SKILL.md +0 -127
- package/skills/cook/references/intent-detection.md +0 -101
- package/skills/cook/references/review-cycle.md +0 -75
- package/skills/cook/references/workflow-steps.md +0 -140
- package/skills/databases/SKILL.md +0 -111
- package/skills/databases/db-design.md +0 -188
- package/skills/debug/SKILL.md +0 -178
- package/skills/devops/SKILL.md +0 -102
- package/skills/docs-seeker/SKILL.md +0 -96
- package/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/skills/docs-seeker/workflows/library-search.md +0 -86
- package/skills/fix/SKILL.md +0 -112
- package/skills/fix/references/complexity-assessment.md +0 -61
- package/skills/fix/references/mode-selection.md +0 -30
- package/skills/fix/references/parallel-exploration.md +0 -77
- package/skills/fix/references/review-cycle.md +0 -77
- package/skills/fix/references/skill-activation-matrix.md +0 -65
- package/skills/fix/references/workflow-ci.md +0 -28
- package/skills/fix/references/workflow-deep.md +0 -91
- package/skills/fix/references/workflow-logs.md +0 -36
- package/skills/fix/references/workflow-quick.md +0 -59
- package/skills/fix/references/workflow-standard.md +0 -86
- package/skills/fix/references/workflow-test.md +0 -36
- package/skills/fix/references/workflow-ui.md +0 -34
- package/skills/frontend-design/SKILL.md +0 -77
- package/skills/frontend-design/references/asset-generation.md +0 -161
- package/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/skills/frontend-design/references/workflow-describe.md +0 -86
- package/skills/frontend-design/references/workflow-quick.md +0 -54
- package/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/skills/git/SKILL.md +0 -99
- package/skills/git/references/commit-standards.md +0 -46
- package/skills/git/references/workflow-commit.md +0 -58
- package/skills/git/references/workflow-merge.md +0 -48
- package/skills/git/references/workflow-pr.md +0 -58
- package/skills/git/references/workflow-push.md +0 -52
- package/skills/mcp-management/README.md +0 -219
- package/skills/mcp-management/SKILL.md +0 -209
- package/skills/mcp-management/references/configuration.md +0 -114
- package/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/skills/mcp-management/scripts/.env.example +0 -10
- package/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/skills/mermaidjs-v11/SKILL.md +0 -115
- package/skills/planning/SKILL.md +0 -163
- package/skills/planning/references/codebase-understanding.md +0 -62
- package/skills/planning/references/output-standards.md +0 -141
- package/skills/planning/references/plan-organization.md +0 -160
- package/skills/planning/references/research-phase.md +0 -49
- package/skills/problem-solving/SKILL.md +0 -95
- package/skills/repomix/SKILL.md +0 -247
- package/skills/repomix/references/usage-patterns.md +0 -232
- package/skills/repomix/scripts/README.md +0 -179
- package/skills/repomix/scripts/repomix_batch.py +0 -455
- package/skills/research/SKILL.md +0 -169
- package/skills/scout/SKILL.md +0 -91
- package/skills/scout/references/external-scouting.md +0 -140
- package/skills/scout/references/internal-scouting.md +0 -119
- package/skills/sequential-thinking/README.md +0 -183
- package/skills/sequential-thinking/SKILL.md +0 -92
- package/skills/sequential-thinking/package.json +0 -31
- package/skills/ui-styling/SKILL.md +0 -319
- package/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/AGENTS.md +0 -103
- package/templates/repo/.github/agents/brainstormer.agent.md +0 -78
- package/templates/repo/.github/agents/code-reviewer.agent.md +0 -111
- package/templates/repo/.github/agents/code-simplifier.agent.md +0 -46
- package/templates/repo/.github/agents/debugger.agent.md +0 -137
- package/templates/repo/.github/agents/docs-manager.agent.md +0 -217
- package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
- package/templates/repo/.github/agents/git-manager.agent.md +0 -10
- package/templates/repo/.github/agents/planner.agent.md +0 -122
- package/templates/repo/.github/agents/researcher.agent.md +0 -46
- package/templates/repo/.github/agents/tester.agent.md +0 -116
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -233
- package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
- package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
- package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
- package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
- package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
- package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
- package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
- package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
- package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -291
- package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
- package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -74
- package/templates/repo/.github/skills/code-review/SKILL.md +0 -193
- package/templates/repo/.github/skills/code-review/references/code-review-reception.md +0 -209
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -105
- package/templates/repo/.github/skills/common/README.md +0 -120
- package/templates/repo/.github/skills/common/api_key_helper.py +0 -411
- package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -106
- package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +0 -93
- package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +0 -202
- package/templates/repo/.github/skills/cook/README.md +0 -86
- package/templates/repo/.github/skills/cook/SKILL.md +0 -127
- package/templates/repo/.github/skills/cook/references/intent-detection.md +0 -101
- package/templates/repo/.github/skills/cook/references/review-cycle.md +0 -75
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -140
- package/templates/repo/.github/skills/databases/SKILL.md +0 -111
- package/templates/repo/.github/skills/databases/db-design.md +0 -188
- package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
- package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
- package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
- package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
- package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
- package/templates/repo/.github/skills/debug/SKILL.md +0 -178
- package/templates/repo/.github/skills/devops/SKILL.md +0 -102
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -96
- package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +0 -64
- package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +0 -214
- package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +0 -94
- package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +0 -86
- package/templates/repo/.github/skills/fix/SKILL.md +0 -112
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -61
- package/templates/repo/.github/skills/fix/references/mode-selection.md +0 -30
- package/templates/repo/.github/skills/fix/references/parallel-exploration.md +0 -77
- package/templates/repo/.github/skills/fix/references/review-cycle.md +0 -77
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -65
- package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -91
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -59
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -86
- package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -36
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -34
- package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -77
- package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +0 -161
- package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +0 -95
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -86
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -54
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -62
- package/templates/repo/.github/skills/git/SKILL.md +0 -99
- package/templates/repo/.github/skills/git/references/commit-standards.md +0 -46
- package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
- package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
- package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
- package/templates/repo/.github/skills/mcp-management/README.md +0 -219
- package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -209
- package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
- package/templates/repo/.github/skills/mcp-management/references/configuration.md +0 -114
- package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +0 -221
- package/templates/repo/.github/skills/mcp-management/scripts/.env.example +0 -10
- package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
- package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
- package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +0 -230
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -115
- package/templates/repo/.github/skills/planning/SKILL.md +0 -163
- package/templates/repo/.github/skills/planning/references/codebase-understanding.md +0 -62
- package/templates/repo/.github/skills/planning/references/output-standards.md +0 -141
- package/templates/repo/.github/skills/planning/references/plan-organization.md +0 -160
- package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
- package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -95
- package/templates/repo/.github/skills/repomix/SKILL.md +0 -247
- package/templates/repo/.github/skills/repomix/references/usage-patterns.md +0 -232
- package/templates/repo/.github/skills/repomix/scripts/README.md +0 -179
- package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +0 -455
- package/templates/repo/.github/skills/research/SKILL.md +0 -169
- package/templates/repo/.github/skills/scout/SKILL.md +0 -91
- package/templates/repo/.github/skills/scout/references/external-scouting.md +0 -140
- package/templates/repo/.github/skills/scout/references/internal-scouting.md +0 -119
- package/templates/repo/.github/skills/sequential-thinking/README.md +0 -183
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -92
- package/templates/repo/.github/skills/sequential-thinking/package.json +0 -31
- package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
- package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -319
- package/templates/repo/.github/skills/web-testing/SKILL.md +0 -148
- package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
- package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
- package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
- package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
- package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
- package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
- package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
- package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
- package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
- package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
- package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
- package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
- package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
- package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
- package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
- package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
- package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
- package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
- package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
- package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
- package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
- package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
- package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
- package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
- package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
- package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
- package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
- /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
- /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
- /package/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/skills/{devops → ck-devops}/.env.example +0 -0
- /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
- /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
- /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
- /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
- /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
- /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
- /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
- /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
- /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
- /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
- /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
- /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
- /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
- /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
- /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
- /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
- /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
- /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
- /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
- /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
- /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
- /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 'Create UI/UX designs, wireframes, design systems, responsive layouts, animations, and review design quality for production-ready interfaces.'
|
|
3
|
+
tools: ['search/codebase', 'search/changes', 'web/fetch', 'read/problems']
|
|
4
|
+
---
|
|
5
|
+
|
|
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.
|
|
7
|
+
|
|
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.**
|
|
9
|
+
|
|
10
|
+
## Required Skills (Priority Order)
|
|
11
|
+
|
|
12
|
+
1. **`frontend-design`** - Screenshot analysis and design replication
|
|
13
|
+
2. **`ui-styling`** - shadcn/ui, Tailwind CSS components
|
|
14
|
+
3. **`ui-ux-pro-max`** (if available) - Design intelligence database
|
|
15
|
+
|
|
16
|
+
**Ensure token efficiency while maintaining high quality.**
|
|
17
|
+
|
|
18
|
+
## Expert Capabilities
|
|
19
|
+
|
|
20
|
+
You possess world-class expertise in:
|
|
21
|
+
|
|
22
|
+
**Trending Design Research**
|
|
23
|
+
- Research and analyze trending designs on Dribbble, Behance, Awwwards, Mobbin, TheFWA
|
|
24
|
+
- Study award-winning designs and understand what makes them exceptional
|
|
25
|
+
- Identify emerging design trends and patterns in real-time
|
|
26
|
+
- Research top-selling design templates on Envato Market (ThemeForest, CodeCanyon, GraphicRiver)
|
|
27
|
+
|
|
28
|
+
**Professional Photography & Visual Design**
|
|
29
|
+
- Professional photography principles: composition, lighting, color theory
|
|
30
|
+
- Studio-quality visual direction and art direction
|
|
31
|
+
- High-end product photography aesthetics
|
|
32
|
+
- Editorial and commercial photography styles
|
|
33
|
+
|
|
34
|
+
**UX/CX Optimization**
|
|
35
|
+
- Deep understanding of user experience (UX) and customer experience (CX)
|
|
36
|
+
- User journey mapping and experience optimization
|
|
37
|
+
- Conversion rate optimization (CRO) strategies
|
|
38
|
+
- A/B testing methodologies and data-driven design decisions
|
|
39
|
+
- Customer touchpoint analysis and optimization
|
|
40
|
+
|
|
41
|
+
**Branding & Identity Design**
|
|
42
|
+
- Logo design with strong conceptual foundation
|
|
43
|
+
- Vector graphics and iconography
|
|
44
|
+
- Brand identity systems and visual language
|
|
45
|
+
- Poster and print design
|
|
46
|
+
- Newsletter and email design
|
|
47
|
+
- Marketing collateral and promotional materials
|
|
48
|
+
- Brand guideline development
|
|
49
|
+
|
|
50
|
+
**Digital Art & 3D**
|
|
51
|
+
- Digital painting and illustration techniques
|
|
52
|
+
- 3D modeling and rendering (conceptual understanding)
|
|
53
|
+
- Advanced composition and visual hierarchy
|
|
54
|
+
- Color grading and mood creation
|
|
55
|
+
- Artistic sensibility and creative direction
|
|
56
|
+
|
|
57
|
+
**Three.js & WebGL Expertise**
|
|
58
|
+
- Advanced Three.js scene composition and optimization
|
|
59
|
+
- Custom shader development (GLSL vertex and fragment shaders)
|
|
60
|
+
- Particle systems and GPU-accelerated particle effects
|
|
61
|
+
- Post-processing effects and render pipelines
|
|
62
|
+
- Immersive 3D experiences and interactive environments
|
|
63
|
+
- Performance optimization for real-time rendering
|
|
64
|
+
- Physics-based rendering and lighting systems
|
|
65
|
+
- Camera controls and cinematic effects
|
|
66
|
+
- Texture mapping, normal maps, and material systems
|
|
67
|
+
- 3D model loading and optimization (glTF, FBX, OBJ)
|
|
68
|
+
|
|
69
|
+
**Typography Expertise**
|
|
70
|
+
- Strategic use of Google Fonts with Vietnamese language support
|
|
71
|
+
- Font pairing and typographic hierarchy creation
|
|
72
|
+
- Cross-language typography optimization (Latin + Vietnamese)
|
|
73
|
+
- Performance-conscious font loading strategies
|
|
74
|
+
- Type scale and rhythm establishment
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## Core Responsibilities
|
|
79
|
+
|
|
80
|
+
**IMPORTANT:** Respect the rules in `./docs/development-rules.md`.
|
|
81
|
+
|
|
82
|
+
1. **Design System Management**: Maintain and update `./docs/design-guidelines.md` with all design guidelines, design systems, tokens, and patterns. ALWAYS consult and follow this guideline when working on design tasks. If the file doesn't exist, create it with comprehensive design standards.
|
|
83
|
+
|
|
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.
|
|
85
|
+
|
|
86
|
+
3. **User Research**: Conduct thorough user research and validation. Delegate research tasks to multiple `ck-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.
|
|
88
|
+
|
|
89
|
+
4. **Documentation**: Report all implementations as detailed Markdown files with design rationale, decisions, and guidelines.
|
|
90
|
+
|
|
91
|
+
## Report Output
|
|
92
|
+
|
|
93
|
+
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|
|
94
|
+
|
|
95
|
+
## Available Tools
|
|
96
|
+
|
|
97
|
+
**Image Editing (`ImageMagick`)** (if available):
|
|
98
|
+
- Remove backgrounds, resize, crop, rotate images
|
|
99
|
+
- Apply masks and perform advanced image editing
|
|
100
|
+
|
|
101
|
+
**Figma Tools**: use Figma MCP if available
|
|
102
|
+
- Access and manipulate Figma designs
|
|
103
|
+
- Export assets and design specifications
|
|
104
|
+
|
|
105
|
+
## Design Workflow
|
|
106
|
+
|
|
107
|
+
1. **Research Phase**:
|
|
108
|
+
- Understand user needs and business requirements
|
|
109
|
+
- Research trending designs on Dribbble, Behance, Awwwards, Mobbin, TheFWA
|
|
110
|
+
- Analyze top-selling templates on Envato for market insights
|
|
111
|
+
- Study award-winning designs and understand their success factors
|
|
112
|
+
- Analyze existing designs and competitors
|
|
113
|
+
- Delegate parallel research tasks to `ck-researcher` agents
|
|
114
|
+
- Review `./docs/design-guidelines.md` for existing patterns
|
|
115
|
+
- Identify design trends relevant to the project context
|
|
116
|
+
- Generate a comprehensive design plan using `plan` skills
|
|
117
|
+
|
|
118
|
+
2. **Design Phase**:
|
|
119
|
+
- Apply insights from trending designs and market research
|
|
120
|
+
- Create wireframes starting with mobile-first approach
|
|
121
|
+
- Design high-fidelity mockups with attention to detail
|
|
122
|
+
- Select Google Fonts strategically (prioritize fonts with Vietnamese character support)
|
|
123
|
+
- Generate/modify real assets with ImageMagick (if available) for editing
|
|
124
|
+
- Generate vector assets as SVG files
|
|
125
|
+
- Always review, analyze and double check generated assets.
|
|
126
|
+
- Use removal background tools to remove background from generated assets
|
|
127
|
+
- Create sophisticated typography hierarchies and font pairings
|
|
128
|
+
- Apply professional photography principles and composition techniques
|
|
129
|
+
- Implement design tokens and maintain consistency
|
|
130
|
+
- Apply branding principles for cohesive visual identity
|
|
131
|
+
- Consider accessibility (WCAG 2.1 AA minimum)
|
|
132
|
+
- Optimize for UX/CX and conversion goals
|
|
133
|
+
- Design micro-interactions and animations purposefully
|
|
134
|
+
- Design immersive 3D experiences with Three.js when appropriate
|
|
135
|
+
- Implement particle effects and shader-based visual enhancements
|
|
136
|
+
- Apply artistic sensibility for visual impact
|
|
137
|
+
|
|
138
|
+
3. **Implementation Phase**:
|
|
139
|
+
- Build designs with semantic HTML/CSS/JS
|
|
140
|
+
- Ensure responsive behavior across all breakpoints
|
|
141
|
+
- Add descriptive annotations for developers
|
|
142
|
+
- Test across different devices and browsers
|
|
143
|
+
|
|
144
|
+
4. **Validation Phase**:
|
|
145
|
+
- Use browser dev tools to capture screenshots and compare
|
|
146
|
+
- Conduct accessibility audits
|
|
147
|
+
- Gather feedback and iterate
|
|
148
|
+
|
|
149
|
+
5. **Documentation Phase**:
|
|
150
|
+
- Update `./docs/design-guidelines.md` with new patterns
|
|
151
|
+
- Create detailed reports
|
|
152
|
+
- Document design decisions and rationale
|
|
153
|
+
- Provide implementation guidelines
|
|
154
|
+
|
|
155
|
+
## Design Principles
|
|
156
|
+
|
|
157
|
+
- **Mobile-First**: Always start with mobile designs and scale up
|
|
158
|
+
- **Accessibility**: Design for all users, including those with disabilities
|
|
159
|
+
- **Consistency**: Maintain design system coherence across all touchpoints
|
|
160
|
+
- **Performance**: Optimize animations and interactions for smooth experiences
|
|
161
|
+
- **Clarity**: Prioritize clear communication and intuitive navigation
|
|
162
|
+
- **Delight**: Add thoughtful micro-interactions that enhance user experience
|
|
163
|
+
- **Inclusivity**: Consider diverse user needs, cultures, and contexts
|
|
164
|
+
- **Trend-Aware**: Stay current with design trends while maintaining timeless principles
|
|
165
|
+
- **Conversion-Focused**: Optimize every design decision for user goals and business outcomes
|
|
166
|
+
- **Brand-Driven**: Ensure all designs strengthen and reinforce brand identity
|
|
167
|
+
- **Visually Stunning**: Apply artistic and photographic principles for maximum impact
|
|
168
|
+
|
|
169
|
+
## Quality Standards
|
|
170
|
+
|
|
171
|
+
- All designs must be responsive and tested across breakpoints (mobile: 320px+, tablet: 768px+, desktop: 1024px+)
|
|
172
|
+
- Color contrast ratios must meet WCAG 2.1 AA standards (4.5:1 for normal text, 3:1 for large text)
|
|
173
|
+
- Interactive elements must have clear hover, focus, and active states
|
|
174
|
+
- Animations should respect prefers-reduced-motion preferences
|
|
175
|
+
- Touch targets must be minimum 44x44px for mobile
|
|
176
|
+
- Typography must maintain readability with appropriate line height (1.5-1.6 for body text)
|
|
177
|
+
- All text content must render correctly with Vietnamese diacritical marks (ă, â, đ, ê, ô, ơ, ư, etc.)
|
|
178
|
+
- Google Fonts selection must explicitly support Vietnamese character set
|
|
179
|
+
- Font pairings must work harmoniously across Latin and Vietnamese text
|
|
180
|
+
|
|
181
|
+
## Error Handling
|
|
182
|
+
|
|
183
|
+
- If `./docs/design-guidelines.md` doesn't exist, create it with foundational design system
|
|
184
|
+
- If tools fail, provide alternative approaches and document limitations
|
|
185
|
+
- If requirements are unclear, ask specific questions before proceeding
|
|
186
|
+
- If design conflicts with accessibility, prioritize accessibility and explain trade-offs
|
|
187
|
+
|
|
188
|
+
## Collaboration
|
|
189
|
+
|
|
190
|
+
- Delegate research tasks to `ck-researcher` agents for comprehensive insights (max 2 agents)
|
|
191
|
+
- Coordinate with `ck-project-manager` agent for project progress updates
|
|
192
|
+
- Communicate design decisions clearly with rationale
|
|
193
|
+
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
194
|
+
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
195
|
+
|
|
196
|
+
You are proactive in identifying design improvements and suggesting enhancements. When you see opportunities to improve user experience, accessibility, or design consistency, speak up and provide actionable recommendations.
|
|
197
|
+
|
|
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.
|
|
199
|
+
|
|
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.**
|
package/docs/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# CoKit Documentation Index
|
|
2
2
|
|
|
3
|
-
**Version:** 1.
|
|
3
|
+
**Version:** 1.4.0 | **Updated:** 2026-04-07
|
|
4
4
|
|
|
5
5
|
## Reading Order by Role
|
|
6
6
|
|
|
@@ -27,16 +27,9 @@
|
|
|
27
27
|
### Reference (As Needed)
|
|
28
28
|
| Doc | Read When |
|
|
29
29
|
|-----|-----------|
|
|
30
|
-
| [cokit-comprehensive-mapping-guide.md](cokit-comprehensive-mapping-guide.md) | Debugging command mappings |
|
|
31
30
|
| [copilot-processing-flow.md](copilot-processing-flow.md) | Understanding prompt processing |
|
|
32
|
-
| [migration-guide.md](migration-guide.md) |
|
|
33
|
-
| [
|
|
34
|
-
|
|
35
|
-
### Presentations
|
|
36
|
-
| Doc | Use For |
|
|
37
|
-
|-----|---------|
|
|
38
|
-
| [cokit-team-presentation.md](cokit-team-presentation.md) | Team onboarding |
|
|
39
|
-
| [cokit-slides.md](cokit-slides.md) | Quick demos |
|
|
31
|
+
| [migration-guide.md](migration-guide.md) | Users switching from other AI tools to Copilot |
|
|
32
|
+
| [upstream-porting-rules.md](upstream-porting-rules.md) | AI/dev rules for porting upstream → CoKit |
|
|
40
33
|
|
|
41
34
|
---
|
|
42
35
|
|
|
@@ -45,17 +38,16 @@
|
|
|
45
38
|
### What's in CoKit?
|
|
46
39
|
| Resource | Count | Location |
|
|
47
40
|
|----------|-------|----------|
|
|
48
|
-
| Prompts |
|
|
49
|
-
| Agents |
|
|
50
|
-
| Skills |
|
|
41
|
+
| Prompts | 31 | `prompts/ck-*.prompt.md` |
|
|
42
|
+
| Agents | 13 | `agents/*.agent.md` |
|
|
43
|
+
| Skills | 31 | `skills/*/` |
|
|
51
44
|
| Instructions | 5 | `instructions/ck-*.instructions.md` |
|
|
52
45
|
| Collections | 5 | `collections/ck-*.collection.yml` |
|
|
53
46
|
|
|
54
|
-
###
|
|
47
|
+
### Workflow
|
|
55
48
|
| Workflow | Commands | Best For |
|
|
56
49
|
|----------|----------|----------|
|
|
57
|
-
|
|
|
58
|
-
| SpecKit | `ck-spec-*` | Complex features, formal specs |
|
|
50
|
+
| CoKit | `ck-*` | Daily dev, quick fixes, full pipeline |
|
|
59
51
|
|
|
60
52
|
### Key Commands
|
|
61
53
|
```
|
|
Binary file
|
|
Binary file
|
package/docs/code-standards.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
- **DRY**: Don't repeat yourself
|
|
7
7
|
|
|
8
8
|
## File Naming
|
|
9
|
-
- kebab-case for all files: `transform-
|
|
9
|
+
- kebab-case for all files: `transform-upstream.mjs`
|
|
10
10
|
- Descriptive names that self-document purpose
|
|
11
11
|
- Extensions: `.mjs` for ES modules, `.js` for CommonJS
|
|
12
12
|
|
|
@@ -25,7 +25,6 @@ cokit/
|
|
|
25
25
|
├── skills/ # Skill definitions
|
|
26
26
|
├── instructions/ # Instruction files
|
|
27
27
|
├── collections/ # Bundled collections
|
|
28
|
-
├── upstream/speckit/ # Git subtree (read-only)
|
|
29
28
|
└── docs/ # Documentation
|
|
30
29
|
```
|
|
31
30
|
|
package/docs/codebase-summary.md
CHANGED
|
@@ -2,24 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## Overview
|
|
4
4
|
|
|
5
|
-
CoKit is a CLI tool that enhances GitHub Copilot with
|
|
5
|
+
CoKit is a CLI tool that enhances GitHub Copilot with 31 prompts, 13 agents, 5 instructions, 31 skills, and 5 collections. It transforms upstream commands into a unified ck-* namespace.
|
|
6
6
|
|
|
7
7
|
**Repository:** https://github.com/camping89/cokit.git
|
|
8
|
-
**Version:** 1.
|
|
8
|
+
**Version:** 1.4.0
|
|
9
9
|
**License:** CC BY-NC 4.0
|
|
10
10
|
**Node Requirements:** >= 18.0.0
|
|
11
|
-
**Last Updated:** 2026-
|
|
11
|
+
**Last Updated:** 2026-04-07
|
|
12
12
|
|
|
13
13
|
## Architecture
|
|
14
14
|
|
|
15
|
-
CoKit uses a **sync pipeline architecture** that transforms
|
|
15
|
+
CoKit uses a **sync pipeline architecture** that transforms upstream resources:
|
|
16
16
|
|
|
17
17
|
```
|
|
18
|
-
Upstream
|
|
18
|
+
Upstream Source
|
|
19
19
|
↓
|
|
20
|
-
Transform
|
|
21
|
-
↓
|
|
22
|
-
Merge Results
|
|
20
|
+
Transform Module (transform-upstream.mjs)
|
|
23
21
|
↓
|
|
24
22
|
Patch Navigation (Inject workflow footers)
|
|
25
23
|
↓
|
|
@@ -27,9 +25,8 @@ Output: Unified ck-* Prompts
|
|
|
27
25
|
```
|
|
28
26
|
|
|
29
27
|
### Sync Pipeline (eng/sync.mjs)
|
|
30
|
-
- **Flow:** Load config → Transform
|
|
28
|
+
- **Flow:** Load config → Transform upstream → Patch navigation → Write output
|
|
31
29
|
- **Configuration:** resource-origins.yml (mappings, navigation, ignore list)
|
|
32
|
-
- **Parallel Processing:** ClaudeKit and SpecKit transformations run concurrently
|
|
33
30
|
- **Dry-run Support:** Preview changes without writing files
|
|
34
31
|
|
|
35
32
|
## Source Code Structure
|
|
@@ -40,9 +37,8 @@ Output: Unified ck-* Prompts
|
|
|
40
37
|
|------|------|---------|
|
|
41
38
|
| `src/index.js` | 35 LOC | CLI entry point; registers commands (init, add, list, doctor, update) |
|
|
42
39
|
| `bin/cokit.js` | 4 LOC | Binary wrapper; delegates to src/index.js |
|
|
43
|
-
| `eng/sync.mjs` |
|
|
44
|
-
| `eng/transform-
|
|
45
|
-
| `eng/transform-speckit.mjs` | 175 LOC | SpecKit transformer; processes upstream/speckit/templates/commands |
|
|
40
|
+
| `eng/sync.mjs` | 85 LOC | Main sync orchestrator; orchestrates transformation |
|
|
41
|
+
| `eng/transform-upstream.mjs` | 220 LOC | Upstream transformer; resolves files, applies transformations |
|
|
46
42
|
| `eng/patch-navigation.mjs` | 69 LOC | Navigation patcher; injects "Suggested Next Steps" footers |
|
|
47
43
|
|
|
48
44
|
### Directory Structure
|
|
@@ -63,8 +59,7 @@ cokit/
|
|
|
63
59
|
│ └── update-checker.js # Version checking
|
|
64
60
|
├── eng/
|
|
65
61
|
│ ├── sync.mjs # Sync orchestrator
|
|
66
|
-
│ ├── transform-
|
|
67
|
-
│ ├── transform-speckit.mjs # SpecKit transformer
|
|
62
|
+
│ ├── transform-upstream.mjs # Upstream transformer
|
|
68
63
|
│ ├── patch-navigation.mjs # Navigation footer injection
|
|
69
64
|
│ └── resource-origins.yml # Configuration (mappings, navigation)
|
|
70
65
|
├── prompts/ # Output: Transformed prompts (33 files)
|
|
@@ -90,28 +85,26 @@ Registers 5 commands using Commander.js:
|
|
|
90
85
|
### 2. Sync Pipeline (eng/sync.mjs)
|
|
91
86
|
**Flow:**
|
|
92
87
|
1. Load resource-origins.yml configuration
|
|
93
|
-
2. Transform
|
|
94
|
-
3.
|
|
95
|
-
4.
|
|
96
|
-
5.
|
|
97
|
-
6. Update sync timestamps
|
|
88
|
+
2. Transform upstream sources
|
|
89
|
+
3. Apply navigation patches to all prompts
|
|
90
|
+
4. Write output files or show dry-run preview
|
|
91
|
+
5. Update sync timestamps
|
|
98
92
|
|
|
99
93
|
**Config Structure:**
|
|
100
94
|
```yaml
|
|
101
95
|
version: '2.0'
|
|
102
96
|
sources:
|
|
103
|
-
|
|
104
|
-
claudekit: {path, last_sync}
|
|
97
|
+
upstream: {path, last_sync}
|
|
105
98
|
ignore: [] # Commands to skip
|
|
106
|
-
mappings: {} # Command mappings (
|
|
99
|
+
mappings: {} # Command mappings (16 entries)
|
|
107
100
|
unknown_commands: [] # Tracking unknown sources
|
|
108
101
|
navigation: {} # Workflow navigation rules
|
|
109
102
|
```
|
|
110
103
|
|
|
111
104
|
### 3. Transform Modules
|
|
112
105
|
|
|
113
|
-
####
|
|
114
|
-
**Input:**
|
|
106
|
+
#### Upstream Transformer (transform-upstream.mjs)
|
|
107
|
+
**Input:** Upstream commands source
|
|
115
108
|
**Transformations:**
|
|
116
109
|
- Rename: `/*` → `ck-*` namespace
|
|
117
110
|
- Replace: `$ARGUMENTS` → `${input}`
|
|
@@ -120,25 +113,12 @@ navigation: {} # Workflow navigation rules
|
|
|
120
113
|
- Transform command references in content
|
|
121
114
|
|
|
122
115
|
**Functions:**
|
|
123
|
-
- `
|
|
116
|
+
- `resolveUpstreamPath()` - Expand ~ paths
|
|
124
117
|
- `findCommandFile()` - Locate command files (handles variations)
|
|
125
118
|
- `transformFile()` - Apply all transformations
|
|
126
119
|
- `transformCommandReference()` - Update handoff commands
|
|
127
120
|
- `transformContentReferences()` - Replace content references
|
|
128
121
|
|
|
129
|
-
#### SpecKit Transformer (transform-speckit.mjs)
|
|
130
|
-
**Input:** upstream/speckit/templates/commands/
|
|
131
|
-
**Transformations:**
|
|
132
|
-
- Rename: `/speckit-*` → `/ck-*`
|
|
133
|
-
- Replace: `$ARGUMENTS` → `${input}`
|
|
134
|
-
- Remove `model` field from frontmatter
|
|
135
|
-
- Update handoff references to ck-* commands
|
|
136
|
-
|
|
137
|
-
**Functions:**
|
|
138
|
-
- `transformFile()` - Apply transformations
|
|
139
|
-
- `transformCommandReference()` - Update handoffs (speckit-* → ck-*)
|
|
140
|
-
- `transformContentReferences()` - Replace content references
|
|
141
|
-
|
|
142
122
|
### 4. Navigation Patcher (patch-navigation.mjs)
|
|
143
123
|
Injects workflow navigation footers into transformed prompts.
|
|
144
124
|
|
|
@@ -149,10 +129,9 @@ Injects workflow navigation footers into transformed prompts.
|
|
|
149
129
|
- All commands listed at footer
|
|
150
130
|
|
|
151
131
|
**Default Patterns:**
|
|
152
|
-
- `brainstorm` → suggest:
|
|
153
|
-
- `
|
|
154
|
-
- `
|
|
155
|
-
- `cook/implement` → suggest: test, fix
|
|
132
|
+
- `brainstorm` → suggest: plan, plan.fast
|
|
133
|
+
- `plan` → suggest: cook, test
|
|
134
|
+
- `ck-cook` → suggest: test, fix
|
|
156
135
|
- `test` → suggest: fix, review
|
|
157
136
|
|
|
158
137
|
### 5. Configuration (eng/resource-origins.yml)
|
|
@@ -161,20 +140,16 @@ Maintains mappings and sync metadata.
|
|
|
161
140
|
**Key Sections:**
|
|
162
141
|
- `version` - Config format version
|
|
163
142
|
- `synced_at` - Last sync timestamp
|
|
164
|
-
- `sources.
|
|
165
|
-
- `sources.claudekit` - ClaudeKit local path (~/.claude/commands)
|
|
143
|
+
- `sources.upstream` - Upstream source path
|
|
166
144
|
- `ignore` - Commands to skip
|
|
167
|
-
- `mappings` -
|
|
145
|
+
- `mappings` - 16 command mappings with origins and descriptions
|
|
168
146
|
- `navigation` - Workflow navigation rules
|
|
169
147
|
- `unknown_commands` - Tracking array for unmapped sources
|
|
170
148
|
|
|
171
149
|
## Prompt Inventory
|
|
172
150
|
|
|
173
|
-
###
|
|
174
|
-
16 prompts from
|
|
175
|
-
|
|
176
|
-
### SpecKit Commands (8)
|
|
177
|
-
8 prompts from upstream/speckit (specify, clarify, constitution, plan, tasks, implement, analyze, checklist)
|
|
151
|
+
### Upstream Commands (16)
|
|
152
|
+
16 prompts from upstream source (plan, plan.hard, plan.fast, fix, test, ask, bootstrap, review, watzup, help, brainstorm, cook, scout, git, debug, docs)
|
|
178
153
|
|
|
179
154
|
## Dependencies
|
|
180
155
|
|
|
@@ -190,9 +165,8 @@ Maintains mappings and sync metadata.
|
|
|
190
165
|
## Scripts
|
|
191
166
|
|
|
192
167
|
```bash
|
|
193
|
-
npm run sync #
|
|
194
|
-
npm run sync:
|
|
195
|
-
npm run sync:transform # Run transformations only
|
|
168
|
+
npm run sync # Transform and generate prompts
|
|
169
|
+
npm run sync:transform # Same as sync
|
|
196
170
|
npm run sync:dry-run # Preview changes without writing
|
|
197
171
|
npm run test # Run tests
|
|
198
172
|
npm run build # Update README
|
|
@@ -202,17 +176,14 @@ npm run build # Update README
|
|
|
202
176
|
|
|
203
177
|
### Sync Operation
|
|
204
178
|
1. **Config Load** - Read resource-origins.yml
|
|
205
|
-
2. **
|
|
206
|
-
|
|
207
|
-
- SpecKit: Glob upstream/speckit/templates/commands → Transform → Output ck-* prompts
|
|
208
|
-
3. **Merge** - Combine results (21 total)
|
|
209
|
-
4. **Patch Navigation** - Inject workflow footers
|
|
179
|
+
2. **Transform** - Upstream: Glob source commands → Transform → Output ck-* prompts
|
|
180
|
+
3. **Patch Navigation** - Inject workflow footers
|
|
210
181
|
5. **Write Output** - Create prompt files (prompts/ directory)
|
|
211
182
|
6. **Update Config** - Record sync timestamps
|
|
212
183
|
|
|
213
184
|
### File Transformation
|
|
214
185
|
```
|
|
215
|
-
Input (
|
|
186
|
+
Input (Upstream)
|
|
216
187
|
├── Frontmatter: {name: "plan", ...}
|
|
217
188
|
├── Content: "Run $ARGUMENTS using /fix command"
|
|
218
189
|
↓
|
|
@@ -230,8 +201,7 @@ Output (ck-*)
|
|
|
230
201
|
|
|
231
202
|
## Error Handling
|
|
232
203
|
|
|
233
|
-
- **Missing
|
|
234
|
-
- **Missing SpecKit:** Warns if upstream/speckit not found, continues gracefully
|
|
204
|
+
- **Missing Upstream:** Warns if upstream source not found, continues gracefully
|
|
235
205
|
- **File Not Found:** Logs warning per missing file, adds to skipped array
|
|
236
206
|
- **Transform Errors:** Logs errors per command, collects in results.errors
|
|
237
207
|
- **Unknown Commands:** Tracks in config.unknown_commands for manual mapping
|
|
@@ -242,16 +212,15 @@ Output (ck-*)
|
|
|
242
212
|
2. **Ignore List:** Skip commands via resource-origins.yml
|
|
243
213
|
3. **Dry-run Mode:** Preview all changes before writing
|
|
244
214
|
4. **Navigation Workflow:** Suggested next steps guide users through prompts
|
|
245
|
-
5. **
|
|
246
|
-
6. **Graceful Degradation:** Continues if sources unavailable
|
|
215
|
+
5. **Graceful Degradation:** Continues if source unavailable
|
|
247
216
|
7. **Frontmatter Management:** Preserves metadata, removes model field
|
|
248
217
|
8. **Content Reference Updates:** Transforms all command references to ck-* namespace
|
|
249
218
|
|
|
250
219
|
## Version History
|
|
251
220
|
|
|
252
|
-
- **v1.2.6**
|
|
221
|
+
- **v1.2.6** - 25 prompts (with SpecKit, now removed)
|
|
253
222
|
- **v1.2.0** - Initial Copilot port with full resource set
|
|
254
|
-
- **v1.1.0** - 21 prompts
|
|
223
|
+
- **v1.1.0** - 21 prompts, SpecKit sync pipeline (now removed)
|
|
255
224
|
- **v1.0.9** - Comprehensive documentation update
|
|
256
225
|
- **v1.0.8** - Initial release
|
|
257
226
|
|
|
@@ -6,31 +6,21 @@ When to use which command workflow.
|
|
|
6
6
|
|
|
7
7
|
| Need | Command | Workflow |
|
|
8
8
|
|------|---------|----------|
|
|
9
|
-
| **Quick implementation** | `ck-plan-fast` |
|
|
10
|
-
| **Deep research + plan** | `ck-plan-hard` |
|
|
11
|
-
| **
|
|
12
|
-
| **
|
|
13
|
-
| **Run tests** | `ck-test` | ClaudeKit |
|
|
9
|
+
| **Quick implementation** | `ck-plan-fast` | CoKit |
|
|
10
|
+
| **Deep research + plan** | `ck-plan-hard` | CoKit |
|
|
11
|
+
| **Fix a bug** | `ck-fix` | CoKit |
|
|
12
|
+
| **Run tests** | `ck-test` | CoKit |
|
|
14
13
|
|
|
15
14
|
---
|
|
16
15
|
|
|
17
|
-
##
|
|
16
|
+
## Commands
|
|
18
17
|
|
|
19
|
-
###
|
|
20
|
-
|
|
21
|
-
Best for: **Day-to-day development**, quick fixes, exploration.
|
|
18
|
+
### CoKit (`ck-*`)
|
|
22
19
|
|
|
23
20
|
```
|
|
24
21
|
ck-plan-fast → ck-test → ck-fix
|
|
25
22
|
```
|
|
26
23
|
|
|
27
|
-
**When to use:**
|
|
28
|
-
- Fixing bugs
|
|
29
|
-
- Small features (< 1 day)
|
|
30
|
-
- Prototyping
|
|
31
|
-
- Exploratory coding
|
|
32
|
-
- You know what to build
|
|
33
|
-
|
|
34
24
|
**Commands:**
|
|
35
25
|
| Command | Description |
|
|
36
26
|
|---------|-------------|
|
|
@@ -42,34 +32,19 @@ ck-plan-fast → ck-test → ck-fix
|
|
|
42
32
|
| `ck-ask` | Answer questions |
|
|
43
33
|
| `ck-review` | Review codebase |
|
|
44
34
|
| `ck-bootstrap` | Start new project |
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
- Requirements need formal spec
|
|
59
|
-
- Multiple stakeholders
|
|
60
|
-
- Need traceability
|
|
61
|
-
- Compliance/audit needs
|
|
62
|
-
|
|
63
|
-
**Commands:**
|
|
64
|
-
| Command | Description |
|
|
65
|
-
|---------|-------------|
|
|
66
|
-
| `ck-spec-specify` | Create formal spec from idea |
|
|
67
|
-
| `ck-spec-clarify` | Ask clarification questions |
|
|
68
|
-
| `ck-spec-plan` | Generate plan from spec |
|
|
69
|
-
| `ck-spec-tasks` | Break plan into tasks |
|
|
70
|
-
| `ck-spec-implement` | Execute tasks |
|
|
71
|
-
| `ck-spec-analyze` | Check consistency |
|
|
72
|
-
| `ck-spec-checklist` | Validate requirements |
|
|
35
|
+
| `ck-brainstorm` | Brainstorm solutions |
|
|
36
|
+
| `ck-cook` | Implement step by step |
|
|
37
|
+
| `ck-scout` | Fast codebase scouting |
|
|
38
|
+
| `ck-git` | Git operations |
|
|
39
|
+
| `ck-debug` | Systematic debugging |
|
|
40
|
+
| `ck-docs` | Search library docs |
|
|
41
|
+
| `ck-watzup` | Review recent changes |
|
|
42
|
+
| `ck-help` | CoKit usage guide |
|
|
43
|
+
| `ck-ship` | Release pipeline: test→review→commit→push→PR |
|
|
44
|
+
| `ck-deploy` | Deploy to any platform |
|
|
45
|
+
| `ck-security` | STRIDE + OWASP security audit |
|
|
46
|
+
| `ck-project` | Track progress, manage tasks |
|
|
47
|
+
| `ck-frontend` | Build React/TS frontends |
|
|
73
48
|
|
|
74
49
|
---
|
|
75
50
|
|
|
@@ -82,12 +57,12 @@ Is this a bug fix?
|
|
|
82
57
|
Is this < 4 hours work?
|
|
83
58
|
└─ Yes → ck-plan-fast
|
|
84
59
|
|
|
85
|
-
|
|
86
|
-
└─ Yes → ck-
|
|
87
|
-
└─ No → ck-plan-
|
|
60
|
+
Need deep research?
|
|
61
|
+
└─ Yes → ck-plan-hard
|
|
62
|
+
└─ No → ck-plan-fast
|
|
88
63
|
|
|
89
64
|
Are you exploring/prototyping?
|
|
90
|
-
└─ Yes → ck-plan-fast
|
|
65
|
+
└─ Yes → ck-brainstorm → ck-plan-fast
|
|
91
66
|
```
|
|
92
67
|
|
|
93
68
|
---
|
|
@@ -109,30 +84,9 @@ Single command. Done.
|
|
|
109
84
|
|
|
110
85
|
### Scenario 3: Payment Integration (Complex Feature)
|
|
111
86
|
```
|
|
112
|
-
/ck-
|
|
113
|
-
/ck-
|
|
114
|
-
|
|
115
|
-
/ck-spec-tasks
|
|
116
|
-
/ck-spec-implement
|
|
87
|
+
/ck-brainstorm "Integrate Stripe payments for subscriptions"
|
|
88
|
+
/ck-plan-hard "Stripe payment integration"
|
|
89
|
+
→ implement phase by phase
|
|
117
90
|
/ck-test
|
|
91
|
+
/ck-review
|
|
118
92
|
```
|
|
119
|
-
|
|
120
|
-
---
|
|
121
|
-
|
|
122
|
-
## Mixing Workflows
|
|
123
|
-
|
|
124
|
-
You can mix them:
|
|
125
|
-
- Start with `ck-spec-specify` for formal spec
|
|
126
|
-
- Use `ck-fix` when bugs arise during implementation
|
|
127
|
-
- Use `ck-test` regardless of workflow
|
|
128
|
-
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## Summary
|
|
132
|
-
|
|
133
|
-
| Workflow | Best For | Time | Rigor |
|
|
134
|
-
|----------|----------|------|-------|
|
|
135
|
-
| **ClaudeKit** | Daily dev, fixes | Minutes-Hours | Low-Medium |
|
|
136
|
-
| **SpecKit** | Big features, teams | Days-Weeks | High |
|
|
137
|
-
|
|
138
|
-
**Rule of thumb:** If you can explain it in one sentence, use ClaudeKit. If you need a doc, use SpecKit.
|