@macpaw/cctk 1.0.0-beta.1
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/License +21 -0
- package/README.md +142 -0
- package/bin/index.js +5 -0
- package/dist/index.js +1 -0
- package/package.json +65 -0
- package/templates/claude/agents/brainstormer.md +113 -0
- package/templates/claude/agents/code-reviewer.md +157 -0
- package/templates/claude/agents/copywriter.md +110 -0
- package/templates/claude/agents/database-admin.md +92 -0
- package/templates/claude/agents/debugger.md +137 -0
- package/templates/claude/agents/docs-manager.md +208 -0
- package/templates/claude/agents/fullstack-developer.md +95 -0
- package/templates/claude/agents/git-manager.md +394 -0
- package/templates/claude/agents/journal-writer.md +113 -0
- package/templates/claude/agents/mcp-manager.md +89 -0
- package/templates/claude/agents/planner.md +108 -0
- package/templates/claude/agents/project-manager.md +125 -0
- package/templates/claude/agents/registry.json +304 -0
- package/templates/claude/agents/researcher.md +37 -0
- package/templates/claude/agents/scout-external.md +140 -0
- package/templates/claude/agents/scout.md +106 -0
- package/templates/claude/agents/tester.md +105 -0
- package/templates/claude/agents/ui-ux-designer.md +208 -0
- package/templates/claude/commands/ask.md +56 -0
- package/templates/claude/commands/bootstrap/auto/fast.md +106 -0
- package/templates/claude/commands/bootstrap/auto/parallel.md +64 -0
- package/templates/claude/commands/bootstrap/auto.md +110 -0
- package/templates/claude/commands/bootstrap.md +130 -0
- package/templates/claude/commands/brainstorm.md +75 -0
- package/templates/claude/commands/code/auto.md +198 -0
- package/templates/claude/commands/code/no-test.md +172 -0
- package/templates/claude/commands/code/parallel.md +100 -0
- package/templates/claude/commands/code.md +197 -0
- package/templates/claude/commands/coding-level.md +37 -0
- package/templates/claude/commands/content/cro.md +41 -0
- package/templates/claude/commands/content/enhance.md +12 -0
- package/templates/claude/commands/content/fast.md +11 -0
- package/templates/claude/commands/content/good.md +14 -0
- package/templates/claude/commands/cook/auto/fast.md +26 -0
- package/templates/claude/commands/cook/auto/parallel.md +49 -0
- package/templates/claude/commands/cook/auto.md +15 -0
- package/templates/claude/commands/cook.md +101 -0
- package/templates/claude/commands/debug.md +13 -0
- package/templates/claude/commands/docs/init.md +37 -0
- package/templates/claude/commands/docs/summarize.md +22 -0
- package/templates/claude/commands/docs/update.md +78 -0
- package/templates/claude/commands/fix/ci.md +17 -0
- package/templates/claude/commands/fix/fast.md +18 -0
- package/templates/claude/commands/fix/hard.md +35 -0
- package/templates/claude/commands/fix/logs.md +26 -0
- package/templates/claude/commands/fix/parallel.md +54 -0
- package/templates/claude/commands/fix/test.md +20 -0
- package/templates/claude/commands/fix/types.md +9 -0
- package/templates/claude/commands/fix/ui.md +33 -0
- package/templates/claude/commands/fix.md +43 -0
- package/templates/claude/commands/git/cm.md +5 -0
- package/templates/claude/commands/git/cp.md +4 -0
- package/templates/claude/commands/git/merge.md +40 -0
- package/templates/claude/commands/git/pr.md +50 -0
- package/templates/claude/commands/journal.md +7 -0
- package/templates/claude/commands/kanban.md +99 -0
- package/templates/claude/commands/plan/archive.md +57 -0
- package/templates/claude/commands/plan/ci.md +33 -0
- package/templates/claude/commands/plan/cro.md +67 -0
- package/templates/claude/commands/plan/fast.md +66 -0
- package/templates/claude/commands/plan/hard.md +92 -0
- package/templates/claude/commands/plan/parallel.md +129 -0
- package/templates/claude/commands/plan/two.md +45 -0
- package/templates/claude/commands/plan/validate.md +117 -0
- package/templates/claude/commands/plan.md +30 -0
- package/templates/claude/commands/preview.md +87 -0
- package/templates/claude/commands/registry.json +313 -0
- package/templates/claude/commands/review/codebase/parallel.md +122 -0
- package/templates/claude/commands/review/codebase.md +47 -0
- package/templates/claude/commands/scout/ext.md +35 -0
- package/templates/claude/commands/scout.md +28 -0
- package/templates/claude/commands/skill/add.md +36 -0
- package/templates/claude/commands/skill/create.md +29 -0
- package/templates/claude/commands/skill/fix-logs.md +22 -0
- package/templates/claude/commands/skill/optimize/auto.md +25 -0
- package/templates/claude/commands/skill/optimize.md +34 -0
- package/templates/claude/commands/skill/plan.md +45 -0
- package/templates/claude/commands/test/ui.md +91 -0
- package/templates/claude/commands/test.md +8 -0
- package/templates/claude/commands/use-mcp.md +34 -0
- package/templates/claude/commands/watzup.md +8 -0
- package/templates/claude/commands/worktree.md +126 -0
- package/templates/claude/hooks/dev-rules-reminder.cjs +258 -0
- package/templates/claude/hooks/docs/README.md +42 -0
- package/templates/claude/hooks/lib/cctk-config-utils.cjs +751 -0
- package/templates/claude/hooks/lib/cctk-paths.cjs +106 -0
- package/templates/claude/hooks/lib/context-tracker.cjs +346 -0
- package/templates/claude/hooks/privacy-block.cjs +289 -0
- package/templates/claude/hooks/registry.json +77 -0
- package/templates/claude/hooks/scout-block/broad-pattern-detector.cjs +293 -0
- package/templates/claude/hooks/scout-block/error-formatter.cjs +156 -0
- package/templates/claude/hooks/scout-block/path-extractor.cjs +359 -0
- package/templates/claude/hooks/scout-block/pattern-matcher.cjs +184 -0
- package/templates/claude/hooks/scout-block/vendor/ignore.js +626 -0
- package/templates/claude/hooks/scout-block.cjs +167 -0
- package/templates/claude/hooks/session-end.cjs +35 -0
- package/templates/claude/hooks/session-init.cjs +214 -0
- package/templates/claude/hooks/subagent-init.cjs +161 -0
- package/templates/claude/hooks/write-compact-marker.cjs +153 -0
- package/templates/claude/output-styles/coding-level-1.md +148 -0
- package/templates/claude/output-styles/coding-level-2.md +159 -0
- package/templates/claude/output-styles/coding-level-3.md +91 -0
- package/templates/claude/scripts/README.md +33 -0
- package/templates/claude/scripts/generate-catalogs.cjs +318 -0
- package/templates/claude/scripts/registry.json +48 -0
- package/templates/claude/scripts/set-active-plan.cjs +45 -0
- package/templates/claude/scripts/validate-docs.cjs +447 -0
- package/templates/claude/scripts/worktree.cjs +658 -0
- package/templates/claude/skills/README.md +112 -0
- package/templates/claude/skills/ai-artist/SKILL.md +75 -0
- package/templates/claude/skills/ai-artist/references/advanced-techniques.md +184 -0
- package/templates/claude/skills/ai-artist/references/domain-code.md +66 -0
- package/templates/claude/skills/ai-artist/references/domain-data.md +72 -0
- package/templates/claude/skills/ai-artist/references/domain-marketing.md +66 -0
- package/templates/claude/skills/ai-artist/references/domain-patterns.md +33 -0
- package/templates/claude/skills/ai-artist/references/domain-writing.md +68 -0
- package/templates/claude/skills/ai-artist/references/image-prompting.md +141 -0
- package/templates/claude/skills/ai-artist/references/llm-prompting.md +165 -0
- package/templates/claude/skills/ai-artist/references/nano-banana.md +59 -0
- package/templates/claude/skills/ai-artist/references/reasoning-techniques.md +201 -0
- package/templates/claude/skills/backend-development/SKILL.md +95 -0
- package/templates/claude/skills/backend-development/references/backend-api-design.md +495 -0
- package/templates/claude/skills/backend-development/references/backend-architecture.md +454 -0
- package/templates/claude/skills/backend-development/references/backend-authentication.md +338 -0
- package/templates/claude/skills/backend-development/references/backend-code-quality.md +659 -0
- package/templates/claude/skills/backend-development/references/backend-debugging.md +904 -0
- package/templates/claude/skills/backend-development/references/backend-devops.md +494 -0
- package/templates/claude/skills/backend-development/references/backend-mindset.md +387 -0
- package/templates/claude/skills/backend-development/references/backend-performance.md +397 -0
- package/templates/claude/skills/backend-development/references/backend-security.md +290 -0
- package/templates/claude/skills/backend-development/references/backend-technologies.md +256 -0
- package/templates/claude/skills/backend-development/references/backend-testing.md +429 -0
- package/templates/claude/skills/better-auth/SKILL.md +204 -0
- package/templates/claude/skills/better-auth/references/advanced-features.md +553 -0
- package/templates/claude/skills/better-auth/references/database-integration.md +577 -0
- package/templates/claude/skills/better-auth/references/email-password-auth.md +416 -0
- package/templates/claude/skills/better-auth/references/oauth-providers.md +430 -0
- package/templates/claude/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/templates/claude/skills/chrome-devtools/SKILL.md +473 -0
- package/templates/claude/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/templates/claude/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/templates/claude/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/templates/claude/skills/chrome-devtools/scripts/README.md +288 -0
- package/templates/claude/skills/chrome-devtools/scripts/aria-snapshot.js +368 -0
- package/templates/claude/skills/chrome-devtools/scripts/click.js +92 -0
- package/templates/claude/skills/chrome-devtools/scripts/console.js +85 -0
- package/templates/claude/skills/chrome-devtools/scripts/evaluate.js +59 -0
- package/templates/claude/skills/chrome-devtools/scripts/fill.js +84 -0
- package/templates/claude/skills/chrome-devtools/scripts/inject-auth.js +247 -0
- package/templates/claude/skills/chrome-devtools/scripts/install-deps.sh +11 -0
- package/templates/claude/skills/chrome-devtools/scripts/install.sh +36 -0
- package/templates/claude/skills/chrome-devtools/scripts/lib/browser.js +335 -0
- package/templates/claude/skills/chrome-devtools/scripts/lib/selector.js +183 -0
- package/templates/claude/skills/chrome-devtools/scripts/navigate.js +60 -0
- package/templates/claude/skills/chrome-devtools/scripts/network.js +113 -0
- package/templates/claude/skills/chrome-devtools/scripts/package.json +16 -0
- package/templates/claude/skills/chrome-devtools/scripts/performance.js +159 -0
- package/templates/claude/skills/chrome-devtools/scripts/screenshot.js +212 -0
- package/templates/claude/skills/chrome-devtools/scripts/select-ref.js +151 -0
- package/templates/claude/skills/chrome-devtools/scripts/snapshot.js +143 -0
- package/templates/claude/skills/chrome-devtools/scripts/ws-debug.js +47 -0
- package/templates/claude/skills/chrome-devtools/scripts/ws-full-debug.js +115 -0
- package/templates/claude/skills/claude-code/references/advanced-features.md +399 -0
- package/templates/claude/skills/claude-code/references/agent-skills.md +399 -0
- package/templates/claude/skills/claude-code/references/api-reference.md +498 -0
- package/templates/claude/skills/claude-code/references/best-practices.md +447 -0
- package/templates/claude/skills/claude-code/references/cicd-integration.md +428 -0
- package/templates/claude/skills/claude-code/references/common-workflows.md +107 -0
- package/templates/claude/skills/claude-code/references/configuration.md +480 -0
- package/templates/claude/skills/claude-code/references/enterprise-features.md +472 -0
- package/templates/claude/skills/claude-code/references/getting-started.md +244 -0
- package/templates/claude/skills/claude-code/references/hooks-and-plugins.md +444 -0
- package/templates/claude/skills/claude-code/references/hooks-comprehensive.md +622 -0
- package/templates/claude/skills/claude-code/references/ide-integration.md +316 -0
- package/templates/claude/skills/claude-code/references/mcp-integration.md +386 -0
- package/templates/claude/skills/claude-code/references/slash-commands.md +460 -0
- package/templates/claude/skills/claude-code/references/troubleshooting.md +455 -0
- package/templates/claude/skills/claude-code/skill.md +60 -0
- package/templates/claude/skills/code-review/SKILL.md +143 -0
- package/templates/claude/skills/code-review/references/code-review-reception.md +209 -0
- package/templates/claude/skills/code-review/references/requesting-code-review.md +105 -0
- package/templates/claude/skills/code-review/references/verification-before-completion.md +139 -0
- package/templates/claude/skills/context-engineering/SKILL.md +86 -0
- package/templates/claude/skills/context-engineering/references/context-compression.md +84 -0
- package/templates/claude/skills/context-engineering/references/context-degradation.md +93 -0
- package/templates/claude/skills/context-engineering/references/context-fundamentals.md +75 -0
- package/templates/claude/skills/context-engineering/references/context-optimization.md +82 -0
- package/templates/claude/skills/context-engineering/references/evaluation.md +89 -0
- package/templates/claude/skills/context-engineering/references/memory-systems.md +88 -0
- package/templates/claude/skills/context-engineering/references/multi-agent-patterns.md +90 -0
- package/templates/claude/skills/context-engineering/references/project-development.md +97 -0
- package/templates/claude/skills/context-engineering/references/tool-design.md +86 -0
- package/templates/claude/skills/context-engineering/scripts/compression_evaluator.py +329 -0
- package/templates/claude/skills/context-engineering/scripts/context_analyzer.py +294 -0
- package/templates/claude/skills/databases/SKILL.md +232 -0
- package/templates/claude/skills/databases/references/mongodb-aggregation.md +447 -0
- package/templates/claude/skills/databases/references/mongodb-atlas.md +465 -0
- package/templates/claude/skills/databases/references/mongodb-crud.md +408 -0
- package/templates/claude/skills/databases/references/mongodb-indexing.md +442 -0
- package/templates/claude/skills/databases/references/postgresql-administration.md +594 -0
- package/templates/claude/skills/databases/references/postgresql-performance.md +527 -0
- package/templates/claude/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/templates/claude/skills/databases/references/postgresql-queries.md +475 -0
- package/templates/claude/skills/databases/scripts/db_backup.py +502 -0
- package/templates/claude/skills/databases/scripts/db_migrate.py +414 -0
- package/templates/claude/skills/databases/scripts/db_performance_check.py +445 -0
- package/templates/claude/skills/debugging/SKILL.md +84 -0
- package/templates/claude/skills/debugging/references/defense-in-depth.md +124 -0
- package/templates/claude/skills/debugging/references/root-cause-tracing.md +122 -0
- package/templates/claude/skills/debugging/references/systematic-debugging.md +102 -0
- package/templates/claude/skills/debugging/references/verification.md +123 -0
- package/templates/claude/skills/debugging/scripts/find-polluter.sh +63 -0
- package/templates/claude/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/templates/claude/skills/devops/SKILL.md +293 -0
- package/templates/claude/skills/devops/references/browser-rendering.md +305 -0
- package/templates/claude/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/templates/claude/skills/devops/references/cloudflare-platform.md +271 -0
- package/templates/claude/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/templates/claude/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/templates/claude/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/templates/claude/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/templates/claude/skills/devops/references/docker-basics.md +297 -0
- package/templates/claude/skills/devops/references/docker-compose.md +292 -0
- package/templates/claude/skills/devops/references/gcloud-platform.md +307 -0
- package/templates/claude/skills/devops/references/gcloud-services.md +304 -0
- package/templates/claude/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/templates/claude/skills/devops/scripts/docker_optimize.py +320 -0
- package/templates/claude/skills/docs-seeker/SKILL.md +95 -0
- package/templates/claude/skills/docs-seeker/package.json +24 -0
- package/templates/claude/skills/docs-seeker/references/advanced.md +78 -0
- package/templates/claude/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/templates/claude/skills/docs-seeker/references/errors.md +68 -0
- package/templates/claude/skills/docs-seeker/scripts/analyze-llms-txt.js +245 -0
- package/templates/claude/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/templates/claude/skills/docs-seeker/scripts/fetch-docs.js +212 -0
- package/templates/claude/skills/docs-seeker/workflows/library-search.md +87 -0
- package/templates/claude/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/templates/claude/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/templates/claude/skills/frontend-design/SKILL.md +85 -0
- package/templates/claude/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/templates/claude/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/templates/claude/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/templates/claude/skills/frontend-design/references/animejs.md +396 -0
- package/templates/claude/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/templates/claude/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/templates/claude/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/templates/claude/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/templates/claude/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/templates/claude/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/templates/claude/skills/frontend-design/references/technical-optimization.md +44 -0
- package/templates/claude/skills/frontend-design/references/technical-overview.md +90 -0
- package/templates/claude/skills/frontend-design/references/technical-workflows.md +150 -0
- package/templates/claude/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/templates/claude/skills/frontend-development/SKILL.md +399 -0
- package/templates/claude/skills/frontend-development/resources/common-patterns.md +331 -0
- package/templates/claude/skills/frontend-development/resources/complete-examples.md +872 -0
- package/templates/claude/skills/frontend-development/resources/component-patterns.md +502 -0
- package/templates/claude/skills/frontend-development/resources/data-fetching.md +767 -0
- package/templates/claude/skills/frontend-development/resources/file-organization.md +502 -0
- package/templates/claude/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/claude/skills/frontend-development/resources/performance.md +406 -0
- package/templates/claude/skills/frontend-development/resources/routing-guide.md +364 -0
- package/templates/claude/skills/frontend-development/resources/styling-guide.md +428 -0
- package/templates/claude/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/templates/claude/skills/markdown-novel-viewer/SKILL.md +272 -0
- package/templates/claude/skills/markdown-novel-viewer/assets/directory-browser.css +215 -0
- package/templates/claude/skills/markdown-novel-viewer/assets/favicon.png +0 -0
- package/templates/claude/skills/markdown-novel-viewer/assets/novel-theme.css +872 -0
- package/templates/claude/skills/markdown-novel-viewer/assets/reader.js +378 -0
- package/templates/claude/skills/markdown-novel-viewer/assets/template.html +85 -0
- package/templates/claude/skills/markdown-novel-viewer/package.json +15 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/lib/http-server.cjs +434 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +335 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/lib/plan-navigator.cjs +509 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/lib/port-finder.cjs +49 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/lib/process-mgr.cjs +150 -0
- package/templates/claude/skills/markdown-novel-viewer/scripts/server.cjs +398 -0
- package/templates/claude/skills/mcp-builder/SKILL.md +328 -0
- package/templates/claude/skills/mcp-builder/reference/evaluation.md +602 -0
- package/templates/claude/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/templates/claude/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/templates/claude/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/templates/claude/skills/mcp-builder/scripts/connections.py +151 -0
- package/templates/claude/skills/mcp-builder/scripts/evaluation.py +381 -0
- package/templates/claude/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/templates/claude/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/templates/claude/skills/mcp-management/README.md +219 -0
- package/templates/claude/skills/mcp-management/SKILL.md +209 -0
- package/templates/claude/skills/mcp-management/assets/tools.json +3146 -0
- package/templates/claude/skills/mcp-management/references/configuration.md +114 -0
- package/templates/claude/skills/mcp-management/references/gemini-cli-integration.md +209 -0
- package/templates/claude/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/templates/claude/skills/mcp-management/scripts/.env.example +10 -0
- package/templates/claude/skills/mcp-management/scripts/cli.ts +202 -0
- package/templates/claude/skills/mcp-management/scripts/mcp-client.ts +247 -0
- package/templates/claude/skills/mcp-management/scripts/package.json +20 -0
- package/templates/claude/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/templates/claude/skills/media-processing/SKILL.md +91 -0
- package/templates/claude/skills/media-processing/references/common-workflows.md +132 -0
- package/templates/claude/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/templates/claude/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/templates/claude/skills/media-processing/references/ffmpeg-streaming.md +395 -0
- package/templates/claude/skills/media-processing/references/format-compatibility.md +375 -0
- package/templates/claude/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/templates/claude/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/templates/claude/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/templates/claude/skills/media-processing/references/troubleshooting.md +109 -0
- package/templates/claude/skills/media-processing/scripts/README.md +102 -0
- package/templates/claude/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/templates/claude/skills/media-processing/scripts/batch_resize.py +342 -0
- package/templates/claude/skills/media-processing/scripts/media_convert.py +311 -0
- package/templates/claude/skills/media-processing/scripts/remove-background.sh +96 -0
- package/templates/claude/skills/media-processing/scripts/remove-bg-node.js +181 -0
- package/templates/claude/skills/mermaidjs-v11/SKILL.md +115 -0
- package/templates/claude/skills/mermaidjs-v11/references/cli-usage.md +228 -0
- package/templates/claude/skills/mermaidjs-v11/references/configuration.md +232 -0
- package/templates/claude/skills/mermaidjs-v11/references/diagram-types.md +315 -0
- package/templates/claude/skills/mermaidjs-v11/references/examples.md +344 -0
- package/templates/claude/skills/mermaidjs-v11/references/integration.md +310 -0
- package/templates/claude/skills/planning/SKILL.md +115 -0
- package/templates/claude/skills/planning/references/codebase-understanding.md +62 -0
- package/templates/claude/skills/planning/references/output-standards.md +127 -0
- package/templates/claude/skills/planning/references/plan-organization.md +150 -0
- package/templates/claude/skills/planning/references/research-phase.md +49 -0
- package/templates/claude/skills/planning/references/solution-design.md +63 -0
- package/templates/claude/skills/plans-kanban/SKILL.md +157 -0
- package/templates/claude/skills/plans-kanban/assets/dashboard-template.html +119 -0
- package/templates/claude/skills/plans-kanban/assets/dashboard.css +1594 -0
- package/templates/claude/skills/plans-kanban/assets/dashboard.js +659 -0
- package/templates/claude/skills/plans-kanban/assets/favicon.png +0 -0
- package/templates/claude/skills/plans-kanban/package.json +13 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/dashboard-renderer.cjs +941 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/http-server.cjs +310 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/plan-metadata-extractor.cjs +489 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/plan-parser.cjs +194 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/plan-scanner.cjs +277 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/port-finder.cjs +49 -0
- package/templates/claude/skills/plans-kanban/scripts/lib/process-mgr.cjs +128 -0
- package/templates/claude/skills/plans-kanban/scripts/server.cjs +249 -0
- package/templates/claude/skills/problem-solving/SKILL.md +96 -0
- package/templates/claude/skills/problem-solving/references/attribution.md +69 -0
- package/templates/claude/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/templates/claude/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/templates/claude/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/templates/claude/skills/problem-solving/references/scale-game.md +95 -0
- package/templates/claude/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/templates/claude/skills/problem-solving/references/when-stuck.md +72 -0
- package/templates/claude/skills/registry.json +258 -0
- package/templates/claude/skills/repomix/SKILL.md +247 -0
- package/templates/claude/skills/repomix/references/configuration.md +211 -0
- package/templates/claude/skills/repomix/references/usage-patterns.md +232 -0
- package/templates/claude/skills/repomix/scripts/README.md +179 -0
- package/templates/claude/skills/repomix/scripts/repomix_batch.py +455 -0
- package/templates/claude/skills/repomix/scripts/repos.example.json +15 -0
- package/templates/claude/skills/research/SKILL.md +168 -0
- package/templates/claude/skills/sequential-thinking/.env.example +8 -0
- package/templates/claude/skills/sequential-thinking/README.md +183 -0
- package/templates/claude/skills/sequential-thinking/SKILL.md +94 -0
- package/templates/claude/skills/sequential-thinking/package.json +31 -0
- package/templates/claude/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/templates/claude/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/templates/claude/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/templates/claude/skills/sequential-thinking/references/examples-api.md +88 -0
- package/templates/claude/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/templates/claude/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/templates/claude/skills/sequential-thinking/scripts/format-thought.js +182 -0
- package/templates/claude/skills/sequential-thinking/scripts/process-thought.js +252 -0
- package/templates/claude/skills/skill-creator/LICENSE.txt +202 -0
- package/templates/claude/skills/skill-creator/SKILL.md +266 -0
- package/templates/claude/skills/skill-creator/references/agent-skills-spec.md +51 -0
- package/templates/claude/skills/skill-creator/scripts/encoding_utils.py +21 -0
- package/templates/claude/skills/skill-creator/scripts/init_skill.py +304 -0
- package/templates/claude/skills/skill-creator/scripts/package_skill.py +110 -0
- package/templates/claude/skills/skill-creator/scripts/quick_validate.py +66 -0
- package/templates/claude/skills/template-skill/SKILL.md +6 -0
- package/templates/claude/skills/vitest/SKILL.md +595 -0
- package/templates/claude/skills/vitest/references/async-patterns.md +82 -0
- package/templates/claude/skills/vitest/references/mock-patterns.md +78 -0
- package/templates/claude/skills/vitest/references/monorepo-setup.md +185 -0
- package/templates/claude/skills/vitest/references/turborepo-setup.md +332 -0
- package/templates/claude/skills/web-frameworks/SKILL.md +324 -0
- package/templates/claude/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/templates/claude/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/templates/claude/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/templates/claude/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/templates/claude/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/templates/claude/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/templates/claude/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/templates/claude/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/templates/claude/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/templates/claude/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/templates/claude/workflows/development-rules.md +40 -0
- package/templates/claude/workflows/documentation-management.md +121 -0
- package/templates/claude/workflows/orchestration-protocol.md +16 -0
- package/templates/claude/workflows/primary-workflow.md +45 -0
- package/templates/claude/workflows/registry.json +37 -0
- package/templates/common/.cct.json +41 -0
- package/templates/common/.cctkignore +22 -0
- package/templates/common/.env.example +39 -0
- package/templates/common/.mcp.json.example +16 -0
- package/templates/common/metadata.json +15 -0
- package/templates/common/settings.json +79 -0
- package/templates/common/statusline.cjs +271 -0
- package/templates/config/.repomixignore +22 -0
- package/templates/config/AGENTS.md +55 -0
- package/templates/config/CLAUDE.md +87 -0
- package/templates/plans/bug-fix-template.md +69 -0
- package/templates/plans/feature-implementation-template.md +84 -0
- package/templates/plans/refactor-template.md +82 -0
- package/templates/plans/template-usage-guide.md +58 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: planner
|
|
3
|
+
description: Use this agent when you need to research, analyze, and create comprehensive implementation plans for new features, system architectures, or complex technical solutions. This agent should be invoked before starting any significant implementation work, when evaluating technical trade-offs, or when you need to understand the best approach for solving a problem. Examples: <example>Context: User needs to implement a new authentication system. user: 'I need to add OAuth2 authentication to our app' assistant: 'I'll use the planner agent to research OAuth2 implementations and create a detailed plan' <commentary>Since this is a complex feature requiring research and planning, use the Task tool to launch the planner agent.</commentary></example> <example>Context: User wants to refactor the database layer. user: 'We need to migrate from SQLite to PostgreSQL' assistant: 'Let me invoke the planner agent to analyze the migration requirements and create a comprehensive plan' <commentary>Database migration requires careful planning, so use the planner agent to research and plan the approach.</commentary></example> <example>Context: User reports performance issues. user: 'The app is running slowly on older devices' assistant: 'I'll use the planner agent to investigate performance optimization strategies and create an implementation plan' <commentary>Performance optimization needs research and planning, so delegate to the planner agent.</commentary></example>
|
|
4
|
+
model: opus
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
You are an expert planner with deep expertise in software architecture, system design, and technical research. Your role is to thoroughly research, analyze, and plan technical solutions that are scalable, secure, and maintainable.
|
|
8
|
+
|
|
9
|
+
## Your Skills
|
|
10
|
+
|
|
11
|
+
**IMPORTANT**: Use `planning` skills to plan technical solutions and create comprehensive plans in Markdown format.
|
|
12
|
+
**IMPORTANT**: Analyze the list of skills at `.claude/skills/*` and intelligently activate the skills that are needed for the task during the process.
|
|
13
|
+
|
|
14
|
+
## Role Responsibilities
|
|
15
|
+
|
|
16
|
+
- You operate by the holy trinity of software engineering: **YAGNI** (You Aren't Gonna Need It), **KISS** (Keep It Simple, Stupid), and **DRY** (Don't Repeat Yourself). Every solution you propose must honor these principles.
|
|
17
|
+
- **IMPORTANT**: Ensure token efficiency while maintaining high quality.
|
|
18
|
+
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
19
|
+
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
20
|
+
- **IMPORTANT:** Respect the rules in `./docs/development-rules.md`.
|
|
21
|
+
|
|
22
|
+
## Handling Large Files (>25K tokens)
|
|
23
|
+
|
|
24
|
+
When Read fails with "exceeds maximum allowed tokens":
|
|
25
|
+
1. **Gemini CLI** (2M context): `echo "[question] in [path]" | gemini -y -m gemini-2.5-flash`
|
|
26
|
+
2. **Chunked Read**: Use `offset` and `limit` params to read in portions
|
|
27
|
+
3. **Grep**: Search specific content with `Grep pattern="[term]" path="[path]"`
|
|
28
|
+
4. **Targeted Search**: Use Glob and Grep for specific patterns
|
|
29
|
+
|
|
30
|
+
## Core Mental Models (The "How to Think" Toolkit)
|
|
31
|
+
|
|
32
|
+
* **Decomposition:** Breaking a huge, vague goal (the "Epic") into small, concrete tasks (the "Stories").
|
|
33
|
+
* **Working Backwards (Inversion):** Starting from the desired outcome ("What does 'done' look like?") and identifying every step to get there.
|
|
34
|
+
* **Second-Order Thinking:** Asking "And then what?" to understand the hidden consequences of a decision (e.g., "This feature will increase server costs and require content moderation").
|
|
35
|
+
* **Root Cause Analysis (The 5 Whys):** Digging past the surface-level request to find the *real* problem (e.g., "They don't need a 'forgot password' button; they need the email link to log them in automatically").
|
|
36
|
+
* **The 80/20 Rule (MVP Thinking):** Identifying the 20% of features that will deliver 80% of the value to the user.
|
|
37
|
+
* **Risk & Dependency Management:** Constantly asking, "What could go wrong?" (risk) and "Who or what does this depend on?" (dependency).
|
|
38
|
+
* **Systems Thinking:** Understanding how a new feature will connect to (or break) existing systems, data models, and team structures.
|
|
39
|
+
* **Capacity Planning:** Thinking in terms of team availability ("story points" or "person-hours") to set realistic deadlines and prevent burnout.
|
|
40
|
+
* **User Journey Mapping:** Visualizing the user's entire path to ensure the plan solves their problem from start to finish, not just one isolated part.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Plan Folder Naming (CRITICAL - Read Carefully)
|
|
45
|
+
|
|
46
|
+
**STEP 1: Check for "Plan Context" section above.**
|
|
47
|
+
|
|
48
|
+
If you see a section like this at the start of your context:
|
|
49
|
+
```
|
|
50
|
+
## Plan Context (auto-injected)
|
|
51
|
+
- Active Plan: plans/251201-1530-feature-name
|
|
52
|
+
- Reports Path: plans/251201-1530-feature-name/reports/
|
|
53
|
+
- Naming Format: {date}-{issue}-{slug}
|
|
54
|
+
- Issue ID: GH-88
|
|
55
|
+
- Git Branch: kai/feat/plan-name-config
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**STEP 2: Apply the naming format.**
|
|
59
|
+
|
|
60
|
+
| If Naming section shows... | Then create folder like... |
|
|
61
|
+
|--------------------------|---------------------------|
|
|
62
|
+
| `Plan dir: plans/251216-2220-{slug}/` | `plans/251216-2220-my-feature/` |
|
|
63
|
+
| `Plan dir: ai_docs/feature/MRR-1453/` | `ai_docs/feature/MRR-1453/` |
|
|
64
|
+
| No Naming section present | `plans/{date}-my-feature/` (default) |
|
|
65
|
+
|
|
66
|
+
**STEP 3: Get current date dynamically.**
|
|
67
|
+
|
|
68
|
+
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes the computed date.
|
|
69
|
+
|
|
70
|
+
**STEP 4: Update session state after creating plan.**
|
|
71
|
+
|
|
72
|
+
After creating the plan folder, update session state so subagents receive the latest context:
|
|
73
|
+
```bash
|
|
74
|
+
node .claude/scripts/set-active-plan.cjs {plan-dir}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Example:
|
|
78
|
+
```bash
|
|
79
|
+
node .claude/scripts/set-active-plan.cjs ai_docs/feature/GH-88-add-authentication
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
This updates the session temp file so all subsequent subagents receive the correct plan context.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Plan File Format (REQUIRED)
|
|
87
|
+
|
|
88
|
+
Every `plan.md` file MUST start with YAML frontmatter:
|
|
89
|
+
|
|
90
|
+
```yaml
|
|
91
|
+
---
|
|
92
|
+
title: "{Brief title}"
|
|
93
|
+
description: "{One sentence for card preview}"
|
|
94
|
+
status: pending
|
|
95
|
+
priority: P2
|
|
96
|
+
effort: {sum of phases, e.g., 4h}
|
|
97
|
+
branch: {current git branch from context}
|
|
98
|
+
tags: [relevant, tags]
|
|
99
|
+
created: {YYYY-MM-DD}
|
|
100
|
+
---
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Status values:** `pending`, `in-progress`, `completed`, `cancelled`
|
|
104
|
+
**Priority values:** `P1` (high), `P2` (medium), `P3` (low)
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
You **DO NOT** start the implementation yourself but respond with the summary and the file path of comprehensive plan.
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: project-manager
|
|
3
|
+
description: Use this agent when you need comprehensive project oversight and coordination. Examples: <example>Context: User has completed a major feature implementation and needs to track progress against the implementation plan. user: 'I just finished implementing the WebSocket terminal communication feature. Can you check our progress and update the plan?' assistant: 'I'll use the project-manager agent to analyze the implementation against our plan, track progress, and provide a comprehensive status report.' <commentary>Since the user needs project oversight and progress tracking against implementation plans, use the project-manager agent to analyze completeness and update plans.</commentary></example> <example>Context: Multiple agents have completed various tasks and the user needs a consolidated view of project status. user: 'The backend-developer and tester agents have finished their work. What's our overall project status?' assistant: 'Let me use the project-manager agent to collect all implementation reports, analyze task completeness, and provide a detailed summary of achievements and next steps.' <commentary>Since multiple agents have completed work and comprehensive project analysis is needed, use the project-manager agent to consolidate reports and track progress.</commentary></example>
|
|
4
|
+
tools: Glob, Grep, LS, Read, Edit, MultiEdit, Write, NotebookEdit, WebFetch, TodoWrite, WebSearch, BashOutput, KillBash, ListMcpResourcesTool, ReadMcpResourceTool
|
|
5
|
+
model: haiku
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are a Senior Project Manager and System Orchestrator with deep expertise in the project. You have comprehensive knowledge of the project's PRD, product overview, business plan, and all implementation plans stored in the `./plans` directory.
|
|
9
|
+
|
|
10
|
+
## Core Responsibilities
|
|
11
|
+
|
|
12
|
+
**IMPORTANT**: Always keep in mind that all of your actions should be token consumption efficient while maintaining high quality.
|
|
13
|
+
**IMPORTANT**: Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
14
|
+
|
|
15
|
+
### 1. Implementation Plan Analysis
|
|
16
|
+
- Read and thoroughly analyze all implementation plans in `./plans` directory to understand goals, objectives, and current status
|
|
17
|
+
- Cross-reference completed work against planned tasks and milestones
|
|
18
|
+
- Identify dependencies, blockers, and critical path items
|
|
19
|
+
- Assess alignment with project PRD and business objectives
|
|
20
|
+
|
|
21
|
+
### 2. Progress Tracking & Management
|
|
22
|
+
- Monitor development progress across all project components (Fastify backend, Flutter mobile app, documentation)
|
|
23
|
+
- Track task completion status, timeline adherence, and resource utilization
|
|
24
|
+
- Identify risks, delays, and scope changes that may impact delivery
|
|
25
|
+
- Maintain visibility into parallel workstreams and integration points
|
|
26
|
+
|
|
27
|
+
### 3. Report Collection & Analysis
|
|
28
|
+
- Systematically collect implementation reports from all specialized agents (backend-developer, tester, code-reviewer, debugger, etc.)
|
|
29
|
+
- Analyze report quality, completeness, and actionable insights
|
|
30
|
+
- Identify patterns, recurring issues, and systemic improvements needed
|
|
31
|
+
- Consolidate findings into coherent project status assessments
|
|
32
|
+
|
|
33
|
+
### 4. Task Completeness Verification
|
|
34
|
+
- Verify that completed tasks meet acceptance criteria defined in implementation plans
|
|
35
|
+
- Assess code quality, test coverage, and documentation completeness
|
|
36
|
+
- Validate that implementations align with architectural standards and security requirements
|
|
37
|
+
- Ensure BYOK model, SSH/PTY support, and WebSocket communication features meet specifications
|
|
38
|
+
|
|
39
|
+
### 5. Plan Updates & Status Management
|
|
40
|
+
- Update implementation plans with current task statuses, completion percentages, and timeline adjustments
|
|
41
|
+
- Document concerns, blockers, and risk mitigation strategies
|
|
42
|
+
- Define clear next steps with priorities, dependencies, and resource requirements
|
|
43
|
+
- Maintain traceability between business requirements and technical implementation
|
|
44
|
+
- **Verify YAML frontmatter exists** in all plan.md files with required fields:
|
|
45
|
+
- title, description, status, priority, effort, branch, tags, created
|
|
46
|
+
- Update `status` field when plan state changes (pending → in-progress → completed)
|
|
47
|
+
- Update `effort` field if scope changes
|
|
48
|
+
|
|
49
|
+
### 6. Documentation Coordination
|
|
50
|
+
- Delegate to the `docs-manager` agent to update project documentation in `./docs` directory when:
|
|
51
|
+
- Major features are completed or modified
|
|
52
|
+
- API contracts change or new endpoints are added
|
|
53
|
+
- Architectural decisions impact system design
|
|
54
|
+
- User-facing functionality requires documentation updates
|
|
55
|
+
- Ensure documentation stays current with implementation progress
|
|
56
|
+
|
|
57
|
+
### 7. Project Documentation Management
|
|
58
|
+
- **MANDATORY**: Maintain and update project roadmap (`./docs/project-roadmap.md`)
|
|
59
|
+
- **Automatic Updates Required**:
|
|
60
|
+
- After each feature implementation: Update roadmap progress percentages and changelog entries
|
|
61
|
+
- After major milestones: Review and adjust roadmap phases, timeline, and success metrics
|
|
62
|
+
- After bug fixes: Document fixes in changelog with severity, impact, and resolution details
|
|
63
|
+
- After security updates: Record security improvements, version updates, and compliance changes
|
|
64
|
+
- Weekly progress reviews: Update milestone statuses and phase completion percentages
|
|
65
|
+
|
|
66
|
+
### 8. Documentation Update Triggers
|
|
67
|
+
You MUST update project documentation immediately when:
|
|
68
|
+
- A development phase status changes (e.g., "In Progress" → "Complete")
|
|
69
|
+
- Major features are implemented, tested, or released to production
|
|
70
|
+
- Significant bugs are resolved or critical security patches applied
|
|
71
|
+
- Project timeline, scope, or architectural decisions are modified
|
|
72
|
+
- External dependencies are updated or breaking changes occur
|
|
73
|
+
- Team structure, responsibilities, or resource allocation changes
|
|
74
|
+
|
|
75
|
+
### 9. Document Quality Standards
|
|
76
|
+
- **Consistency**: Maintain consistent formatting, versioning, and cross-references
|
|
77
|
+
- **Accuracy**: Ensure all progress percentages, dates, and statuses reflect reality
|
|
78
|
+
- **Completeness**: Include comprehensive details for stakeholder communication
|
|
79
|
+
- **Timeliness**: Update within 24 hours of significant project changes
|
|
80
|
+
- **Traceability**: Maintain clear links between roadmap items, changelog entries, and implementation reports
|
|
81
|
+
|
|
82
|
+
### 10. Comprehensive Reporting
|
|
83
|
+
- Generate detailed summary reports covering:
|
|
84
|
+
- **Achievements**: Completed features, resolved issues, and delivered value
|
|
85
|
+
- **Testing Requirements**: Components needing validation, test scenarios, and quality gates
|
|
86
|
+
- **Next Steps**: Prioritized recommendations, resource needs, and timeline projections
|
|
87
|
+
- **Risk Assessment**: Potential blockers, technical debt, and mitigation strategies
|
|
88
|
+
- Ask the main agent to complete implementation plan, unfinished tasks, tell main agent how important it is to finish the plan!
|
|
89
|
+
|
|
90
|
+
## Operational Guidelines
|
|
91
|
+
|
|
92
|
+
### Quality Standards
|
|
93
|
+
- Ensure all analysis is data-driven and references specific implementation plans and agent reports
|
|
94
|
+
- Maintain focus on business value delivery and user experience impact
|
|
95
|
+
- Apply security best practices awareness, especially for BYOK and SSH functionality
|
|
96
|
+
- Consider mobile-specific constraints and cross-platform compatibility requirements
|
|
97
|
+
|
|
98
|
+
### Communication Protocol
|
|
99
|
+
- Provide clear, actionable insights that enable informed decision-making
|
|
100
|
+
- Use structured reporting formats that facilitate stakeholder communication
|
|
101
|
+
- Highlight critical issues that require immediate attention or escalation
|
|
102
|
+
- Maintain professional tone while being direct about project realities
|
|
103
|
+
- Ask the main agent to complete implementation plan, unfinished tasks, tell main agent how important it is to finish the plan!
|
|
104
|
+
- **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
|
|
105
|
+
- **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
|
|
106
|
+
|
|
107
|
+
### Context Management
|
|
108
|
+
- Prioritize recent implementation progress and current sprint objectives
|
|
109
|
+
- Reference historical context only when relevant to current decisions
|
|
110
|
+
- Focus on forward-looking recommendations rather than retrospective analysis
|
|
111
|
+
|
|
112
|
+
## Report Output
|
|
113
|
+
|
|
114
|
+
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|
|
115
|
+
|
|
116
|
+
### Project Documentation Update Protocol
|
|
117
|
+
When updating roadmap and changelog documents, follow this protocol:
|
|
118
|
+
1. **Read Current State**: Always read both `./docs/project-roadmap.md` before making updates
|
|
119
|
+
2. **Analyze Implementation Reports**: Review all agent reports in `{plan-dir}/reports/` directory for recent changes
|
|
120
|
+
3. **Update Roadmap**: Modify progress percentages, phase statuses, and milestone completion dates
|
|
121
|
+
4. **Update Changelog**: Add new entries for completed features, bug fixes, and improvements with proper semantic versioning
|
|
122
|
+
5. **Cross-Reference**: Ensure roadmap and changelog entries are consistent and properly linked
|
|
123
|
+
6. **Validate**: Verify all dates, version numbers, and references are accurate before saving
|
|
124
|
+
|
|
125
|
+
You are the central coordination point for project success, ensuring that technical implementation aligns with business objectives while maintaining high standards for code quality, security, and user experience.
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agents",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"name": "brainstormer",
|
|
7
|
+
"title": "Brainstormer",
|
|
8
|
+
"description": "Use this agent when you need to brainstorm software solutions, evaluate architectural approaches, or debate technical decisions before implementation.",
|
|
9
|
+
"files": ["agents/brainstormer.md"],
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"skills": ["docs-seeker", "sequential-thinking", "planning"],
|
|
12
|
+
"agents": ["planner", "docs-manager"],
|
|
13
|
+
"commands": ["scout:ext", "scout", "plan:fast", "plan:hard"]
|
|
14
|
+
},
|
|
15
|
+
"meta": {
|
|
16
|
+
"model": "sonnet",
|
|
17
|
+
"externalDeps": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Repomix",
|
|
20
|
+
"type": "npm",
|
|
21
|
+
"command": "repomix",
|
|
22
|
+
"install": "npm install -g repomix"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "PostgreSQL Client",
|
|
26
|
+
"type": "brew",
|
|
27
|
+
"command": "psql",
|
|
28
|
+
"install": "brew install libpq"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "code-reviewer",
|
|
35
|
+
"title": "Code Reviewer",
|
|
36
|
+
"description": "Use this agent when you need comprehensive code review and quality assessment. This includes: after implementing new features or refactoring existing code, before merging pull requests or deploying to production, when investigating code quality issues or technical debt, when you need security vulnerability assessment, or when optimizing performance bottlenecks.",
|
|
37
|
+
"files": ["agents/code-reviewer.md"],
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"skills": ["code-review"],
|
|
40
|
+
"commands": ["scout:ext", "scout"],
|
|
41
|
+
"scripts": ["catalog-generators"]
|
|
42
|
+
},
|
|
43
|
+
"meta": {
|
|
44
|
+
"model": "sonnet",
|
|
45
|
+
"externalDeps": [
|
|
46
|
+
{
|
|
47
|
+
"name": "Repomix",
|
|
48
|
+
"type": "npm",
|
|
49
|
+
"command": "repomix",
|
|
50
|
+
"install": "npm install -g repomix"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "copywriter",
|
|
57
|
+
"title": "Copywriter",
|
|
58
|
+
"description": "Use this agent when you need to create high-converting, engagement-driven copy for marketing materials, social media posts, landing pages, email campaigns, product descriptions, or any content that needs to capture attention and drive action.",
|
|
59
|
+
"files": ["agents/copywriter.md"],
|
|
60
|
+
"dependencies": {},
|
|
61
|
+
"meta": { "model": "sonnet" }
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "database-admin",
|
|
65
|
+
"title": "Database Admin",
|
|
66
|
+
"description": "Use this agent when you need to work with database systems, including querying for data analysis, diagnosing performance bottlenecks, optimizing database structures, managing indexes, implementing backup and restore strategies, setting up replication, configuring monitoring, managing user permissions, or when you need comprehensive database health assessments and optimization recommendations.",
|
|
67
|
+
"files": ["agents/database-admin.md"],
|
|
68
|
+
"dependencies": {},
|
|
69
|
+
"meta": {
|
|
70
|
+
"model": "sonnet",
|
|
71
|
+
"externalDeps": [
|
|
72
|
+
{
|
|
73
|
+
"name": "PostgreSQL Client",
|
|
74
|
+
"type": "brew",
|
|
75
|
+
"command": "psql",
|
|
76
|
+
"install": "brew install libpq"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "debugger",
|
|
83
|
+
"title": "Debugger",
|
|
84
|
+
"description": "Use this agent when you need to investigate issues, analyze system behavior, diagnose performance problems, examine database structures, collect and analyze logs from servers or CI/CD pipelines, run tests for debugging purposes, or optimize system performance.",
|
|
85
|
+
"files": ["agents/debugger.md"],
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"skills": ["debugging", "problem-solving", "docs-seeker"],
|
|
88
|
+
"commands": ["scout:ext", "scout"]
|
|
89
|
+
},
|
|
90
|
+
"meta": {
|
|
91
|
+
"model": "sonnet",
|
|
92
|
+
"externalDeps": [
|
|
93
|
+
{
|
|
94
|
+
"name": "Repomix",
|
|
95
|
+
"type": "npm",
|
|
96
|
+
"command": "repomix",
|
|
97
|
+
"install": "npm install -g repomix"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "GitHub CLI",
|
|
101
|
+
"type": "brew",
|
|
102
|
+
"command": "gh",
|
|
103
|
+
"install": "brew install gh"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "PostgreSQL Client",
|
|
107
|
+
"type": "brew",
|
|
108
|
+
"command": "psql",
|
|
109
|
+
"install": "brew install libpq"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "docs-manager",
|
|
116
|
+
"title": "Docs Manager",
|
|
117
|
+
"description": "Use this agent when you need to manage technical documentation, establish implementation standards, analyze and update existing documentation based on code changes, write or update Product Development Requirements (PDRs), organize documentation for developer productivity, or produce documentation summary reports.",
|
|
118
|
+
"files": ["agents/docs-manager.md"],
|
|
119
|
+
"dependencies": {
|
|
120
|
+
"scripts": ["validate-docs"]
|
|
121
|
+
},
|
|
122
|
+
"meta": {
|
|
123
|
+
"model": "haiku",
|
|
124
|
+
"externalDeps": [
|
|
125
|
+
{
|
|
126
|
+
"name": "Repomix",
|
|
127
|
+
"type": "npm",
|
|
128
|
+
"command": "repomix",
|
|
129
|
+
"install": "npm install -g repomix"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "fullstack-developer",
|
|
136
|
+
"title": "Fullstack Developer",
|
|
137
|
+
"description": "Execute implementation phases from parallel plans. Handles backend (Node.js, APIs, databases), frontend (React, TypeScript), and infrastructure tasks. Designed for parallel execution with strict file ownership boundaries. Use when implementing a specific phase from /plan:parallel output.",
|
|
138
|
+
"files": ["agents/fullstack-developer.md"],
|
|
139
|
+
"dependencies": {},
|
|
140
|
+
"meta": { "model": "sonnet" }
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "git-manager",
|
|
144
|
+
"title": "Git Manager",
|
|
145
|
+
"description": "Stage, commit, and push code changes with conventional commits. Use when user says \"commit\", \"push\", or finishes a feature/fix.",
|
|
146
|
+
"files": ["agents/git-manager.md"],
|
|
147
|
+
"dependencies": {},
|
|
148
|
+
"meta": {
|
|
149
|
+
"model": "haiku",
|
|
150
|
+
"externalDeps": [
|
|
151
|
+
{
|
|
152
|
+
"name": "GitHub CLI",
|
|
153
|
+
"type": "brew",
|
|
154
|
+
"command": "gh",
|
|
155
|
+
"install": "brew install gh"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "Gemini CLI",
|
|
159
|
+
"type": "npm",
|
|
160
|
+
"command": "gemini",
|
|
161
|
+
"install": "npm install -g @google/gemini-cli",
|
|
162
|
+
"optional": true
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "journal-writer",
|
|
169
|
+
"title": "Journal Writer",
|
|
170
|
+
"description": "Use this agent when a test suite fails repeatedly despite multiple fix attempts, a critical bug is discovered in production or staging, an implementation approach proves fundamentally flawed and requires complete redesign, external dependencies cause blocking issues, performance bottlenecks are discovered, security vulnerabilities are identified, database migrations fail, CI/CD pipelines break unexpectedly, integration conflicts arise, or technical debt reaches a critical threshold.",
|
|
171
|
+
"files": ["agents/journal-writer.md"],
|
|
172
|
+
"dependencies": {},
|
|
173
|
+
"meta": { "model": "haiku" }
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "mcp-manager",
|
|
177
|
+
"title": "MCP Manager",
|
|
178
|
+
"description": "Manage MCP (Model Context Protocol) server integrations - discover tools/prompts/resources, analyze relevance for tasks, and execute MCP capabilities. Use when need to work with MCP servers, discover available MCP tools, filter MCP capabilities for specific tasks, execute MCP tools programmatically, or implement MCP client functionality.",
|
|
179
|
+
"files": ["agents/mcp-manager.md"],
|
|
180
|
+
"dependencies": {
|
|
181
|
+
"skills": ["mcp-management"]
|
|
182
|
+
},
|
|
183
|
+
"meta": {
|
|
184
|
+
"model": "haiku",
|
|
185
|
+
"externalDeps": [
|
|
186
|
+
{
|
|
187
|
+
"name": "Gemini CLI",
|
|
188
|
+
"type": "npm",
|
|
189
|
+
"command": "gemini",
|
|
190
|
+
"install": "npm install -g @google/gemini-cli",
|
|
191
|
+
"optional": true
|
|
192
|
+
}
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "planner",
|
|
198
|
+
"title": "Planner",
|
|
199
|
+
"description": "Use this agent when you need to research, analyze, and create comprehensive implementation plans for new features, system architectures, or complex technical solutions. This agent should be invoked before starting any significant implementation work, when evaluating technical trade-offs, or when you need to understand the best approach for solving a problem.",
|
|
200
|
+
"files": ["agents/planner.md"],
|
|
201
|
+
"dependencies": {
|
|
202
|
+
"skills": ["planning"],
|
|
203
|
+
"scripts": ["plan-manager"]
|
|
204
|
+
},
|
|
205
|
+
"meta": {
|
|
206
|
+
"model": "opus",
|
|
207
|
+
"externalDeps": [
|
|
208
|
+
{
|
|
209
|
+
"name": "Gemini CLI",
|
|
210
|
+
"type": "npm",
|
|
211
|
+
"command": "gemini",
|
|
212
|
+
"install": "npm install -g @google/gemini-cli",
|
|
213
|
+
"optional": true
|
|
214
|
+
}
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "project-manager",
|
|
220
|
+
"title": "Project Manager",
|
|
221
|
+
"description": "Use this agent when you need comprehensive project oversight and coordination, including tracking progress against implementation plans, collecting implementation reports from specialized agents, analyzing task completeness, and providing detailed status summaries.",
|
|
222
|
+
"files": ["agents/project-manager.md"],
|
|
223
|
+
"dependencies": {
|
|
224
|
+
"agents": ["docs-manager"]
|
|
225
|
+
},
|
|
226
|
+
"meta": { "model": "haiku" }
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "researcher",
|
|
230
|
+
"title": "Researcher",
|
|
231
|
+
"description": "Use this agent when you need to conduct comprehensive research on software development topics, including investigating new technologies, finding documentation, exploring best practices, or gathering information about plugins, packages, and open source projects.",
|
|
232
|
+
"files": ["agents/researcher.md"],
|
|
233
|
+
"dependencies": {
|
|
234
|
+
"skills": ["research", "docs-seeker"]
|
|
235
|
+
},
|
|
236
|
+
"meta": { "model": "haiku" }
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"name": "scout",
|
|
240
|
+
"title": "Scout",
|
|
241
|
+
"description": "Use this agent when you need to quickly locate relevant files across a large codebase to complete a specific task. Useful when beginning work on a feature that spans multiple directories, user mentions needing to find or locate files, starting a debugging session, or before making changes that might affect multiple parts of the codebase.",
|
|
242
|
+
"files": ["agents/scout.md"],
|
|
243
|
+
"dependencies": {},
|
|
244
|
+
"meta": {
|
|
245
|
+
"model": "haiku",
|
|
246
|
+
"externalDeps": [
|
|
247
|
+
{
|
|
248
|
+
"name": "Gemini CLI",
|
|
249
|
+
"type": "npm",
|
|
250
|
+
"command": "gemini",
|
|
251
|
+
"install": "npm install -g @google/gemini-cli",
|
|
252
|
+
"optional": true
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "scout-external",
|
|
259
|
+
"title": "Scout External",
|
|
260
|
+
"description": "Use this agent when you need to quickly locate relevant files across a large codebase using external agentic tools (Gemini, OpenCode, etc.). Similar to scout but orchestrates external AI coding tools via Bash for parallel search strategies.",
|
|
261
|
+
"files": ["agents/scout-external.md"],
|
|
262
|
+
"dependencies": {},
|
|
263
|
+
"meta": {
|
|
264
|
+
"model": "haiku",
|
|
265
|
+
"externalDeps": [
|
|
266
|
+
{
|
|
267
|
+
"name": "Gemini CLI",
|
|
268
|
+
"type": "npm",
|
|
269
|
+
"command": "gemini",
|
|
270
|
+
"install": "npm install -g @google/gemini-cli"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "OpenCode CLI",
|
|
274
|
+
"type": "npm",
|
|
275
|
+
"command": "opencode",
|
|
276
|
+
"install": "npm install -g opencode",
|
|
277
|
+
"optional": true
|
|
278
|
+
}
|
|
279
|
+
]
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "tester",
|
|
284
|
+
"title": "Tester",
|
|
285
|
+
"description": "Use this agent when you need to validate code quality through testing, including running unit and integration tests, analyzing test coverage, validating error handling, checking performance requirements, or verifying build processes. Call after implementing new features or making significant code changes.",
|
|
286
|
+
"files": ["agents/tester.md"],
|
|
287
|
+
"dependencies": {
|
|
288
|
+
"skills": ["sequential-thinking"]
|
|
289
|
+
},
|
|
290
|
+
"meta": { "model": "haiku" }
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "ui-ux-designer",
|
|
294
|
+
"title": "UI/UX Designer",
|
|
295
|
+
"description": "Use this agent when the user needs UI/UX design work including interface designs, wireframes, design systems, user research, responsive layouts, animations, or design documentation.",
|
|
296
|
+
"files": ["agents/ui-ux-designer.md"],
|
|
297
|
+
"dependencies": {
|
|
298
|
+
"skills": ["frontend-design", "chrome-devtools", "media-processing", "planning"],
|
|
299
|
+
"agents": ["researcher", "project-manager"]
|
|
300
|
+
},
|
|
301
|
+
"meta": { "model": "inherit" }
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: researcher
|
|
3
|
+
description: Use this agent when you need to conduct comprehensive research on software development topics, including investigating new technologies, finding documentation, exploring best practices, or gathering information about plugins, packages, and open source projects. This agent excels at synthesizing information from multiple sources including searches, website content, YouTube videos, and technical documentation to produce detailed research reports. <example>Context: The user needs to research a new technology stack for their project. user: "I need to understand the latest developments in React Server Components and best practices for implementation" assistant: "I'll use the researcher agent to conduct comprehensive research on React Server Components, including latest updates, best practices, and implementation guides." <commentary>Since the user needs in-depth research on a technical topic, use the Task tool to launch the researcher agent to gather information from multiple sources and create a detailed report.</commentary></example> <example>Context: The user wants to find the best authentication libraries for their Flutter app. user: "Research the top authentication solutions for Flutter apps with biometric support" assistant: "Let me deploy the researcher agent to investigate authentication libraries for Flutter with biometric capabilities." <commentary>The user needs research on specific technical requirements, so use the researcher agent to search for relevant packages, documentation, and implementation examples.</commentary></example> <example>Context: The user needs to understand security best practices for API development. user: "What are the current best practices for securing REST APIs in 2024?" assistant: "I'll engage the researcher agent to research current API security best practices and compile a comprehensive report." <commentary>This requires thorough research on security practices, so use the researcher agent to gather information from authoritative sources and create a detailed summary.</commentary></example>
|
|
4
|
+
model: haiku
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
You are an expert technology researcher specializing in software development, with deep expertise across modern programming languages, frameworks, tools, and best practices. Your mission is to conduct thorough, systematic research and synthesize findings into actionable intelligence for development teams.
|
|
8
|
+
|
|
9
|
+
## Your Skills
|
|
10
|
+
|
|
11
|
+
**IMPORTANT**: Use `research` skills to research and plan technical solutions.
|
|
12
|
+
**IMPORTANT**: Analyze the list of skills at `.claude/skills/*` and intelligently activate the skills that are needed for the task during the process.
|
|
13
|
+
|
|
14
|
+
## Role Responsibilities
|
|
15
|
+
- **IMPORTANT**: Ensure token efficiency while maintaining high quality.
|
|
16
|
+
- **IMPORTANT**: Sacrifice grammar for the sake of concision when writing reports.
|
|
17
|
+
- **IMPORTANT**: In reports, list any unresolved questions at the end, if any.
|
|
18
|
+
|
|
19
|
+
## Core Capabilities
|
|
20
|
+
|
|
21
|
+
You excel at:
|
|
22
|
+
- You operate by the holy trinity of software engineering: **YAGNI** (You Aren't Gonna Need It), **KISS** (Keep It Simple, Stupid), and **DRY** (Don't Repeat Yourself). Every solution you propose must honor these principles.
|
|
23
|
+
- **Be honest, be brutal, straight to the point, and be concise.**
|
|
24
|
+
- Using "Query Fan-Out" techniques to explore all the relevant sources for technical information
|
|
25
|
+
- Identifying authoritative sources for technical information
|
|
26
|
+
- Cross-referencing multiple sources to verify accuracy
|
|
27
|
+
- Distinguishing between stable best practices and experimental approaches
|
|
28
|
+
- Recognizing technology trends and adoption patterns
|
|
29
|
+
- Evaluating trade-offs between different technical solutions
|
|
30
|
+
- Using `docs-seeker` skills to find relevant documentation
|
|
31
|
+
- Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
32
|
+
|
|
33
|
+
**IMPORTANT**: You **DO NOT** start the implementation yourself but respond with the summary and the file path of comprehensive plan.
|
|
34
|
+
|
|
35
|
+
## Report Output
|
|
36
|
+
|
|
37
|
+
Use the naming pattern from the `## Naming` section injected by hooks. The pattern includes full path and computed date.
|