@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.
Files changed (415) hide show
  1. package/License +21 -0
  2. package/README.md +142 -0
  3. package/bin/index.js +5 -0
  4. package/dist/index.js +1 -0
  5. package/package.json +65 -0
  6. package/templates/claude/agents/brainstormer.md +113 -0
  7. package/templates/claude/agents/code-reviewer.md +157 -0
  8. package/templates/claude/agents/copywriter.md +110 -0
  9. package/templates/claude/agents/database-admin.md +92 -0
  10. package/templates/claude/agents/debugger.md +137 -0
  11. package/templates/claude/agents/docs-manager.md +208 -0
  12. package/templates/claude/agents/fullstack-developer.md +95 -0
  13. package/templates/claude/agents/git-manager.md +394 -0
  14. package/templates/claude/agents/journal-writer.md +113 -0
  15. package/templates/claude/agents/mcp-manager.md +89 -0
  16. package/templates/claude/agents/planner.md +108 -0
  17. package/templates/claude/agents/project-manager.md +125 -0
  18. package/templates/claude/agents/registry.json +304 -0
  19. package/templates/claude/agents/researcher.md +37 -0
  20. package/templates/claude/agents/scout-external.md +140 -0
  21. package/templates/claude/agents/scout.md +106 -0
  22. package/templates/claude/agents/tester.md +105 -0
  23. package/templates/claude/agents/ui-ux-designer.md +208 -0
  24. package/templates/claude/commands/ask.md +56 -0
  25. package/templates/claude/commands/bootstrap/auto/fast.md +106 -0
  26. package/templates/claude/commands/bootstrap/auto/parallel.md +64 -0
  27. package/templates/claude/commands/bootstrap/auto.md +110 -0
  28. package/templates/claude/commands/bootstrap.md +130 -0
  29. package/templates/claude/commands/brainstorm.md +75 -0
  30. package/templates/claude/commands/code/auto.md +198 -0
  31. package/templates/claude/commands/code/no-test.md +172 -0
  32. package/templates/claude/commands/code/parallel.md +100 -0
  33. package/templates/claude/commands/code.md +197 -0
  34. package/templates/claude/commands/coding-level.md +37 -0
  35. package/templates/claude/commands/content/cro.md +41 -0
  36. package/templates/claude/commands/content/enhance.md +12 -0
  37. package/templates/claude/commands/content/fast.md +11 -0
  38. package/templates/claude/commands/content/good.md +14 -0
  39. package/templates/claude/commands/cook/auto/fast.md +26 -0
  40. package/templates/claude/commands/cook/auto/parallel.md +49 -0
  41. package/templates/claude/commands/cook/auto.md +15 -0
  42. package/templates/claude/commands/cook.md +101 -0
  43. package/templates/claude/commands/debug.md +13 -0
  44. package/templates/claude/commands/docs/init.md +37 -0
  45. package/templates/claude/commands/docs/summarize.md +22 -0
  46. package/templates/claude/commands/docs/update.md +78 -0
  47. package/templates/claude/commands/fix/ci.md +17 -0
  48. package/templates/claude/commands/fix/fast.md +18 -0
  49. package/templates/claude/commands/fix/hard.md +35 -0
  50. package/templates/claude/commands/fix/logs.md +26 -0
  51. package/templates/claude/commands/fix/parallel.md +54 -0
  52. package/templates/claude/commands/fix/test.md +20 -0
  53. package/templates/claude/commands/fix/types.md +9 -0
  54. package/templates/claude/commands/fix/ui.md +33 -0
  55. package/templates/claude/commands/fix.md +43 -0
  56. package/templates/claude/commands/git/cm.md +5 -0
  57. package/templates/claude/commands/git/cp.md +4 -0
  58. package/templates/claude/commands/git/merge.md +40 -0
  59. package/templates/claude/commands/git/pr.md +50 -0
  60. package/templates/claude/commands/journal.md +7 -0
  61. package/templates/claude/commands/kanban.md +99 -0
  62. package/templates/claude/commands/plan/archive.md +57 -0
  63. package/templates/claude/commands/plan/ci.md +33 -0
  64. package/templates/claude/commands/plan/cro.md +67 -0
  65. package/templates/claude/commands/plan/fast.md +66 -0
  66. package/templates/claude/commands/plan/hard.md +92 -0
  67. package/templates/claude/commands/plan/parallel.md +129 -0
  68. package/templates/claude/commands/plan/two.md +45 -0
  69. package/templates/claude/commands/plan/validate.md +117 -0
  70. package/templates/claude/commands/plan.md +30 -0
  71. package/templates/claude/commands/preview.md +87 -0
  72. package/templates/claude/commands/registry.json +313 -0
  73. package/templates/claude/commands/review/codebase/parallel.md +122 -0
  74. package/templates/claude/commands/review/codebase.md +47 -0
  75. package/templates/claude/commands/scout/ext.md +35 -0
  76. package/templates/claude/commands/scout.md +28 -0
  77. package/templates/claude/commands/skill/add.md +36 -0
  78. package/templates/claude/commands/skill/create.md +29 -0
  79. package/templates/claude/commands/skill/fix-logs.md +22 -0
  80. package/templates/claude/commands/skill/optimize/auto.md +25 -0
  81. package/templates/claude/commands/skill/optimize.md +34 -0
  82. package/templates/claude/commands/skill/plan.md +45 -0
  83. package/templates/claude/commands/test/ui.md +91 -0
  84. package/templates/claude/commands/test.md +8 -0
  85. package/templates/claude/commands/use-mcp.md +34 -0
  86. package/templates/claude/commands/watzup.md +8 -0
  87. package/templates/claude/commands/worktree.md +126 -0
  88. package/templates/claude/hooks/dev-rules-reminder.cjs +258 -0
  89. package/templates/claude/hooks/docs/README.md +42 -0
  90. package/templates/claude/hooks/lib/cctk-config-utils.cjs +751 -0
  91. package/templates/claude/hooks/lib/cctk-paths.cjs +106 -0
  92. package/templates/claude/hooks/lib/context-tracker.cjs +346 -0
  93. package/templates/claude/hooks/privacy-block.cjs +289 -0
  94. package/templates/claude/hooks/registry.json +77 -0
  95. package/templates/claude/hooks/scout-block/broad-pattern-detector.cjs +293 -0
  96. package/templates/claude/hooks/scout-block/error-formatter.cjs +156 -0
  97. package/templates/claude/hooks/scout-block/path-extractor.cjs +359 -0
  98. package/templates/claude/hooks/scout-block/pattern-matcher.cjs +184 -0
  99. package/templates/claude/hooks/scout-block/vendor/ignore.js +626 -0
  100. package/templates/claude/hooks/scout-block.cjs +167 -0
  101. package/templates/claude/hooks/session-end.cjs +35 -0
  102. package/templates/claude/hooks/session-init.cjs +214 -0
  103. package/templates/claude/hooks/subagent-init.cjs +161 -0
  104. package/templates/claude/hooks/write-compact-marker.cjs +153 -0
  105. package/templates/claude/output-styles/coding-level-1.md +148 -0
  106. package/templates/claude/output-styles/coding-level-2.md +159 -0
  107. package/templates/claude/output-styles/coding-level-3.md +91 -0
  108. package/templates/claude/scripts/README.md +33 -0
  109. package/templates/claude/scripts/generate-catalogs.cjs +318 -0
  110. package/templates/claude/scripts/registry.json +48 -0
  111. package/templates/claude/scripts/set-active-plan.cjs +45 -0
  112. package/templates/claude/scripts/validate-docs.cjs +447 -0
  113. package/templates/claude/scripts/worktree.cjs +658 -0
  114. package/templates/claude/skills/README.md +112 -0
  115. package/templates/claude/skills/ai-artist/SKILL.md +75 -0
  116. package/templates/claude/skills/ai-artist/references/advanced-techniques.md +184 -0
  117. package/templates/claude/skills/ai-artist/references/domain-code.md +66 -0
  118. package/templates/claude/skills/ai-artist/references/domain-data.md +72 -0
  119. package/templates/claude/skills/ai-artist/references/domain-marketing.md +66 -0
  120. package/templates/claude/skills/ai-artist/references/domain-patterns.md +33 -0
  121. package/templates/claude/skills/ai-artist/references/domain-writing.md +68 -0
  122. package/templates/claude/skills/ai-artist/references/image-prompting.md +141 -0
  123. package/templates/claude/skills/ai-artist/references/llm-prompting.md +165 -0
  124. package/templates/claude/skills/ai-artist/references/nano-banana.md +59 -0
  125. package/templates/claude/skills/ai-artist/references/reasoning-techniques.md +201 -0
  126. package/templates/claude/skills/backend-development/SKILL.md +95 -0
  127. package/templates/claude/skills/backend-development/references/backend-api-design.md +495 -0
  128. package/templates/claude/skills/backend-development/references/backend-architecture.md +454 -0
  129. package/templates/claude/skills/backend-development/references/backend-authentication.md +338 -0
  130. package/templates/claude/skills/backend-development/references/backend-code-quality.md +659 -0
  131. package/templates/claude/skills/backend-development/references/backend-debugging.md +904 -0
  132. package/templates/claude/skills/backend-development/references/backend-devops.md +494 -0
  133. package/templates/claude/skills/backend-development/references/backend-mindset.md +387 -0
  134. package/templates/claude/skills/backend-development/references/backend-performance.md +397 -0
  135. package/templates/claude/skills/backend-development/references/backend-security.md +290 -0
  136. package/templates/claude/skills/backend-development/references/backend-technologies.md +256 -0
  137. package/templates/claude/skills/backend-development/references/backend-testing.md +429 -0
  138. package/templates/claude/skills/better-auth/SKILL.md +204 -0
  139. package/templates/claude/skills/better-auth/references/advanced-features.md +553 -0
  140. package/templates/claude/skills/better-auth/references/database-integration.md +577 -0
  141. package/templates/claude/skills/better-auth/references/email-password-auth.md +416 -0
  142. package/templates/claude/skills/better-auth/references/oauth-providers.md +430 -0
  143. package/templates/claude/skills/better-auth/scripts/better_auth_init.py +521 -0
  144. package/templates/claude/skills/chrome-devtools/SKILL.md +473 -0
  145. package/templates/claude/skills/chrome-devtools/references/cdp-domains.md +694 -0
  146. package/templates/claude/skills/chrome-devtools/references/performance-guide.md +940 -0
  147. package/templates/claude/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
  148. package/templates/claude/skills/chrome-devtools/scripts/README.md +288 -0
  149. package/templates/claude/skills/chrome-devtools/scripts/aria-snapshot.js +368 -0
  150. package/templates/claude/skills/chrome-devtools/scripts/click.js +92 -0
  151. package/templates/claude/skills/chrome-devtools/scripts/console.js +85 -0
  152. package/templates/claude/skills/chrome-devtools/scripts/evaluate.js +59 -0
  153. package/templates/claude/skills/chrome-devtools/scripts/fill.js +84 -0
  154. package/templates/claude/skills/chrome-devtools/scripts/inject-auth.js +247 -0
  155. package/templates/claude/skills/chrome-devtools/scripts/install-deps.sh +11 -0
  156. package/templates/claude/skills/chrome-devtools/scripts/install.sh +36 -0
  157. package/templates/claude/skills/chrome-devtools/scripts/lib/browser.js +335 -0
  158. package/templates/claude/skills/chrome-devtools/scripts/lib/selector.js +183 -0
  159. package/templates/claude/skills/chrome-devtools/scripts/navigate.js +60 -0
  160. package/templates/claude/skills/chrome-devtools/scripts/network.js +113 -0
  161. package/templates/claude/skills/chrome-devtools/scripts/package.json +16 -0
  162. package/templates/claude/skills/chrome-devtools/scripts/performance.js +159 -0
  163. package/templates/claude/skills/chrome-devtools/scripts/screenshot.js +212 -0
  164. package/templates/claude/skills/chrome-devtools/scripts/select-ref.js +151 -0
  165. package/templates/claude/skills/chrome-devtools/scripts/snapshot.js +143 -0
  166. package/templates/claude/skills/chrome-devtools/scripts/ws-debug.js +47 -0
  167. package/templates/claude/skills/chrome-devtools/scripts/ws-full-debug.js +115 -0
  168. package/templates/claude/skills/claude-code/references/advanced-features.md +399 -0
  169. package/templates/claude/skills/claude-code/references/agent-skills.md +399 -0
  170. package/templates/claude/skills/claude-code/references/api-reference.md +498 -0
  171. package/templates/claude/skills/claude-code/references/best-practices.md +447 -0
  172. package/templates/claude/skills/claude-code/references/cicd-integration.md +428 -0
  173. package/templates/claude/skills/claude-code/references/common-workflows.md +107 -0
  174. package/templates/claude/skills/claude-code/references/configuration.md +480 -0
  175. package/templates/claude/skills/claude-code/references/enterprise-features.md +472 -0
  176. package/templates/claude/skills/claude-code/references/getting-started.md +244 -0
  177. package/templates/claude/skills/claude-code/references/hooks-and-plugins.md +444 -0
  178. package/templates/claude/skills/claude-code/references/hooks-comprehensive.md +622 -0
  179. package/templates/claude/skills/claude-code/references/ide-integration.md +316 -0
  180. package/templates/claude/skills/claude-code/references/mcp-integration.md +386 -0
  181. package/templates/claude/skills/claude-code/references/slash-commands.md +460 -0
  182. package/templates/claude/skills/claude-code/references/troubleshooting.md +455 -0
  183. package/templates/claude/skills/claude-code/skill.md +60 -0
  184. package/templates/claude/skills/code-review/SKILL.md +143 -0
  185. package/templates/claude/skills/code-review/references/code-review-reception.md +209 -0
  186. package/templates/claude/skills/code-review/references/requesting-code-review.md +105 -0
  187. package/templates/claude/skills/code-review/references/verification-before-completion.md +139 -0
  188. package/templates/claude/skills/context-engineering/SKILL.md +86 -0
  189. package/templates/claude/skills/context-engineering/references/context-compression.md +84 -0
  190. package/templates/claude/skills/context-engineering/references/context-degradation.md +93 -0
  191. package/templates/claude/skills/context-engineering/references/context-fundamentals.md +75 -0
  192. package/templates/claude/skills/context-engineering/references/context-optimization.md +82 -0
  193. package/templates/claude/skills/context-engineering/references/evaluation.md +89 -0
  194. package/templates/claude/skills/context-engineering/references/memory-systems.md +88 -0
  195. package/templates/claude/skills/context-engineering/references/multi-agent-patterns.md +90 -0
  196. package/templates/claude/skills/context-engineering/references/project-development.md +97 -0
  197. package/templates/claude/skills/context-engineering/references/tool-design.md +86 -0
  198. package/templates/claude/skills/context-engineering/scripts/compression_evaluator.py +329 -0
  199. package/templates/claude/skills/context-engineering/scripts/context_analyzer.py +294 -0
  200. package/templates/claude/skills/databases/SKILL.md +232 -0
  201. package/templates/claude/skills/databases/references/mongodb-aggregation.md +447 -0
  202. package/templates/claude/skills/databases/references/mongodb-atlas.md +465 -0
  203. package/templates/claude/skills/databases/references/mongodb-crud.md +408 -0
  204. package/templates/claude/skills/databases/references/mongodb-indexing.md +442 -0
  205. package/templates/claude/skills/databases/references/postgresql-administration.md +594 -0
  206. package/templates/claude/skills/databases/references/postgresql-performance.md +527 -0
  207. package/templates/claude/skills/databases/references/postgresql-psql-cli.md +467 -0
  208. package/templates/claude/skills/databases/references/postgresql-queries.md +475 -0
  209. package/templates/claude/skills/databases/scripts/db_backup.py +502 -0
  210. package/templates/claude/skills/databases/scripts/db_migrate.py +414 -0
  211. package/templates/claude/skills/databases/scripts/db_performance_check.py +445 -0
  212. package/templates/claude/skills/debugging/SKILL.md +84 -0
  213. package/templates/claude/skills/debugging/references/defense-in-depth.md +124 -0
  214. package/templates/claude/skills/debugging/references/root-cause-tracing.md +122 -0
  215. package/templates/claude/skills/debugging/references/systematic-debugging.md +102 -0
  216. package/templates/claude/skills/debugging/references/verification.md +123 -0
  217. package/templates/claude/skills/debugging/scripts/find-polluter.sh +63 -0
  218. package/templates/claude/skills/debugging/scripts/find-polluter.test.md +102 -0
  219. package/templates/claude/skills/devops/SKILL.md +293 -0
  220. package/templates/claude/skills/devops/references/browser-rendering.md +305 -0
  221. package/templates/claude/skills/devops/references/cloudflare-d1-kv.md +123 -0
  222. package/templates/claude/skills/devops/references/cloudflare-platform.md +271 -0
  223. package/templates/claude/skills/devops/references/cloudflare-r2-storage.md +280 -0
  224. package/templates/claude/skills/devops/references/cloudflare-workers-advanced.md +312 -0
  225. package/templates/claude/skills/devops/references/cloudflare-workers-apis.md +309 -0
  226. package/templates/claude/skills/devops/references/cloudflare-workers-basics.md +418 -0
  227. package/templates/claude/skills/devops/references/docker-basics.md +297 -0
  228. package/templates/claude/skills/devops/references/docker-compose.md +292 -0
  229. package/templates/claude/skills/devops/references/gcloud-platform.md +307 -0
  230. package/templates/claude/skills/devops/references/gcloud-services.md +304 -0
  231. package/templates/claude/skills/devops/scripts/cloudflare_deploy.py +269 -0
  232. package/templates/claude/skills/devops/scripts/docker_optimize.py +320 -0
  233. package/templates/claude/skills/docs-seeker/SKILL.md +95 -0
  234. package/templates/claude/skills/docs-seeker/package.json +24 -0
  235. package/templates/claude/skills/docs-seeker/references/advanced.md +78 -0
  236. package/templates/claude/skills/docs-seeker/references/context7-patterns.md +68 -0
  237. package/templates/claude/skills/docs-seeker/references/errors.md +68 -0
  238. package/templates/claude/skills/docs-seeker/scripts/analyze-llms-txt.js +245 -0
  239. package/templates/claude/skills/docs-seeker/scripts/detect-topic.js +172 -0
  240. package/templates/claude/skills/docs-seeker/scripts/fetch-docs.js +212 -0
  241. package/templates/claude/skills/docs-seeker/workflows/library-search.md +87 -0
  242. package/templates/claude/skills/docs-seeker/workflows/repo-analysis.md +91 -0
  243. package/templates/claude/skills/docs-seeker/workflows/topic-search.md +77 -0
  244. package/templates/claude/skills/frontend-design/SKILL.md +85 -0
  245. package/templates/claude/skills/frontend-design/references/analysis-best-practices.md +80 -0
  246. package/templates/claude/skills/frontend-design/references/analysis-prompts.md +141 -0
  247. package/templates/claude/skills/frontend-design/references/analysis-techniques.md +118 -0
  248. package/templates/claude/skills/frontend-design/references/animejs.md +396 -0
  249. package/templates/claude/skills/frontend-design/references/design-extraction-overview.md +71 -0
  250. package/templates/claude/skills/frontend-design/references/extraction-best-practices.md +141 -0
  251. package/templates/claude/skills/frontend-design/references/extraction-output-templates.md +162 -0
  252. package/templates/claude/skills/frontend-design/references/extraction-prompts.md +127 -0
  253. package/templates/claude/skills/frontend-design/references/technical-accessibility.md +119 -0
  254. package/templates/claude/skills/frontend-design/references/technical-best-practices.md +97 -0
  255. package/templates/claude/skills/frontend-design/references/technical-optimization.md +44 -0
  256. package/templates/claude/skills/frontend-design/references/technical-overview.md +90 -0
  257. package/templates/claude/skills/frontend-design/references/technical-workflows.md +150 -0
  258. package/templates/claude/skills/frontend-design/references/visual-analysis-overview.md +95 -0
  259. package/templates/claude/skills/frontend-development/SKILL.md +399 -0
  260. package/templates/claude/skills/frontend-development/resources/common-patterns.md +331 -0
  261. package/templates/claude/skills/frontend-development/resources/complete-examples.md +872 -0
  262. package/templates/claude/skills/frontend-development/resources/component-patterns.md +502 -0
  263. package/templates/claude/skills/frontend-development/resources/data-fetching.md +767 -0
  264. package/templates/claude/skills/frontend-development/resources/file-organization.md +502 -0
  265. package/templates/claude/skills/frontend-development/resources/loading-and-error-states.md +501 -0
  266. package/templates/claude/skills/frontend-development/resources/performance.md +406 -0
  267. package/templates/claude/skills/frontend-development/resources/routing-guide.md +364 -0
  268. package/templates/claude/skills/frontend-development/resources/styling-guide.md +428 -0
  269. package/templates/claude/skills/frontend-development/resources/typescript-standards.md +418 -0
  270. package/templates/claude/skills/markdown-novel-viewer/SKILL.md +272 -0
  271. package/templates/claude/skills/markdown-novel-viewer/assets/directory-browser.css +215 -0
  272. package/templates/claude/skills/markdown-novel-viewer/assets/favicon.png +0 -0
  273. package/templates/claude/skills/markdown-novel-viewer/assets/novel-theme.css +872 -0
  274. package/templates/claude/skills/markdown-novel-viewer/assets/reader.js +378 -0
  275. package/templates/claude/skills/markdown-novel-viewer/assets/template.html +85 -0
  276. package/templates/claude/skills/markdown-novel-viewer/package.json +15 -0
  277. package/templates/claude/skills/markdown-novel-viewer/scripts/lib/http-server.cjs +434 -0
  278. package/templates/claude/skills/markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +335 -0
  279. package/templates/claude/skills/markdown-novel-viewer/scripts/lib/plan-navigator.cjs +509 -0
  280. package/templates/claude/skills/markdown-novel-viewer/scripts/lib/port-finder.cjs +49 -0
  281. package/templates/claude/skills/markdown-novel-viewer/scripts/lib/process-mgr.cjs +150 -0
  282. package/templates/claude/skills/markdown-novel-viewer/scripts/server.cjs +398 -0
  283. package/templates/claude/skills/mcp-builder/SKILL.md +328 -0
  284. package/templates/claude/skills/mcp-builder/reference/evaluation.md +602 -0
  285. package/templates/claude/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
  286. package/templates/claude/skills/mcp-builder/reference/node_mcp_server.md +916 -0
  287. package/templates/claude/skills/mcp-builder/reference/python_mcp_server.md +752 -0
  288. package/templates/claude/skills/mcp-builder/scripts/connections.py +151 -0
  289. package/templates/claude/skills/mcp-builder/scripts/evaluation.py +381 -0
  290. package/templates/claude/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  291. package/templates/claude/skills/mcp-builder/scripts/requirements.txt +2 -0
  292. package/templates/claude/skills/mcp-management/README.md +219 -0
  293. package/templates/claude/skills/mcp-management/SKILL.md +209 -0
  294. package/templates/claude/skills/mcp-management/assets/tools.json +3146 -0
  295. package/templates/claude/skills/mcp-management/references/configuration.md +114 -0
  296. package/templates/claude/skills/mcp-management/references/gemini-cli-integration.md +209 -0
  297. package/templates/claude/skills/mcp-management/references/mcp-protocol.md +116 -0
  298. package/templates/claude/skills/mcp-management/scripts/.env.example +10 -0
  299. package/templates/claude/skills/mcp-management/scripts/cli.ts +202 -0
  300. package/templates/claude/skills/mcp-management/scripts/mcp-client.ts +247 -0
  301. package/templates/claude/skills/mcp-management/scripts/package.json +20 -0
  302. package/templates/claude/skills/mcp-management/scripts/tsconfig.json +15 -0
  303. package/templates/claude/skills/media-processing/SKILL.md +91 -0
  304. package/templates/claude/skills/media-processing/references/common-workflows.md +132 -0
  305. package/templates/claude/skills/media-processing/references/ffmpeg-encoding.md +358 -0
  306. package/templates/claude/skills/media-processing/references/ffmpeg-filters.md +503 -0
  307. package/templates/claude/skills/media-processing/references/ffmpeg-streaming.md +395 -0
  308. package/templates/claude/skills/media-processing/references/format-compatibility.md +375 -0
  309. package/templates/claude/skills/media-processing/references/imagemagick-batch.md +612 -0
  310. package/templates/claude/skills/media-processing/references/imagemagick-editing.md +623 -0
  311. package/templates/claude/skills/media-processing/references/rmbg-background-removal.md +66 -0
  312. package/templates/claude/skills/media-processing/references/troubleshooting.md +109 -0
  313. package/templates/claude/skills/media-processing/scripts/README.md +102 -0
  314. package/templates/claude/skills/media-processing/scripts/batch-remove-background.sh +124 -0
  315. package/templates/claude/skills/media-processing/scripts/batch_resize.py +342 -0
  316. package/templates/claude/skills/media-processing/scripts/media_convert.py +311 -0
  317. package/templates/claude/skills/media-processing/scripts/remove-background.sh +96 -0
  318. package/templates/claude/skills/media-processing/scripts/remove-bg-node.js +181 -0
  319. package/templates/claude/skills/mermaidjs-v11/SKILL.md +115 -0
  320. package/templates/claude/skills/mermaidjs-v11/references/cli-usage.md +228 -0
  321. package/templates/claude/skills/mermaidjs-v11/references/configuration.md +232 -0
  322. package/templates/claude/skills/mermaidjs-v11/references/diagram-types.md +315 -0
  323. package/templates/claude/skills/mermaidjs-v11/references/examples.md +344 -0
  324. package/templates/claude/skills/mermaidjs-v11/references/integration.md +310 -0
  325. package/templates/claude/skills/planning/SKILL.md +115 -0
  326. package/templates/claude/skills/planning/references/codebase-understanding.md +62 -0
  327. package/templates/claude/skills/planning/references/output-standards.md +127 -0
  328. package/templates/claude/skills/planning/references/plan-organization.md +150 -0
  329. package/templates/claude/skills/planning/references/research-phase.md +49 -0
  330. package/templates/claude/skills/planning/references/solution-design.md +63 -0
  331. package/templates/claude/skills/plans-kanban/SKILL.md +157 -0
  332. package/templates/claude/skills/plans-kanban/assets/dashboard-template.html +119 -0
  333. package/templates/claude/skills/plans-kanban/assets/dashboard.css +1594 -0
  334. package/templates/claude/skills/plans-kanban/assets/dashboard.js +659 -0
  335. package/templates/claude/skills/plans-kanban/assets/favicon.png +0 -0
  336. package/templates/claude/skills/plans-kanban/package.json +13 -0
  337. package/templates/claude/skills/plans-kanban/scripts/lib/dashboard-renderer.cjs +941 -0
  338. package/templates/claude/skills/plans-kanban/scripts/lib/http-server.cjs +310 -0
  339. package/templates/claude/skills/plans-kanban/scripts/lib/plan-metadata-extractor.cjs +489 -0
  340. package/templates/claude/skills/plans-kanban/scripts/lib/plan-parser.cjs +194 -0
  341. package/templates/claude/skills/plans-kanban/scripts/lib/plan-scanner.cjs +277 -0
  342. package/templates/claude/skills/plans-kanban/scripts/lib/port-finder.cjs +49 -0
  343. package/templates/claude/skills/plans-kanban/scripts/lib/process-mgr.cjs +128 -0
  344. package/templates/claude/skills/plans-kanban/scripts/server.cjs +249 -0
  345. package/templates/claude/skills/problem-solving/SKILL.md +96 -0
  346. package/templates/claude/skills/problem-solving/references/attribution.md +69 -0
  347. package/templates/claude/skills/problem-solving/references/collision-zone-thinking.md +79 -0
  348. package/templates/claude/skills/problem-solving/references/inversion-exercise.md +91 -0
  349. package/templates/claude/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
  350. package/templates/claude/skills/problem-solving/references/scale-game.md +95 -0
  351. package/templates/claude/skills/problem-solving/references/simplification-cascades.md +80 -0
  352. package/templates/claude/skills/problem-solving/references/when-stuck.md +72 -0
  353. package/templates/claude/skills/registry.json +258 -0
  354. package/templates/claude/skills/repomix/SKILL.md +247 -0
  355. package/templates/claude/skills/repomix/references/configuration.md +211 -0
  356. package/templates/claude/skills/repomix/references/usage-patterns.md +232 -0
  357. package/templates/claude/skills/repomix/scripts/README.md +179 -0
  358. package/templates/claude/skills/repomix/scripts/repomix_batch.py +455 -0
  359. package/templates/claude/skills/repomix/scripts/repos.example.json +15 -0
  360. package/templates/claude/skills/research/SKILL.md +168 -0
  361. package/templates/claude/skills/sequential-thinking/.env.example +8 -0
  362. package/templates/claude/skills/sequential-thinking/README.md +183 -0
  363. package/templates/claude/skills/sequential-thinking/SKILL.md +94 -0
  364. package/templates/claude/skills/sequential-thinking/package.json +31 -0
  365. package/templates/claude/skills/sequential-thinking/references/advanced-strategies.md +79 -0
  366. package/templates/claude/skills/sequential-thinking/references/advanced-techniques.md +76 -0
  367. package/templates/claude/skills/sequential-thinking/references/core-patterns.md +95 -0
  368. package/templates/claude/skills/sequential-thinking/references/examples-api.md +88 -0
  369. package/templates/claude/skills/sequential-thinking/references/examples-architecture.md +94 -0
  370. package/templates/claude/skills/sequential-thinking/references/examples-debug.md +90 -0
  371. package/templates/claude/skills/sequential-thinking/scripts/format-thought.js +182 -0
  372. package/templates/claude/skills/sequential-thinking/scripts/process-thought.js +252 -0
  373. package/templates/claude/skills/skill-creator/LICENSE.txt +202 -0
  374. package/templates/claude/skills/skill-creator/SKILL.md +266 -0
  375. package/templates/claude/skills/skill-creator/references/agent-skills-spec.md +51 -0
  376. package/templates/claude/skills/skill-creator/scripts/encoding_utils.py +21 -0
  377. package/templates/claude/skills/skill-creator/scripts/init_skill.py +304 -0
  378. package/templates/claude/skills/skill-creator/scripts/package_skill.py +110 -0
  379. package/templates/claude/skills/skill-creator/scripts/quick_validate.py +66 -0
  380. package/templates/claude/skills/template-skill/SKILL.md +6 -0
  381. package/templates/claude/skills/vitest/SKILL.md +595 -0
  382. package/templates/claude/skills/vitest/references/async-patterns.md +82 -0
  383. package/templates/claude/skills/vitest/references/mock-patterns.md +78 -0
  384. package/templates/claude/skills/vitest/references/monorepo-setup.md +185 -0
  385. package/templates/claude/skills/vitest/references/turborepo-setup.md +332 -0
  386. package/templates/claude/skills/web-frameworks/SKILL.md +324 -0
  387. package/templates/claude/skills/web-frameworks/references/nextjs-app-router.md +465 -0
  388. package/templates/claude/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
  389. package/templates/claude/skills/web-frameworks/references/nextjs-optimization.md +511 -0
  390. package/templates/claude/skills/web-frameworks/references/nextjs-server-components.md +495 -0
  391. package/templates/claude/skills/web-frameworks/references/remix-icon-integration.md +603 -0
  392. package/templates/claude/skills/web-frameworks/references/turborepo-caching.md +551 -0
  393. package/templates/claude/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
  394. package/templates/claude/skills/web-frameworks/references/turborepo-setup.md +542 -0
  395. package/templates/claude/skills/web-frameworks/scripts/nextjs_init.py +547 -0
  396. package/templates/claude/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
  397. package/templates/claude/workflows/development-rules.md +40 -0
  398. package/templates/claude/workflows/documentation-management.md +121 -0
  399. package/templates/claude/workflows/orchestration-protocol.md +16 -0
  400. package/templates/claude/workflows/primary-workflow.md +45 -0
  401. package/templates/claude/workflows/registry.json +37 -0
  402. package/templates/common/.cct.json +41 -0
  403. package/templates/common/.cctkignore +22 -0
  404. package/templates/common/.env.example +39 -0
  405. package/templates/common/.mcp.json.example +16 -0
  406. package/templates/common/metadata.json +15 -0
  407. package/templates/common/settings.json +79 -0
  408. package/templates/common/statusline.cjs +271 -0
  409. package/templates/config/.repomixignore +22 -0
  410. package/templates/config/AGENTS.md +55 -0
  411. package/templates/config/CLAUDE.md +87 -0
  412. package/templates/plans/bug-fix-template.md +69 -0
  413. package/templates/plans/feature-implementation-template.md +84 -0
  414. package/templates/plans/refactor-template.md +82 -0
  415. package/templates/plans/template-usage-guide.md +58 -0
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ⚡ Fix type errors
3
+ ---
4
+
5
+ Run `bun run typecheck` or `tsc` or `npx tsc` and fix all type errors.
6
+
7
+ ## Rules
8
+ - Fix all of type errors and repeat the process until there are no more type errors.
9
+ - Do not use `any` just to pass the type check.
@@ -0,0 +1,33 @@
1
+ ---
2
+ description: ⚡⚡ Analyze and fix UI issues
3
+ argument-hint: [issue]
4
+ ---
5
+
6
+ ## Required Skills (Priority Order)
7
+ 1. **`frontend-design`** - Design principles and implementation patterns
8
+
9
+ Use `ui-ux-designer` subagent to read and analyze `./docs/design-guidelines.md` then fix the following issues:
10
+ <issue>$ARGUMENTS</issue>
11
+
12
+ ## Workflow
13
+
14
+ 1. Use `ui-ux-designer` subagent to implement the fix step by step.
15
+ 2. Use `chrome-devtools` skill to analyze the implemented fix and make sure it matches the design guideline.
16
+ 3. Use `tester` agent to test the fix and compile the code to make sure it works, then report back to main agent.
17
+ - If there are issues or failed tests, ask main agent to fix all of them and repeat the process until all tests pass.
18
+ 4. Project Management & Documentation:
19
+ **If user approves the changes:** Use `project-manager` and `docs-manager` subagents in parallel to update the project progress and documentation:
20
+ * Use `project-manager` subagent to update the project progress and task status in the given plan file.
21
+ * Use `docs-manager` subagent to update the docs in `./docs` directory if needed.
22
+ * Use `project-manager` subagent to create a project roadmap at `./docs/project-roadmap.md` file.
23
+ * **IMPORTANT:** Sacrifice grammar for the sake of concision when writing outputs.
24
+ **If user rejects the changes:** Ask user to explain the issues and ask main agent to fix all of them and repeat the process.
25
+ 5. Final Report:
26
+ * Report back to user with a summary of the changes and explain everything briefly, guide user to get started and suggest the next steps.
27
+ * Ask the user if they want to commit and push to git repository, if yes, use `git-manager` subagent to commit and push to git repository.
28
+ * **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
29
+ * **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
30
+
31
+ **REMEMBER**:
32
+ - For image editing (removing background, adjusting, cropping), use `ImageMagick` skill or similar tools as needed.
33
+ - **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: ⚡⚡ Analyze and fix issues [INTELLIGENT ROUTING]
3
+ argument-hint: [issues]
4
+ ---
5
+
6
+ **Analyze issues and route to specialized fix command:**
7
+ <issues>$ARGUMENTS</issues>
8
+
9
+ ## Decision Tree
10
+
11
+ **1. Check for existing plan:**
12
+ - If markdown plan exists → `/code <path-to-plan>`
13
+
14
+ **2. Route by issue type:**
15
+
16
+ **A) Type Errors** (keywords: type, typescript, tsc, type error)
17
+ → `/fix:types`
18
+
19
+ **B) UI/UX Issues** (keywords: ui, ux, design, layout, style, visual, button, component, css, responsive)
20
+ → `/fix:ui <detailed-description>`
21
+
22
+ **C) CI/CD Issues** (keywords: github actions, pipeline, ci/cd, workflow, deployment, build failed)
23
+ → `/fix:ci <github-actions-url-or-description>`
24
+
25
+ **D) Test Failures** (keywords: test, spec, jest, vitest, failing test, test suite)
26
+ → `/fix:test <detailed-description>`
27
+
28
+ **E) Log Analysis** (keywords: logs, error logs, log file, stack trace)
29
+ → `/fix:logs <detailed-description>`
30
+
31
+ **F) Multiple Independent Issues** (2+ unrelated issues in different areas)
32
+ → `/fix:parallel <detailed-description>`
33
+
34
+ **G) Complex Issues** (keywords: complex, architecture, refactor, major, system-wide, multiple components)
35
+ → `/fix:hard <detailed-description>`
36
+
37
+ **H) Simple/Quick Fixes** (default: small bug, single file, straightforward)
38
+ → `/fix:fast <detailed-description>`
39
+
40
+ ## Notes
41
+ - `detailed-description` = enhanced prompt describing issue in detail
42
+ - If unclear, ask user for clarification before routing
43
+ - Can combine routes: e.g., multiple type errors + UI issue → `/fix:parallel`
@@ -0,0 +1,5 @@
1
+ ---
2
+ description: Stage all files and create a commit.
3
+ ---
4
+ Use `git-manager` agent to stage all files and create a commit.
5
+ **IMPORTANT: DO NOT push the changes to remote repository**
@@ -0,0 +1,4 @@
1
+ ---
2
+ description: Stage, commit and push all code in the current branch
3
+ ---
4
+ Use `git-manager` agent to stage all files, create a meaningful commit based on the changes and push to remote repository.
@@ -0,0 +1,40 @@
1
+ ---
2
+ description: ⚠️ Merge code from one branch to another
3
+ argument-hint: [branch] [from-branch]
4
+ ---
5
+
6
+ ## Variables
7
+
8
+ TO_BRANCH: $1 (defaults to `main`)
9
+ FROM_BRANCH: $2 (defaults to current branch)
10
+
11
+ ## Workflow
12
+
13
+ ### Step 1: Sync with remote (CRITICAL)
14
+ ```bash
15
+ git fetch origin
16
+ git checkout {TO_BRANCH}
17
+ git pull origin {TO_BRANCH}
18
+ ```
19
+
20
+ ### Step 2: Merge from REMOTE tracking branch
21
+ ```bash
22
+ # Use origin/{FROM_BRANCH} to merge remote state, not local WIP
23
+ git merge origin/{FROM_BRANCH} --no-ff -m "merge: {FROM_BRANCH} into {TO_BRANCH}"
24
+ ```
25
+
26
+ **Why `origin/{FROM_BRANCH}`:** Ensures merging only committed+pushed changes, not local uncommitted work.
27
+
28
+ ### Step 3: Resolve conflicts if any
29
+ - If conflicts exist, resolve them manually
30
+ - After resolution: `git add . && git commit`
31
+
32
+ ### Step 4: Push merged result
33
+ ```bash
34
+ git push origin {TO_BRANCH}
35
+ ```
36
+
37
+ ## Notes
38
+ - If `gh` command is not available, instruct the user to install and authorize GitHub CLI first.
39
+ - If you need more clarifications, use `AskUserQuestion` tool to ask the user for more details.
40
+ - Always fetch and pull latest remote state before merging to avoid stale conflicts.
@@ -0,0 +1,50 @@
1
+ ---
2
+ description: Create a pull request
3
+ argument-hint: [branch] [from-branch]
4
+ ---
5
+
6
+ ## Variables
7
+
8
+ TO_BRANCH: $1 (defaults to `main`)
9
+ FROM_BRANCH: $2 (defaults to current branch)
10
+
11
+ ## Workflow
12
+
13
+ ### Step 1: Ensure remote is synced
14
+ ```bash
15
+ git fetch origin
16
+ git push -u origin HEAD # Push current branch if not pushed
17
+ ```
18
+
19
+ ### Step 2: Analyze REMOTE diff (CRITICAL)
20
+ **IMPORTANT:** Always compare REMOTE branches, not local:
21
+ ```bash
22
+ # Get commits between remote branches (what PR will actually contain)
23
+ git log origin/{TO_BRANCH}...origin/{FROM_BRANCH} --oneline
24
+
25
+ # Get file diff between remote branches
26
+ git diff origin/{TO_BRANCH}...origin/{FROM_BRANCH} --stat
27
+ git diff origin/{TO_BRANCH}...origin/{FROM_BRANCH}
28
+ ```
29
+
30
+ **DO NOT use:**
31
+ - `git diff {TO_BRANCH}...HEAD` (includes unpushed local changes)
32
+ - `git diff --cached` (staged local changes)
33
+ - `git status` (local working tree state)
34
+
35
+ **IMPORTANT:** Merge `main` (or default branch) into $2 branch and resolve any conflicts.
36
+
37
+ ### Step 3: Generate PR content from remote diff
38
+ Based on the REMOTE diff analysis:
39
+ - **Title:** Conventional commit format from the primary change (no version/release numbers)
40
+ - **Body:** Summary of changes that exist ON REMOTE, not local WIP
41
+
42
+ ### Step 4: Create PR
43
+ ```bash
44
+ gh pr create --base {TO_BRANCH} --head {FROM_BRANCH} --title "..." --body "..."
45
+ ```
46
+
47
+ ## Notes
48
+ - If `gh` command is not available, instruct the user to install and authorize GitHub CLI first.
49
+ - If local has unpushed commits, push first before analyzing diff.
50
+ - PR content must reflect REMOTE state since PRs are based on remote branches.
@@ -0,0 +1,7 @@
1
+ ---
2
+ description: ⚡ Write some journal entries.
3
+ ---
4
+
5
+ Use the `journal-writer` subagent to explore the memories and recent code changes, and write some journal entries.
6
+ Journal entries should be concise and focused on the most important events, key changes, impacts, and decisions.
7
+ Keep journal entries in the `./docs/journals/` directory.
@@ -0,0 +1,99 @@
1
+ ---
2
+ description: AI agent orchestration board (Coming Soon)
3
+ arguments:
4
+ - name: dir
5
+ description: Plans directory (default: ./plans)
6
+ required: false
7
+ ---
8
+
9
+ Plans dashboard with progress tracking and timeline visualization.
10
+
11
+ ## Usage
12
+
13
+ - `/kanban` - View dashboard for ./plans directory
14
+ - `/kanban plans/` - View dashboard for specific directory
15
+ - `/kanban --stop` - Stop running server
16
+
17
+ ## Features
18
+
19
+ - Plan cards with progress bars
20
+ - Phase status breakdown (completed, in-progress, pending)
21
+ - Timeline/Gantt visualization
22
+ - Activity heatmap
23
+ - Issue and branch links
24
+
25
+ ## Execution
26
+
27
+ **IMPORTANT:** Run server as Claude Code background task using `run_in_background: true` with the Bash tool. This makes the server visible in `/tasks` and manageable via `KillShell`.
28
+
29
+ Check if this script is located in the current workspace or in `$HOME/.claude/skills/plans-kanban` directory:
30
+ - If in current workspace: `$SKILL_DIR_PATH` = `./.claude/skills/plans-kanban/`
31
+ - If in home directory: `$SKILL_DIR_PATH` = `$HOME/.claude/skills/plans-kanban/`
32
+
33
+ ### Stop Server
34
+
35
+ If `--stop` flag is provided:
36
+
37
+ ```bash
38
+ node $SKILL_DIR_PATH/scripts/server.cjs --stop
39
+ ```
40
+
41
+ ### Start Server
42
+
43
+ Otherwise, run the kanban server as CC background task with `--foreground` flag (keeps process alive for CC task management):
44
+
45
+ ```bash
46
+ # Determine plans directory
47
+ INPUT_DIR="{{dir}}"
48
+ PLANS_DIR="${INPUT_DIR:-./plans}"
49
+
50
+ # Start kanban dashboard
51
+ node $SKILL_DIR_PATH/scripts/server.cjs \
52
+ --dir "$PLANS_DIR" \
53
+ --host 0.0.0.0 \
54
+ --open \
55
+ --foreground
56
+ ```
57
+
58
+ **Critical:** When calling the Bash tool:
59
+ - Set `run_in_background: true` to run as CC background task
60
+ - Set `timeout: 300000` (5 minutes) to prevent premature termination
61
+ - Parse JSON output and report URL to user
62
+
63
+ Example Bash tool call:
64
+ ```json
65
+ {
66
+ "command": "node .claude/skills/plans-kanban/scripts/server.cjs --dir \"./plans\" --host 0.0.0.0 --open --foreground",
67
+ "run_in_background": true,
68
+ "timeout": 300000,
69
+ "description": "Start kanban server in background"
70
+ }
71
+ ```
72
+
73
+ After starting, parse the JSON output (e.g., `{"success":true,"url":"http://localhost:3500/kanban?dir=...","networkUrl":"http://192.168.1.x:3500/kanban?dir=..."}`) and report:
74
+ - Local URL for browser access
75
+ - Network URL for remote device access (if available)
76
+ - Inform user that server is now running as CC background task (visible in `/tasks`)
77
+
78
+ **CRITICAL:** MUST display the FULL URL including path and query string. NEVER truncate to just `host:port`. The full URL is required for direct access.
79
+
80
+ ## Future Plans
81
+
82
+ The `/kanban` command will evolve into **VibeKanban-inspired** AI agent orchestration:
83
+
84
+ ### Phase 1 (Current - MVP)
85
+ - ✅ Task board with progress tracking
86
+ - ✅ Visual representation of plans/tasks
87
+ - ✅ Click to view plan details
88
+
89
+ ### Phase 2 (Worktree Integration)
90
+ - Create tasks → spawn git worktrees
91
+ - Assign agents to tasks
92
+ - Track agent progress per worktree
93
+
94
+ ### Phase 3 (Full Orchestration)
95
+ - Parallel agent execution monitoring
96
+ - Code diff/review interface
97
+ - PR creation workflow
98
+ - Agent output streaming
99
+ - Conflict detection
@@ -0,0 +1,57 @@
1
+ ---
2
+ description: Write journal entries and archive specific plans or all plans
3
+ argument-hint: [path-to-plan] (default: all plans)
4
+ ---
5
+
6
+ ## Your mission
7
+ Read and analyze the plans, then write journal entries and archive specific plans or all plans in the `plans` directory.
8
+
9
+ ## Plan Resolution
10
+ 1. If `$ARGUMENTS` provided → Use that path
11
+ 2. Else read all plans in the `plans` directory
12
+
13
+ ## Workflow
14
+
15
+ ### Step 1: Read Plan Files
16
+
17
+ Read the plan directory:
18
+ - `plan.md` - Overview and phases list
19
+ - `phase-*.md` - 20 first lines of each phase file to understand the progress and status
20
+
21
+ ### Step 2: Summarize the plans and document them with `/journal` slash command
22
+ Use `AskUserQuestion` tool to ask if user wants to document journal entries or not.
23
+ Skip this step if user selects "No".
24
+ If user selects "Yes":
25
+ - Analyze the information in previous steps.
26
+ - Use Task tool with `subagent_type="journal-writer"` in parallel to document all plans.
27
+ - Journal entries should be concise and focused on the most important events, key changes, impacts, and decisions.
28
+ - Keep journal entries in the `./docs/journals/` directory.
29
+
30
+ ### Step 3: Ask user to confirm the action before archiving these plans
31
+ Use `AskUserQuestion` tool to ask if user wants to proceed with archiving these plans, select specific plans to archive or all completed plans only.
32
+ Use `AskUserQuestion` tool to ask if user wants to delete permanently or move to the `./plans/archive` directory.
33
+
34
+ ### Step 4: Archive the plans
35
+ Start archiving the plans based on the user's choice:
36
+ - Move the plans to the `./plans/archive` directory.
37
+ - Delete the plans permanently: `rm -rf ./plans/<plan-1> ./plans/<plan-2> ...`
38
+
39
+ ### Step 5: Ask if user wants to commit the changes
40
+ Use `AskUserQuestion` tool to ask if user wants to commit the changes with these options:
41
+ - Stage and commit the changes (Use `/git:cm` slash command)
42
+ - Commit and push the changes (Use `/git:cp` slash command)
43
+ - Nah, I'll do it later
44
+
45
+ ## Output
46
+ After archiving the plans, provide summary:
47
+ - Number of plans archived
48
+ - Number of plans deleted permanently
49
+ - Table of plans that are archived or deleted (title, status, created date, LOC)
50
+ - Table of journal entries that are created (title, status, created date, LOC)
51
+
52
+ ## Important Notes
53
+
54
+ **IMPORTANT:** Only ask questions about genuine decision points - don't manufacture artificial choices.
55
+ **IMPORTANT:** Sacrifice grammar for the sake of concision when writing outputs.
56
+ **IMPORTANT:** In the last summary report, list any unresolved questions at the end, if any.
57
+ **IMPORTANT:** Ensure token efficiency while maintaining high quality.
@@ -0,0 +1,33 @@
1
+ ---
2
+ description: Analyze Github Actions logs and provide a plan to fix the issues
3
+ argument-hint: [github-actions-url]
4
+ ---
5
+
6
+ Activate `planning` skill.
7
+
8
+ ## Github Actions URL
9
+ $ARGUMENTS
10
+
11
+ Use the `planner` subagent to read the github actions logs, analyze and find the root causes of the issues, then provide a detailed plan for implementing the fixes.
12
+
13
+ **Plan File Specification:**
14
+ - Every `plan.md` MUST start with YAML frontmatter:
15
+ ```yaml
16
+ ---
17
+ title: "{Brief title}"
18
+ description: "{One sentence for card preview}"
19
+ status: pending
20
+ priority: P1
21
+ effort: {estimated fix time}
22
+ branch: {current git branch}
23
+ tags: [ci, bugfix]
24
+ created: {YYYY-MM-DD}
25
+ ---
26
+ ```
27
+
28
+ **Output:**
29
+ Provide at least 2 implementation approaches with clear trade-offs, and explain the pros and cons of each approach, and provide a recommended approach.
30
+
31
+ **IMPORTANT:** Ask the user for confirmation before implementing.
32
+ **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
33
+ **IMPORTANT:** Sacrifice grammar for the sake of concision when writing outputs.
@@ -0,0 +1,67 @@
1
+ ---
2
+ description: Create a CRO plan for the given content
3
+ argument-hint: [issues]
4
+ ---
5
+
6
+ You are an expert in conversion optimization. Analyze the content based on the given issues:
7
+ <issues>$ARGUMENTS</issues>
8
+
9
+ Activate `planning` skill.
10
+
11
+ **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
12
+ **IMPORTANT:** Sacrifice grammar for the sake of concision when writing outputs.
13
+
14
+ ## Conversion Optimization Framework
15
+
16
+ 1. Headline 4-U Formula: **Useful, Unique, Urgent, Ultra-specific** (80% won't read past this)
17
+ 2. Above-Fold Value Proposition: Customer problem focus, no company story, zero scroll required
18
+ 3. CTA First-Person Psychology: "Get MY Guide" vs "Get YOUR Guide" (90% more clicks)
19
+ 4. 5-Field Form Maximum: Every field kills conversions, progressive profiling for the rest
20
+ 5. Message Match Precision: Ad copy, landing page headline, broken promises = bounce
21
+ 6. Social Proof Near CTAs: Testimonials with faces/names, results, placed at decision points
22
+ 7. Cognitive Bias Stack: Loss aversion (fear), social proof (FOMO), anchoring (pricing)
23
+ 8. PAS Copy Framework: Problem > Agitate > Solve, emotion before logic
24
+ 9. Genuine Urgency Only: Real deadlines, actual limits, fake timers destroy trust forever
25
+ 10. Price Anchoring Display: Show expensive option first, make real price feel like relief
26
+ 11. Trust Signal Clustering: Security badges, guarantees, policies all visible together
27
+ 12. Visual Hierarchy F-Pattern: Eyes scan F-shape, put conversions in the path
28
+ 13. Lead Magnet Hierarchy: Templates > Checklists > Guides (instant > delayed gratification)
29
+ 14. Objection Preemption: Address top 3 concerns before they think them, FAQ near CTA
30
+ 15. Mobile Thumb Zone: CTAs where thumbs naturally rest, not stretching required
31
+ 16. One-Variable Testing: Change one thing, measure impact, compound wins over time
32
+ 17. Post-Conversion Momentum: Thank you page sells next step while excitement peaks
33
+ 18. Cart Recovery Sequence: Email in 1 hour, retarget in 4 hours, incentive at 24 hours
34
+ 19. Reading Level Grade 6: Smart people prefer simple, 11-word sentences, short paragraphs
35
+ 20. TOFU/MOFU/BOFU Logic: Awareness content ≠ decision content, match intent precisely
36
+ 21. White Space = Focus: Empty space makes CTAs impossible to miss, crowded = confused
37
+ 22. Benefit-First Language: Features tell, benefits sell, transformations compel
38
+ 23. Micro-Commitment Ladder: Small yes leads to big yes, start with email only
39
+ 24. Performance Tracking Stack: Heatmaps show problems, recordings show why, events show what
40
+ 25. Weekly Optimization Ritual: Review metrics Monday, test Tuesday, iterate or scale
41
+
42
+ ## Workflow
43
+
44
+ - If the user provides a URL, use `web_fetch` tool to fetch the content of the URL and analyze the current issues.
45
+ - Use `/scout:ext` (preferred) or `/scout` (fallback) slash command to search the codebase for files needed to complete the task
46
+ - Use `planner` agent to create a comprehensive CRO plan following the progressive disclosure structure:
47
+ - Create a directory using naming pattern from `## Naming` section.
48
+ - Every `plan.md` MUST start with YAML frontmatter:
49
+ ```yaml
50
+ ---
51
+ title: "{Brief title}"
52
+ description: "{One sentence for card preview}"
53
+ status: pending
54
+ priority: P2
55
+ effort: {sum of phases, e.g., 4h}
56
+ branch: {current git branch}
57
+ tags: [cro, conversion]
58
+ created: {YYYY-MM-DD}
59
+ ---
60
+ ```
61
+ - Save the overview access point at `plan.md`, keep it generic, under 80 lines, and list each phase with status/progress and links.
62
+ - For each phase, add `phase-XX-phase-name.md` files containing sections (Context links, Overview with date/priority/statuses, Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps).
63
+ - Keep every research markdown report concise (≤150 lines) while covering all requested topics and citations.
64
+ - Do not start implementing the CRO plan yet, wait for the user to approve the plan first.
65
+
66
+ **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
67
+ **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
@@ -0,0 +1,66 @@
1
+ ---
2
+ description: ⚡⚡ No research. Only analyze and create an implementation plan
3
+ argument-hint: [task]
4
+ ---
5
+
6
+ Think.
7
+ Activate `planning` skill.
8
+
9
+ ## Your mission
10
+ <task>
11
+ $ARGUMENTS
12
+ </task>
13
+
14
+ ## Pre-Creation Check (Active vs Suggested Plan)
15
+
16
+ Check the `## Plan Context` section in the injected context:
17
+ - If "Plan:" shows a path → Active plan exists. Ask user: "Continue with this? [Y/n]"
18
+ - If "Suggested:" shows a path → Branch-matched hint only. Ask if they want to activate or create new.
19
+ - If "Plan: none" → Create new plan using naming from `## Naming` section.
20
+
21
+ ## Workflow
22
+ Use `planner` subagent to:
23
+ 1. If creating new: Create directory using `Plan dir:` from `## Naming` section, then run `node .claude/scripts/set-active-plan.cjs {plan-dir}`
24
+ If reusing: Use the active plan path from Plan Context.
25
+ Make sure you pass the directory path to every subagent during the process.
26
+ 2. Follow strictly to the "Plan Creation & Organization" rules of `planning` skill.
27
+ 3. Analyze the codebase by reading `codebase-summary.md`, `code-standards.md`, `system-architecture.md` and `project-overview-pdr.md` file.
28
+ 4. Gathers all information and create an implementation plan of this task.
29
+ 5. Ask user to review the plan.
30
+
31
+ ## Output Requirements
32
+
33
+ **Plan Directory Structure** (use `Plan dir:` from `## Naming` section)
34
+ ```
35
+ {plan-dir}/
36
+ ├── reports/
37
+ │ ├── XX-report.md
38
+ │ └── ...
39
+ ├── plan.md
40
+ ├── phase-XX-phase-name-here.md
41
+ └── ...
42
+ ```
43
+
44
+ **Plan File Specification**
45
+ - Every `plan.md` MUST start with YAML frontmatter:
46
+ ```yaml
47
+ ---
48
+ title: "{Brief title}"
49
+ description: "{One sentence for card preview}"
50
+ status: pending
51
+ priority: P2
52
+ effort: {sum of phases, e.g., 4h}
53
+ branch: {current git branch}
54
+ tags: [relevant, tags]
55
+ created: {YYYY-MM-DD}
56
+ ---
57
+ ```
58
+ - Save the overview access point at `{plan-dir}/plan.md`. Keep it generic, under 80 lines, and list each implementation phase with status and progress plus links to phase files.
59
+ - For each phase, create `{plan-dir}/phase-XX-phase-name-here.md` containing the following sections in order: Context links (reference parent plan, dependencies, docs), Overview (date, description, priority, implementation status, review status), Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps.
60
+
61
+ ## Important Notes
62
+ - **IMPORTANT:** Ensure token consumption efficiency while maintaining high quality.
63
+ - **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
64
+ - **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
65
+ - **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
66
+ - **IMPORTANT**: **Do not** start implementing.
@@ -0,0 +1,92 @@
1
+ ---
2
+ description: ⚡⚡⚡ Research, analyze, and create an implementation plan
3
+ argument-hint: [task]
4
+ ---
5
+
6
+ Think harder.
7
+ Activate `planning` skill.
8
+
9
+ ## Your mission
10
+ <task>
11
+ $ARGUMENTS
12
+ </task>
13
+
14
+ ## Pre-Creation Check (Active vs Suggested Plan)
15
+
16
+ Check the `## Plan Context` section in the injected context:
17
+ - If "Plan:" shows a path → Active plan exists. Ask user: "Continue with this? [Y/n]"
18
+ - If "Suggested:" shows a path → Branch-matched hint only. Ask if they want to activate or create new.
19
+ - If "Plan: none" → Create new plan using naming from `## Naming` section.
20
+
21
+ ## Workflow
22
+ 1. If creating new: Create directory using `Plan dir:` from `## Naming` section, then run `node .claude/scripts/set-active-plan.cjs {plan-dir}`
23
+ If reusing: Use the active plan path from Plan Context.
24
+ Make sure you pass the directory path to every subagent during the process.
25
+ 2. Follow strictly to the "Plan Creation & Organization" rules of `planning` skill.
26
+ 3. Use multiple `researcher` agents (max 2 agents) in parallel to research for this task:
27
+ Each agent research for a different aspect of the task and are allowed to perform max 5 tool calls.
28
+ 4. Analyze the codebase by reading `codebase-summary.md`, `code-standards.md`, `system-architecture.md` and `project-overview-pdr.md` file.
29
+ **ONLY PERFORM THIS FOLLOWING STEP IF `codebase-summary.md` is not available or older than 3 days**: Use `/scout <instructions>` slash command to search the codebase for files needed to complete the task.
30
+ 5. Main agent gathers all research and scout report filepaths, and pass them to `planner` subagent with the prompt to create an implementation plan of this task.
31
+ 6. Main agent receives the implementation plan from `planner` subagent, and ask user to review the plan
32
+
33
+ ## Post-Plan Validation (Optional)
34
+
35
+ After plan creation, offer validation interview to confirm decisions before implementation.
36
+
37
+ **Check `## Plan Context` → `Validation: mode=X, questions=MIN-MAX`:**
38
+
39
+ | Mode | Behavior |
40
+ |------|----------|
41
+ | `prompt` | Ask user: "Validate this plan with a brief interview?" → Yes (Recommended) / No |
42
+ | `auto` | Automatically execute `/plan:validate {plan-path}` |
43
+ | `off` | Skip validation step entirely |
44
+
45
+ **If mode is `prompt`:** Use `AskUserQuestion` tool with options above.
46
+ **If user chooses validation or mode is `auto`:** Execute `/plan:validate {plan-path}` SlashCommand.
47
+
48
+ ## Output Requirements
49
+
50
+ **Plan Directory Structure** (use `Plan dir:` from `## Naming` section)
51
+ ```
52
+ {plan-dir}/
53
+ ├── research/
54
+ │ ├── researcher-XX-report.md
55
+ │ └── ...
56
+ ├── reports/
57
+ │ ├── XX-report.md
58
+ │ └── ...
59
+ ├── scout/
60
+ │ ├── scout-XX-report.md
61
+ │ └── ...
62
+ ├── plan.md
63
+ ├── phase-XX-phase-name-here.md
64
+ └── ...
65
+ ```
66
+
67
+ **Research Output Requirements**
68
+ - Ensure every research markdown report remains concise (≤150 lines) while covering all requested topics and citations.
69
+
70
+ **Plan File Specification**
71
+ - Every `plan.md` MUST start with YAML frontmatter:
72
+ ```yaml
73
+ ---
74
+ title: "{Brief title}"
75
+ description: "{One sentence for card preview}"
76
+ status: pending
77
+ priority: P2
78
+ effort: {sum of phases, e.g., 4h}
79
+ branch: {current git branch}
80
+ tags: [relevant, tags]
81
+ created: {YYYY-MM-DD}
82
+ ---
83
+ ```
84
+ - Save the overview access point at `{plan-dir}/plan.md`. Keep it generic, under 80 lines, and list each implementation phase with status and progress plus links to phase files.
85
+ - For each phase, create `{plan-dir}/phase-XX-phase-name-here.md` containing the following sections in order: Context links (reference parent plan, dependencies, docs), Overview (date, description, priority, implementation status, review status), Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps.
86
+
87
+ ## Important Notes
88
+ **IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
89
+ **IMPORTANT:** Ensure token efficiency while maintaining high quality.
90
+ **IMPORTANT:** Sacrifice grammar for the sake of concision when writing reports.
91
+ **IMPORTANT:** In reports, list any unresolved questions at the end, if any.
92
+ **IMPORTANT**: **Do not** start implementing.