cokit-cli 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1088) hide show
  1. package/README.md +6 -6
  2. package/agents/ck-brainstormer.agent.md +92 -0
  3. package/agents/ck-code-reviewer.agent.md +145 -0
  4. package/agents/ck-debugger.agent.md +142 -0
  5. package/agents/ck-ui-ux-designer.agent.md +200 -0
  6. package/docs/README.md +2 -9
  7. package/docs/codebase-summary.md +4 -4
  8. package/docs/cokit-sync-and-maintenance-guide.md +1 -1
  9. package/docs/copilot-processing-flow.md +15 -15
  10. package/docs/project-overview-pdr.md +1 -1
  11. package/docs/upstream-porting-rules.md +4 -3
  12. package/package.json +1 -1
  13. package/prompts/ck-bootstrap.prompt.md +12 -12
  14. package/prompts/ck-cook.prompt.md +11 -11
  15. package/prompts/ck-fix-fast.prompt.md +1 -1
  16. package/prompts/ck-fix-hard.prompt.md +2 -2
  17. package/prompts/ck-plan-fast.prompt.md +1 -1
  18. package/prompts/ck-plan-hard.prompt.md +3 -3
  19. package/prompts/ck-plan-red-team.prompt.md +1 -1
  20. package/prompts/ck-review.prompt.md +4 -4
  21. package/prompts/ck-test.prompt.md +1 -1
  22. package/skills/ck-agent-browser/SKILL.md +294 -0
  23. package/skills/ck-backend-development/SKILL.md +94 -0
  24. package/skills/ck-bootstrap/SKILL.md +102 -0
  25. package/skills/ck-bootstrap/references/shared-phases.md +59 -0
  26. package/skills/ck-bootstrap/references/workflow-auto.md +52 -0
  27. package/skills/ck-bootstrap/references/workflow-fast.md +50 -0
  28. package/skills/ck-bootstrap/references/workflow-full.md +60 -0
  29. package/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
  30. package/skills/ck-brainstorm/SKILL.md +122 -0
  31. package/skills/ck-chrome-devtools/SKILL.md +630 -0
  32. package/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
  33. package/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
  34. package/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
  35. package/skills/ck-chrome-devtools/scripts/README.md +290 -0
  36. package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
  37. package/skills/ck-chrome-devtools/scripts/click.js +84 -0
  38. package/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
  39. package/skills/ck-chrome-devtools/scripts/console.js +81 -0
  40. package/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
  41. package/skills/ck-chrome-devtools/scripts/fill.js +77 -0
  42. package/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
  43. package/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
  44. package/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
  45. package/skills/ck-chrome-devtools/scripts/install.sh +83 -0
  46. package/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
  47. package/skills/ck-chrome-devtools/scripts/network.js +108 -0
  48. package/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
  49. package/skills/ck-chrome-devtools/scripts/package.json +16 -0
  50. package/skills/ck-chrome-devtools/scripts/performance.js +151 -0
  51. package/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
  52. package/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
  53. package/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
  54. package/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
  55. package/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
  56. package/skills/ck-code-review/SKILL.md +196 -0
  57. package/skills/ck-code-review/references/adversarial-review.md +223 -0
  58. package/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
  59. package/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
  60. package/skills/ck-code-review/references/requesting-code-review.md +116 -0
  61. package/skills/ck-context-engineering/SKILL.md +107 -0
  62. package/skills/ck-cook/SKILL.md +155 -0
  63. package/skills/ck-cook/references/workflow-steps.md +192 -0
  64. package/skills/ck-databases/SKILL.md +84 -0
  65. package/skills/ck-debug/SKILL.md +120 -0
  66. package/skills/ck-deploy/SKILL.md +154 -0
  67. package/skills/ck-devops/SKILL.md +96 -0
  68. package/skills/ck-docs-seeker/SKILL.md +97 -0
  69. package/skills/ck-fix/SKILL.md +209 -0
  70. package/skills/ck-fix/references/complexity-assessment.md +73 -0
  71. package/skills/ck-fix/references/diagnosis-protocol.md +133 -0
  72. package/skills/ck-fix/references/prevention-gate.md +87 -0
  73. package/skills/ck-fix/references/skill-activation-matrix.md +98 -0
  74. package/skills/ck-fix/references/task-orchestration.md +110 -0
  75. package/skills/ck-fix/references/workflow-ci.md +28 -0
  76. package/skills/ck-fix/references/workflow-deep.md +154 -0
  77. package/skills/ck-fix/references/workflow-logs.md +72 -0
  78. package/skills/ck-fix/references/workflow-quick.md +82 -0
  79. package/skills/ck-fix/references/workflow-standard.md +120 -0
  80. package/skills/ck-fix/references/workflow-test.md +75 -0
  81. package/skills/ck-fix/references/workflow-ui.md +72 -0
  82. package/skills/ck-frontend-design/SKILL.md +109 -0
  83. package/skills/ck-frontend-design/references/workflow-3d.md +98 -0
  84. package/skills/ck-frontend-design/references/workflow-describe.md +87 -0
  85. package/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
  86. package/skills/ck-frontend-design/references/workflow-quick.md +52 -0
  87. package/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
  88. package/skills/ck-frontend-design/references/workflow-video.md +74 -0
  89. package/skills/ck-frontend-development/SKILL.md +400 -0
  90. package/skills/ck-git/SKILL.md +113 -0
  91. package/skills/ck-git/references/workflow-commit.md +58 -0
  92. package/skills/ck-git/references/workflow-merge.md +48 -0
  93. package/skills/ck-git/references/workflow-pr.md +58 -0
  94. package/skills/ck-git/references/workflow-push.md +52 -0
  95. package/skills/ck-mcp-management/SKILL.md +210 -0
  96. package/skills/ck-mermaidjs-v11/SKILL.md +116 -0
  97. package/skills/ck-planning/SKILL.md +194 -0
  98. package/skills/ck-planning/references/research-phase.md +49 -0
  99. package/skills/ck-planning/references/task-management.md +134 -0
  100. package/skills/ck-planning/references/workflow-modes.md +154 -0
  101. package/skills/ck-problem-solving/SKILL.md +96 -0
  102. package/skills/ck-project-management/SKILL.md +133 -0
  103. package/skills/ck-project-management/references/documentation-triggers.md +60 -0
  104. package/skills/ck-repomix/SKILL.md +248 -0
  105. package/skills/ck-research/SKILL.md +172 -0
  106. package/skills/ck-scout/SKILL.md +91 -0
  107. package/skills/ck-security/SKILL.md +139 -0
  108. package/skills/ck-sequential-thinking/SKILL.md +94 -0
  109. package/skills/ck-ship/SKILL.md +116 -0
  110. package/skills/ck-ship/references/ship-workflow.md +241 -0
  111. package/skills/ck-test/SKILL.md +111 -0
  112. package/skills/ck-test/references/ui-testing-workflow.md +65 -0
  113. package/skills/ck-ui-styling/SKILL.md +321 -0
  114. package/skills/ck-web-testing/SKILL.md +96 -0
  115. package/templates/repo/.github/agents/ck-brainstormer.agent.md +92 -0
  116. package/templates/repo/.github/agents/ck-code-reviewer.agent.md +145 -0
  117. package/templates/repo/.github/agents/ck-debugger.agent.md +142 -0
  118. package/templates/repo/.github/agents/ck-ui-ux-designer.agent.md +200 -0
  119. package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +12 -12
  120. package/templates/repo/.github/prompts/ck-cook.prompt.md +11 -11
  121. package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +1 -1
  122. package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +2 -2
  123. package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +1 -1
  124. package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +3 -3
  125. package/templates/repo/.github/prompts/ck-plan-red-team.prompt.md +1 -1
  126. package/templates/repo/.github/prompts/ck-review.prompt.md +4 -4
  127. package/templates/repo/.github/prompts/ck-test.prompt.md +1 -1
  128. package/templates/repo/.github/skills/ck-agent-browser/SKILL.md +294 -0
  129. package/templates/repo/.github/skills/ck-backend-development/SKILL.md +94 -0
  130. package/templates/repo/.github/skills/ck-bootstrap/SKILL.md +102 -0
  131. package/templates/repo/.github/skills/ck-bootstrap/references/shared-phases.md +59 -0
  132. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-auto.md +52 -0
  133. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-fast.md +50 -0
  134. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-full.md +60 -0
  135. package/templates/repo/.github/skills/ck-bootstrap/references/workflow-parallel.md +59 -0
  136. package/templates/repo/.github/skills/ck-brainstorm/SKILL.md +122 -0
  137. package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +630 -0
  138. package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +694 -0
  139. package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +940 -0
  140. package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +953 -0
  141. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +290 -0
  142. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +363 -0
  143. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +84 -0
  144. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/connect-chrome.js +146 -0
  145. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +81 -0
  146. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +56 -0
  147. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +77 -0
  148. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/import-cookies.js +205 -0
  149. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +230 -0
  150. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +181 -0
  151. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +83 -0
  152. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +138 -0
  153. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +108 -0
  154. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +1595 -0
  155. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +16 -0
  156. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +151 -0
  157. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +199 -0
  158. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +132 -0
  159. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +136 -0
  160. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-debug.js +44 -0
  161. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/ws-full-debug.js +107 -0
  162. package/templates/repo/.github/skills/ck-code-review/SKILL.md +196 -0
  163. package/templates/repo/.github/skills/ck-code-review/references/adversarial-review.md +223 -0
  164. package/templates/repo/.github/skills/ck-code-review/references/codebase-scan-workflow.md +30 -0
  165. package/templates/repo/.github/skills/ck-code-review/references/parallel-review-workflow.md +76 -0
  166. package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +116 -0
  167. package/templates/repo/.github/skills/ck-context-engineering/SKILL.md +107 -0
  168. package/templates/repo/.github/skills/ck-cook/SKILL.md +155 -0
  169. package/templates/repo/.github/skills/ck-cook/references/workflow-steps.md +192 -0
  170. package/templates/repo/.github/skills/ck-databases/SKILL.md +84 -0
  171. package/templates/repo/.github/skills/ck-debug/SKILL.md +120 -0
  172. package/templates/repo/.github/skills/ck-deploy/SKILL.md +154 -0
  173. package/templates/repo/.github/skills/ck-devops/SKILL.md +96 -0
  174. package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +97 -0
  175. package/templates/repo/.github/skills/ck-fix/SKILL.md +209 -0
  176. package/templates/repo/.github/skills/ck-fix/references/complexity-assessment.md +73 -0
  177. package/templates/repo/.github/skills/ck-fix/references/diagnosis-protocol.md +133 -0
  178. package/templates/repo/.github/skills/ck-fix/references/prevention-gate.md +87 -0
  179. package/templates/repo/.github/skills/ck-fix/references/skill-activation-matrix.md +98 -0
  180. package/templates/repo/.github/skills/ck-fix/references/task-orchestration.md +110 -0
  181. package/templates/repo/.github/skills/ck-fix/references/workflow-ci.md +28 -0
  182. package/templates/repo/.github/skills/ck-fix/references/workflow-deep.md +154 -0
  183. package/templates/repo/.github/skills/ck-fix/references/workflow-logs.md +72 -0
  184. package/templates/repo/.github/skills/ck-fix/references/workflow-quick.md +82 -0
  185. package/templates/repo/.github/skills/ck-fix/references/workflow-standard.md +120 -0
  186. package/templates/repo/.github/skills/ck-fix/references/workflow-test.md +75 -0
  187. package/templates/repo/.github/skills/ck-fix/references/workflow-ui.md +72 -0
  188. package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +109 -0
  189. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-3d.md +98 -0
  190. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-describe.md +87 -0
  191. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-immersive.md +82 -0
  192. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-quick.md +52 -0
  193. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-screenshot.md +63 -0
  194. package/templates/repo/.github/skills/ck-frontend-design/references/workflow-video.md +74 -0
  195. package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +400 -0
  196. package/templates/repo/.github/skills/ck-git/SKILL.md +113 -0
  197. package/templates/repo/.github/skills/ck-git/references/workflow-commit.md +58 -0
  198. package/templates/repo/.github/skills/ck-git/references/workflow-merge.md +48 -0
  199. package/templates/repo/.github/skills/ck-git/references/workflow-pr.md +58 -0
  200. package/templates/repo/.github/skills/ck-git/references/workflow-push.md +52 -0
  201. package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +210 -0
  202. package/templates/repo/.github/skills/ck-mermaidjs-v11/SKILL.md +116 -0
  203. package/templates/repo/.github/skills/ck-planning/SKILL.md +194 -0
  204. package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -0
  205. package/templates/repo/.github/skills/ck-planning/references/task-management.md +134 -0
  206. package/templates/repo/.github/skills/ck-planning/references/workflow-modes.md +154 -0
  207. package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +96 -0
  208. package/templates/repo/.github/skills/ck-project-management/SKILL.md +133 -0
  209. package/templates/repo/.github/skills/ck-project-management/references/documentation-triggers.md +60 -0
  210. package/templates/repo/.github/skills/ck-repomix/SKILL.md +248 -0
  211. package/templates/repo/.github/skills/ck-research/SKILL.md +172 -0
  212. package/templates/repo/.github/skills/ck-scout/SKILL.md +91 -0
  213. package/templates/repo/.github/skills/ck-security/SKILL.md +139 -0
  214. package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +94 -0
  215. package/templates/repo/.github/skills/ck-ship/SKILL.md +116 -0
  216. package/templates/repo/.github/skills/ck-ship/references/ship-workflow.md +241 -0
  217. package/templates/repo/.github/skills/ck-test/SKILL.md +111 -0
  218. package/templates/repo/.github/skills/ck-test/references/ui-testing-workflow.md +65 -0
  219. package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +321 -0
  220. package/templates/repo/.github/skills/ck-web-testing/SKILL.md +96 -0
  221. package/agents/brainstormer.agent.md +0 -92
  222. package/agents/code-reviewer.agent.md +0 -145
  223. package/agents/debugger.agent.md +0 -142
  224. package/agents/ui-ux-designer.agent.md +0 -200
  225. package/docs/cokit-comprehensive-mapping-guide.md +0 -355
  226. package/docs/cokit-slides.md +0 -207
  227. package/docs/cokit-team-presentation.md +0 -351
  228. package/docs/skills-and-orchestration-layer-en.md +0 -404
  229. package/docs/skills-and-orchestration-layer-vi.md +0 -404
  230. package/skills/agent-browser/SKILL.md +0 -294
  231. package/skills/backend-development/SKILL.md +0 -94
  232. package/skills/bootstrap/SKILL.md +0 -102
  233. package/skills/bootstrap/references/shared-phases.md +0 -59
  234. package/skills/bootstrap/references/workflow-auto.md +0 -52
  235. package/skills/bootstrap/references/workflow-fast.md +0 -50
  236. package/skills/bootstrap/references/workflow-full.md +0 -60
  237. package/skills/bootstrap/references/workflow-parallel.md +0 -59
  238. package/skills/brainstorm/SKILL.md +0 -122
  239. package/skills/code-review/SKILL.md +0 -196
  240. package/skills/code-review/references/adversarial-review.md +0 -223
  241. package/skills/code-review/references/codebase-scan-workflow.md +0 -30
  242. package/skills/code-review/references/parallel-review-workflow.md +0 -76
  243. package/skills/code-review/references/requesting-code-review.md +0 -116
  244. package/skills/context-engineering/SKILL.md +0 -107
  245. package/skills/cook/SKILL.md +0 -155
  246. package/skills/cook/references/workflow-steps.md +0 -192
  247. package/skills/databases/SKILL.md +0 -84
  248. package/skills/debug/SKILL.md +0 -120
  249. package/skills/deploy/SKILL.md +0 -154
  250. package/skills/devops/SKILL.md +0 -96
  251. package/skills/docs-seeker/SKILL.md +0 -97
  252. package/skills/fix/SKILL.md +0 -209
  253. package/skills/fix/references/complexity-assessment.md +0 -73
  254. package/skills/fix/references/diagnosis-protocol.md +0 -133
  255. package/skills/fix/references/prevention-gate.md +0 -87
  256. package/skills/fix/references/skill-activation-matrix.md +0 -98
  257. package/skills/fix/references/task-orchestration.md +0 -110
  258. package/skills/fix/references/workflow-ci.md +0 -28
  259. package/skills/fix/references/workflow-deep.md +0 -154
  260. package/skills/fix/references/workflow-logs.md +0 -72
  261. package/skills/fix/references/workflow-quick.md +0 -82
  262. package/skills/fix/references/workflow-standard.md +0 -120
  263. package/skills/fix/references/workflow-test.md +0 -75
  264. package/skills/fix/references/workflow-ui.md +0 -72
  265. package/skills/frontend-design/SKILL.md +0 -109
  266. package/skills/frontend-design/references/workflow-3d.md +0 -98
  267. package/skills/frontend-design/references/workflow-describe.md +0 -87
  268. package/skills/frontend-design/references/workflow-immersive.md +0 -82
  269. package/skills/frontend-design/references/workflow-quick.md +0 -52
  270. package/skills/frontend-design/references/workflow-screenshot.md +0 -63
  271. package/skills/frontend-design/references/workflow-video.md +0 -74
  272. package/skills/frontend-development/SKILL.md +0 -400
  273. package/skills/git/SKILL.md +0 -113
  274. package/skills/git/references/workflow-commit.md +0 -58
  275. package/skills/git/references/workflow-merge.md +0 -48
  276. package/skills/git/references/workflow-pr.md +0 -58
  277. package/skills/git/references/workflow-push.md +0 -52
  278. package/skills/mcp-management/SKILL.md +0 -210
  279. package/skills/mermaidjs-v11/SKILL.md +0 -116
  280. package/skills/planning/SKILL.md +0 -194
  281. package/skills/planning/references/research-phase.md +0 -49
  282. package/skills/planning/references/task-management.md +0 -134
  283. package/skills/planning/references/workflow-modes.md +0 -154
  284. package/skills/problem-solving/SKILL.md +0 -96
  285. package/skills/project-management/SKILL.md +0 -133
  286. package/skills/project-management/references/documentation-triggers.md +0 -60
  287. package/skills/repomix/SKILL.md +0 -248
  288. package/skills/research/SKILL.md +0 -172
  289. package/skills/scout/SKILL.md +0 -91
  290. package/skills/security/SKILL.md +0 -139
  291. package/skills/sequential-thinking/SKILL.md +0 -94
  292. package/skills/ship/SKILL.md +0 -116
  293. package/skills/ship/references/ship-workflow.md +0 -241
  294. package/skills/test/SKILL.md +0 -111
  295. package/skills/test/references/ui-testing-workflow.md +0 -65
  296. package/skills/ui-styling/SKILL.md +0 -321
  297. package/skills/web-testing/SKILL.md +0 -96
  298. package/templates/repo/.github/agents/brainstormer.agent.md +0 -92
  299. package/templates/repo/.github/agents/code-reviewer.agent.md +0 -145
  300. package/templates/repo/.github/agents/debugger.agent.md +0 -142
  301. package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -200
  302. package/templates/repo/.github/skills/agent-browser/SKILL.md +0 -294
  303. package/templates/repo/.github/skills/backend-development/SKILL.md +0 -94
  304. package/templates/repo/.github/skills/bootstrap/SKILL.md +0 -102
  305. package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +0 -59
  306. package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +0 -52
  307. package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +0 -50
  308. package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +0 -60
  309. package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +0 -59
  310. package/templates/repo/.github/skills/brainstorm/SKILL.md +0 -122
  311. package/templates/repo/.github/skills/code-review/SKILL.md +0 -196
  312. package/templates/repo/.github/skills/code-review/references/adversarial-review.md +0 -223
  313. package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +0 -30
  314. package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +0 -76
  315. package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +0 -116
  316. package/templates/repo/.github/skills/context-engineering/SKILL.md +0 -107
  317. package/templates/repo/.github/skills/cook/SKILL.md +0 -155
  318. package/templates/repo/.github/skills/cook/references/workflow-steps.md +0 -192
  319. package/templates/repo/.github/skills/databases/SKILL.md +0 -84
  320. package/templates/repo/.github/skills/debug/SKILL.md +0 -120
  321. package/templates/repo/.github/skills/deploy/SKILL.md +0 -154
  322. package/templates/repo/.github/skills/devops/SKILL.md +0 -96
  323. package/templates/repo/.github/skills/docs-seeker/SKILL.md +0 -97
  324. package/templates/repo/.github/skills/fix/SKILL.md +0 -209
  325. package/templates/repo/.github/skills/fix/references/complexity-assessment.md +0 -73
  326. package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +0 -133
  327. package/templates/repo/.github/skills/fix/references/prevention-gate.md +0 -87
  328. package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +0 -98
  329. package/templates/repo/.github/skills/fix/references/task-orchestration.md +0 -110
  330. package/templates/repo/.github/skills/fix/references/workflow-ci.md +0 -28
  331. package/templates/repo/.github/skills/fix/references/workflow-deep.md +0 -154
  332. package/templates/repo/.github/skills/fix/references/workflow-logs.md +0 -72
  333. package/templates/repo/.github/skills/fix/references/workflow-quick.md +0 -82
  334. package/templates/repo/.github/skills/fix/references/workflow-standard.md +0 -120
  335. package/templates/repo/.github/skills/fix/references/workflow-test.md +0 -75
  336. package/templates/repo/.github/skills/fix/references/workflow-ui.md +0 -72
  337. package/templates/repo/.github/skills/frontend-design/SKILL.md +0 -109
  338. package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +0 -98
  339. package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +0 -87
  340. package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +0 -82
  341. package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +0 -52
  342. package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +0 -63
  343. package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +0 -74
  344. package/templates/repo/.github/skills/frontend-development/SKILL.md +0 -400
  345. package/templates/repo/.github/skills/git/SKILL.md +0 -113
  346. package/templates/repo/.github/skills/git/references/workflow-commit.md +0 -58
  347. package/templates/repo/.github/skills/git/references/workflow-merge.md +0 -48
  348. package/templates/repo/.github/skills/git/references/workflow-pr.md +0 -58
  349. package/templates/repo/.github/skills/git/references/workflow-push.md +0 -52
  350. package/templates/repo/.github/skills/mcp-management/SKILL.md +0 -210
  351. package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +0 -116
  352. package/templates/repo/.github/skills/planning/SKILL.md +0 -194
  353. package/templates/repo/.github/skills/planning/references/research-phase.md +0 -49
  354. package/templates/repo/.github/skills/planning/references/task-management.md +0 -134
  355. package/templates/repo/.github/skills/planning/references/workflow-modes.md +0 -154
  356. package/templates/repo/.github/skills/problem-solving/SKILL.md +0 -96
  357. package/templates/repo/.github/skills/project-management/SKILL.md +0 -133
  358. package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +0 -60
  359. package/templates/repo/.github/skills/repomix/SKILL.md +0 -248
  360. package/templates/repo/.github/skills/research/SKILL.md +0 -172
  361. package/templates/repo/.github/skills/scout/SKILL.md +0 -91
  362. package/templates/repo/.github/skills/security/SKILL.md +0 -139
  363. package/templates/repo/.github/skills/sequential-thinking/SKILL.md +0 -94
  364. package/templates/repo/.github/skills/ship/SKILL.md +0 -116
  365. package/templates/repo/.github/skills/ship/references/ship-workflow.md +0 -241
  366. package/templates/repo/.github/skills/test/SKILL.md +0 -111
  367. package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +0 -65
  368. package/templates/repo/.github/skills/ui-styling/SKILL.md +0 -321
  369. package/templates/repo/.github/skills/web-testing/SKILL.md +0 -96
  370. /package/agents/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
  371. /package/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
  372. /package/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
  373. /package/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
  374. /package/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
  375. /package/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
  376. /package/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
  377. /package/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
  378. /package/agents/{tester.agent.md → ck-tester.agent.md} +0 -0
  379. /package/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
  380. /package/skills/{agent-browser → ck-agent-browser}/references/agent-browser-vs-chrome-devtools.md +0 -0
  381. /package/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
  382. /package/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
  383. /package/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
  384. /package/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
  385. /package/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
  386. /package/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
  387. /package/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
  388. /package/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
  389. /package/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
  390. /package/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
  391. /package/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
  392. /package/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
  393. /package/skills/{code-review → ck-code-review}/references/checklist-workflow.md +0 -0
  394. /package/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
  395. /package/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
  396. /package/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
  397. /package/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
  398. /package/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
  399. /package/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
  400. /package/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
  401. /package/skills/{code-review → ck-code-review}/references/task-management-reviews.md +0 -0
  402. /package/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
  403. /package/skills/{common → ck-common}/README.md +0 -0
  404. /package/skills/{common → ck-common}/api_key_helper.py +0 -0
  405. /package/skills/{common → ck-common}/api_key_rotator.py +0 -0
  406. /package/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
  407. /package/skills/{context-engineering → ck-context-engineering}/references/context-degradation.md +0 -0
  408. /package/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
  409. /package/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
  410. /package/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
  411. /package/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
  412. /package/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
  413. /package/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
  414. /package/skills/{context-engineering → ck-context-engineering}/references/runtime-awareness.md +0 -0
  415. /package/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
  416. /package/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
  417. /package/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
  418. /package/skills/{cook → ck-cook}/README.md +0 -0
  419. /package/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
  420. /package/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
  421. /package/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
  422. /package/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
  423. /package/skills/{databases → ck-databases}/analytics.md +0 -0
  424. /package/skills/{databases → ck-databases}/db-design.md +0 -0
  425. /package/skills/{databases → ck-databases}/incremental-etl.md +0 -0
  426. /package/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
  427. /package/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
  428. /package/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
  429. /package/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
  430. /package/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
  431. /package/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
  432. /package/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
  433. /package/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
  434. /package/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
  435. /package/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
  436. /package/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
  437. /package/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
  438. /package/skills/{databases → ck-databases}/stacks/bigquery.md +0 -0
  439. /package/skills/{databases → ck-databases}/stacks/d1_cloudflare.md +0 -0
  440. /package/skills/{databases → ck-databases}/stacks/mysql.md +0 -0
  441. /package/skills/{databases → ck-databases}/stacks/postgres.md +0 -0
  442. /package/skills/{databases → ck-databases}/stacks/sqlite.md +0 -0
  443. /package/skills/{databases → ck-databases}/transactional.md +0 -0
  444. /package/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
  445. /package/skills/{debug → ck-debug}/references/frontend-verification.md +0 -0
  446. /package/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
  447. /package/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
  448. /package/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
  449. /package/skills/{debug → ck-debug}/references/reporting-standards.md +0 -0
  450. /package/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
  451. /package/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
  452. /package/skills/{debug → ck-debug}/references/task-management-debugging.md +0 -0
  453. /package/skills/{debug → ck-debug}/references/verification.md +0 -0
  454. /package/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
  455. /package/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
  456. /package/skills/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
  457. /package/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
  458. /package/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
  459. /package/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
  460. /package/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
  461. /package/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
  462. /package/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
  463. /package/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
  464. /package/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
  465. /package/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
  466. /package/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
  467. /package/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
  468. /package/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
  469. /package/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
  470. /package/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
  471. /package/skills/{deploy → ck-deploy}/references/platforms/vultr.md +0 -0
  472. /package/skills/{devops → ck-devops}/.env.example +0 -0
  473. /package/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
  474. /package/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
  475. /package/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
  476. /package/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
  477. /package/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
  478. /package/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
  479. /package/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
  480. /package/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
  481. /package/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
  482. /package/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
  483. /package/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
  484. /package/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
  485. /package/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
  486. /package/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
  487. /package/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
  488. /package/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
  489. /package/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
  490. /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
  491. /package/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
  492. /package/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
  493. /package/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
  494. /package/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
  495. /package/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
  496. /package/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
  497. /package/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
  498. /package/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
  499. /package/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
  500. /package/skills/{docs-seeker → ck-docs-seeker}/references/context7-patterns.md +0 -0
  501. /package/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
  502. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
  503. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
  504. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/fetch-docs.js +0 -0
  505. /package/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
  506. /package/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +0 -0
  507. /package/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
  508. /package/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
  509. /package/skills/{fix → ck-fix}/references/mode-selection.md +0 -0
  510. /package/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
  511. /package/skills/{fix → ck-fix}/references/review-cycle.md +0 -0
  512. /package/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
  513. /package/skills/{frontend-design → ck-frontend-design}/references/ai-multimodal-overview.md +0 -0
  514. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
  515. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
  516. /package/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
  517. /package/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
  518. /package/skills/{frontend-design → ck-frontend-design}/references/anti-slop-rules.md +0 -0
  519. /package/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
  520. /package/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.md +0 -0
  521. /package/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
  522. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
  523. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
  524. /package/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
  525. /package/skills/{frontend-design → ck-frontend-design}/references/magicui-components.md +0 -0
  526. /package/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
  527. /package/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
  528. /package/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.md +0 -0
  529. /package/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
  530. /package/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
  531. /package/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
  532. /package/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
  533. /package/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
  534. /package/skills/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
  535. /package/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
  536. /package/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
  537. /package/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
  538. /package/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
  539. /package/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
  540. /package/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
  541. /package/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
  542. /package/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
  543. /package/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
  544. /package/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.md +0 -0
  545. /package/skills/{git → ck-git}/references/branch-management.md +0 -0
  546. /package/skills/{git → ck-git}/references/commit-standards.md +0 -0
  547. /package/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
  548. /package/skills/{git → ck-git}/references/safety-protocols.md +0 -0
  549. /package/skills/{mcp-management → ck-mcp-management}/README.md +0 -0
  550. /package/skills/{mcp-management → ck-mcp-management}/assets/tools.json +0 -0
  551. /package/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
  552. /package/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.md +0 -0
  553. /package/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
  554. /package/skills/{mcp-management → ck-mcp-management}/scripts/.env.example +0 -0
  555. /package/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
  556. /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/analyze-tools.js +0 -0
  557. /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/cli.js +0 -0
  558. /package/skills/{mcp-management → ck-mcp-management}/scripts/dist/mcp-client.js +0 -0
  559. /package/skills/{mcp-management → ck-mcp-management}/scripts/mcp-client.ts +0 -0
  560. /package/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
  561. /package/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
  562. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
  563. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
  564. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
  565. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
  566. /package/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
  567. /package/skills/{planning → ck-planning}/references/archive-workflow.md +0 -0
  568. /package/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
  569. /package/skills/{planning → ck-planning}/references/output-standards.md +0 -0
  570. /package/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
  571. /package/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
  572. /package/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
  573. /package/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
  574. /package/skills/{planning → ck-planning}/references/solution-design.md +0 -0
  575. /package/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
  576. /package/skills/{planning → ck-planning}/references/validate-workflow.md +0 -0
  577. /package/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
  578. /package/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
  579. /package/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
  580. /package/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
  581. /package/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
  582. /package/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
  583. /package/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
  584. /package/skills/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
  585. /package/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
  586. /package/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
  587. /package/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
  588. /package/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
  589. /package/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
  590. /package/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
  591. /package/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +0 -0
  592. /package/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
  593. /package/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
  594. /package/skills/{scout → ck-scout}/references/external-scouting.md +0 -0
  595. /package/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
  596. /package/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
  597. /package/skills/{security → ck-security}/references/stride-owasp-checklist.md +0 -0
  598. /package/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
  599. /package/skills/{sequential-thinking → ck-sequential-thinking}/README.md +0 -0
  600. /package/skills/{sequential-thinking → ck-sequential-thinking}/package.json +0 -0
  601. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
  602. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
  603. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
  604. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
  605. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
  606. /package/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
  607. /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
  608. /package/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
  609. /package/skills/{ship → ck-ship}/references/auto-detect.md +0 -0
  610. /package/skills/{ship → ck-ship}/references/pr-template.md +0 -0
  611. /package/skills/{test → ck-test}/references/report-format.md +0 -0
  612. /package/skills/{test → ck-test}/references/test-execution-workflow.md +0 -0
  613. /package/skills/{ui-styling → ck-ui-styling}/LICENSE.txt +0 -0
  614. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  615. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  616. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  617. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
  618. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  619. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
  620. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
  621. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  622. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  623. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  624. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  625. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  626. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  627. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  628. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
  629. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
  630. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
  631. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
  632. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
  633. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
  634. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
  635. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
  636. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
  637. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  638. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  639. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  640. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  641. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  642. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  643. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  644. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  645. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  646. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  647. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  648. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  649. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  650. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  651. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
  652. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
  653. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  654. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  655. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  656. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
  657. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
  658. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
  659. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  660. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  661. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
  662. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  663. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
  664. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
  665. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
  666. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
  667. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
  668. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
  669. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  670. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  671. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
  672. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
  673. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
  674. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  675. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
  676. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
  677. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  678. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  679. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
  680. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  681. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
  682. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  683. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  684. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
  685. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
  686. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
  687. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
  688. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
  689. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  690. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
  691. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
  692. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
  693. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
  694. /package/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  695. /package/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
  696. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
  697. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
  698. /package/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
  699. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
  700. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
  701. /package/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
  702. /package/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
  703. /package/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
  704. /package/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
  705. /package/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
  706. /package/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
  707. /package/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
  708. /package/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
  709. /package/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
  710. /package/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
  711. /package/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
  712. /package/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
  713. /package/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
  714. /package/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
  715. /package/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
  716. /package/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
  717. /package/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
  718. /package/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
  719. /package/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
  720. /package/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
  721. /package/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
  722. /package/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
  723. /package/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
  724. /package/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
  725. /package/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
  726. /package/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
  727. /package/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
  728. /package/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
  729. /package/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
  730. /package/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
  731. /package/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
  732. /package/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
  733. /package/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
  734. /package/templates/repo/.github/agents/{code-simplifier.agent.md → ck-code-simplifier.agent.md} +0 -0
  735. /package/templates/repo/.github/agents/{docs-manager.agent.md → ck-docs-manager.agent.md} +0 -0
  736. /package/templates/repo/.github/agents/{fullstack-developer.agent.md → ck-fullstack-developer.agent.md} +0 -0
  737. /package/templates/repo/.github/agents/{git-manager.agent.md → ck-git-manager.agent.md} +0 -0
  738. /package/templates/repo/.github/agents/{planner.agent.md → ck-planner.agent.md} +0 -0
  739. /package/templates/repo/.github/agents/{project-manager.agent.md → ck-project-manager.agent.md} +0 -0
  740. /package/templates/repo/.github/agents/{researcher.agent.md → ck-researcher.agent.md} +0 -0
  741. /package/templates/repo/.github/agents/{scout.agent.md → ck-scout.agent.md} +0 -0
  742. /package/templates/repo/.github/agents/{tester.agent.md → ck-tester.agent.md} +0 -0
  743. /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/.gitkeep +0 -0
  744. /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/agent-browser-vs-chrome-devtools.md +0 -0
  745. /package/templates/repo/.github/skills/{agent-browser → ck-agent-browser}/references/browserbase-cloud-setup.md +0 -0
  746. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-api-design.md +0 -0
  747. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-architecture.md +0 -0
  748. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-authentication.md +0 -0
  749. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-code-quality.md +0 -0
  750. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-debugging.md +0 -0
  751. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-devops.md +0 -0
  752. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-mindset.md +0 -0
  753. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-performance.md +0 -0
  754. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-security.md +0 -0
  755. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-technologies.md +0 -0
  756. /package/templates/repo/.github/skills/{backend-development → ck-backend-development}/references/backend-testing.md +0 -0
  757. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklist-workflow.md +0 -0
  758. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/api.md +0 -0
  759. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/base.md +0 -0
  760. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/checklists/web-app.md +0 -0
  761. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/code-review-reception.md +0 -0
  762. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/edge-case-scouting.md +0 -0
  763. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/input-mode-resolution.md +0 -0
  764. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/spec-compliance-review.md +0 -0
  765. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/task-management-reviews.md +0 -0
  766. /package/templates/repo/.github/skills/{code-review → ck-code-review}/references/verification-before-completion.md +0 -0
  767. /package/templates/repo/.github/skills/{common → ck-common}/README.md +0 -0
  768. /package/templates/repo/.github/skills/{common → ck-common}/api_key_helper.py +0 -0
  769. /package/templates/repo/.github/skills/{common → ck-common}/api_key_rotator.py +0 -0
  770. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-compression.md +0 -0
  771. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-degradation.md +0 -0
  772. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-fundamentals.md +0 -0
  773. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/context-optimization.md +0 -0
  774. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/evaluation.md +0 -0
  775. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/memory-systems.md +0 -0
  776. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/multi-agent-patterns.md +0 -0
  777. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/project-development.md +0 -0
  778. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/runtime-awareness.md +0 -0
  779. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/references/tool-design.md +0 -0
  780. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/compression_evaluator.py +0 -0
  781. /package/templates/repo/.github/skills/{context-engineering → ck-context-engineering}/scripts/context_analyzer.py +0 -0
  782. /package/templates/repo/.github/skills/{cook → ck-cook}/README.md +0 -0
  783. /package/templates/repo/.github/skills/{cook → ck-cook}/references/agent-patterns.md +0 -0
  784. /package/templates/repo/.github/skills/{cook → ck-cook}/references/intent-detection.md +0 -0
  785. /package/templates/repo/.github/skills/{cook → ck-cook}/references/review-cycle.md +0 -0
  786. /package/templates/repo/.github/skills/{cook → ck-cook}/references/subagent-patterns.md +0 -0
  787. /package/templates/repo/.github/skills/{databases → ck-databases}/analytics.md +0 -0
  788. /package/templates/repo/.github/skills/{databases → ck-databases}/db-design.md +0 -0
  789. /package/templates/repo/.github/skills/{databases → ck-databases}/incremental-etl.md +0 -0
  790. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-aggregation.md +0 -0
  791. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-atlas.md +0 -0
  792. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-crud.md +0 -0
  793. /package/templates/repo/.github/skills/{databases → ck-databases}/references/mongodb-indexing.md +0 -0
  794. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-administration.md +0 -0
  795. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-performance.md +0 -0
  796. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-psql-cli.md +0 -0
  797. /package/templates/repo/.github/skills/{databases → ck-databases}/references/postgresql-queries.md +0 -0
  798. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_backup.py +0 -0
  799. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_migrate.py +0 -0
  800. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/db_performance_check.py +0 -0
  801. /package/templates/repo/.github/skills/{databases → ck-databases}/scripts/requirements.txt +0 -0
  802. /package/templates/repo/.github/skills/{databases → ck-databases}/transactional.md +0 -0
  803. /package/templates/repo/.github/skills/{debug → ck-debug}/references/defense-in-depth.md +0 -0
  804. /package/templates/repo/.github/skills/{debug → ck-debug}/references/frontend-verification.md +0 -0
  805. /package/templates/repo/.github/skills/{debug → ck-debug}/references/investigation-methodology.md +0 -0
  806. /package/templates/repo/.github/skills/{debug → ck-debug}/references/log-and-ci-analysis.md +0 -0
  807. /package/templates/repo/.github/skills/{debug → ck-debug}/references/performance-diagnostics.md +0 -0
  808. /package/templates/repo/.github/skills/{debug → ck-debug}/references/reporting-standards.md +0 -0
  809. /package/templates/repo/.github/skills/{debug → ck-debug}/references/root-cause-tracing.md +0 -0
  810. /package/templates/repo/.github/skills/{debug → ck-debug}/references/systematic-debugging.md +0 -0
  811. /package/templates/repo/.github/skills/{debug → ck-debug}/references/task-management-debugging.md +0 -0
  812. /package/templates/repo/.github/skills/{debug → ck-debug}/references/verification.md +0 -0
  813. /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.sh +0 -0
  814. /package/templates/repo/.github/skills/{debug → ck-debug}/scripts/find-polluter.test.md +0 -0
  815. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platform-config-templates.md +0 -0
  816. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/aws.md +0 -0
  817. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/cloudflare.md +0 -0
  818. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/coolify.md +0 -0
  819. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/digitalocean.md +0 -0
  820. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/dokploy.md +0 -0
  821. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/flyio.md +0 -0
  822. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/gcp.md +0 -0
  823. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/github-pages.md +0 -0
  824. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/heroku.md +0 -0
  825. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/netlify.md +0 -0
  826. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/railway.md +0 -0
  827. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/render.md +0 -0
  828. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/tose.md +0 -0
  829. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vercel.md +0 -0
  830. /package/templates/repo/.github/skills/{deploy → ck-deploy}/references/platforms/vultr.md +0 -0
  831. /package/templates/repo/.github/skills/{devops → ck-devops}/.env.example +0 -0
  832. /package/templates/repo/.github/skills/{devops → ck-devops}/references/browser-rendering.md +0 -0
  833. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-d1-kv.md +0 -0
  834. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-platform.md +0 -0
  835. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-r2-storage.md +0 -0
  836. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-advanced.md +0 -0
  837. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-apis.md +0 -0
  838. /package/templates/repo/.github/skills/{devops → ck-devops}/references/cloudflare-workers-basics.md +0 -0
  839. /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-basics.md +0 -0
  840. /package/templates/repo/.github/skills/{devops → ck-devops}/references/docker-compose.md +0 -0
  841. /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-platform.md +0 -0
  842. /package/templates/repo/.github/skills/{devops → ck-devops}/references/gcloud-services.md +0 -0
  843. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-basics.md +0 -0
  844. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm-advanced.md +0 -0
  845. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-helm.md +0 -0
  846. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-kubectl.md +0 -0
  847. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security-advanced.md +0 -0
  848. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-security.md +0 -0
  849. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting-advanced.md +0 -0
  850. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-troubleshooting.md +0 -0
  851. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows-advanced.md +0 -0
  852. /package/templates/repo/.github/skills/{devops → ck-devops}/references/kubernetes-workflows.md +0 -0
  853. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/cloudflare_deploy.py +0 -0
  854. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/docker_optimize.py +0 -0
  855. /package/templates/repo/.github/skills/{devops → ck-devops}/scripts/requirements.txt +0 -0
  856. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/.env.example +0 -0
  857. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/package.json +0 -0
  858. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/advanced.md +0 -0
  859. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/context7-patterns.md +0 -0
  860. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/references/errors.md +0 -0
  861. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/analyze-llms-txt.js +0 -0
  862. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/detect-topic.js +0 -0
  863. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/fetch-docs.js +0 -0
  864. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/scripts/utils/env-loader.js +0 -0
  865. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/library-search.md +0 -0
  866. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/repo-analysis.md +0 -0
  867. /package/templates/repo/.github/skills/{docs-seeker → ck-docs-seeker}/workflows/topic-search.md +0 -0
  868. /package/templates/repo/.github/skills/{fix → ck-fix}/references/mode-selection.md +0 -0
  869. /package/templates/repo/.github/skills/{fix → ck-fix}/references/parallel-exploration.md +0 -0
  870. /package/templates/repo/.github/skills/{fix → ck-fix}/references/review-cycle.md +0 -0
  871. /package/templates/repo/.github/skills/{fix → ck-fix}/references/workflow-types.md +0 -0
  872. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/ai-multimodal-overview.md +0 -0
  873. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-best-practices.md +0 -0
  874. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-prompts.md +0 -0
  875. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/analysis-techniques.md +0 -0
  876. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/animejs.md +0 -0
  877. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/anti-slop-rules.md +0 -0
  878. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/asset-generation.md +0 -0
  879. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/bento-motion-engine.md +0 -0
  880. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/design-extraction-overview.md +0 -0
  881. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-best-practices.md +0 -0
  882. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-output-templates.md +0 -0
  883. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/extraction-prompts.md +0 -0
  884. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/magicui-components.md +0 -0
  885. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/performance-guardrails.md +0 -0
  886. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/premium-design-patterns.md +0 -0
  887. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/redesign-audit-checklist.md +0 -0
  888. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-accessibility.md +0 -0
  889. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-best-practices.md +0 -0
  890. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-optimization.md +0 -0
  891. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-overview.md +0 -0
  892. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/technical-workflows.md +0 -0
  893. /package/templates/repo/.github/skills/{frontend-design → ck-frontend-design}/references/visual-analysis-overview.md +0 -0
  894. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/common-patterns.md +0 -0
  895. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/complete-examples.md +0 -0
  896. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/component-patterns.md +0 -0
  897. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/data-fetching.md +0 -0
  898. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/file-organization.md +0 -0
  899. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/loading-and-error-states.md +0 -0
  900. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/performance.md +0 -0
  901. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/routing-guide.md +0 -0
  902. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/styling-guide.md +0 -0
  903. /package/templates/repo/.github/skills/{frontend-development → ck-frontend-development}/resources/typescript-standards.md +0 -0
  904. /package/templates/repo/.github/skills/{git → ck-git}/references/branch-management.md +0 -0
  905. /package/templates/repo/.github/skills/{git → ck-git}/references/commit-standards.md +0 -0
  906. /package/templates/repo/.github/skills/{git → ck-git}/references/gh-cli-guide.md +0 -0
  907. /package/templates/repo/.github/skills/{git → ck-git}/references/safety-protocols.md +0 -0
  908. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/README.md +0 -0
  909. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/configuration.md +0 -0
  910. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/gemini-cli-integration.md +0 -0
  911. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/references/mcp-protocol.md +0 -0
  912. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/.env.example +0 -0
  913. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/cli.ts +0 -0
  914. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/mcp-client.ts +0 -0
  915. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/package.json +0 -0
  916. /package/templates/repo/.github/skills/{mcp-management → ck-mcp-management}/scripts/tsconfig.json +0 -0
  917. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/cli-usage.md +0 -0
  918. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/configuration.md +0 -0
  919. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/diagram-types.md +0 -0
  920. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/examples.md +0 -0
  921. /package/templates/repo/.github/skills/{mermaidjs-v11 → ck-mermaidjs-v11}/references/integration.md +0 -0
  922. /package/templates/repo/.github/skills/{planning → ck-planning}/references/archive-workflow.md +0 -0
  923. /package/templates/repo/.github/skills/{planning → ck-planning}/references/codebase-understanding.md +0 -0
  924. /package/templates/repo/.github/skills/{planning → ck-planning}/references/output-standards.md +0 -0
  925. /package/templates/repo/.github/skills/{planning → ck-planning}/references/plan-organization.md +0 -0
  926. /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-personas.md +0 -0
  927. /package/templates/repo/.github/skills/{planning → ck-planning}/references/red-team-workflow.md +0 -0
  928. /package/templates/repo/.github/skills/{planning → ck-planning}/references/scope-challenge.md +0 -0
  929. /package/templates/repo/.github/skills/{planning → ck-planning}/references/solution-design.md +0 -0
  930. /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-question-framework.md +0 -0
  931. /package/templates/repo/.github/skills/{planning → ck-planning}/references/validate-workflow.md +0 -0
  932. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/attribution.md +0 -0
  933. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/collision-zone-thinking.md +0 -0
  934. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/inversion-exercise.md +0 -0
  935. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/meta-pattern-recognition.md +0 -0
  936. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/scale-game.md +0 -0
  937. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/simplification-cascades.md +0 -0
  938. /package/templates/repo/.github/skills/{problem-solving → ck-problem-solving}/references/when-stuck.md +0 -0
  939. /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/hydration-workflow.md +0 -0
  940. /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/progress-tracking.md +0 -0
  941. /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/reporting-patterns.md +0 -0
  942. /package/templates/repo/.github/skills/{project-management → ck-project-management}/references/task-operations.md +0 -0
  943. /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/configuration.md +0 -0
  944. /package/templates/repo/.github/skills/{repomix → ck-repomix}/references/usage-patterns.md +0 -0
  945. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/README.md +0 -0
  946. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repomix_batch.py +0 -0
  947. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/repos.example.json +0 -0
  948. /package/templates/repo/.github/skills/{repomix → ck-repomix}/scripts/requirements.txt +0 -0
  949. /package/templates/repo/.github/skills/{scout → ck-scout}/references/external-scouting.md +0 -0
  950. /package/templates/repo/.github/skills/{scout → ck-scout}/references/internal-scouting.md +0 -0
  951. /package/templates/repo/.github/skills/{scout → ck-scout}/references/task-management-scouting.md +0 -0
  952. /package/templates/repo/.github/skills/{security → ck-security}/references/stride-owasp-checklist.md +0 -0
  953. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/.env.example +0 -0
  954. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/README.md +0 -0
  955. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package-lock.json +0 -0
  956. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/package.json +0 -0
  957. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-strategies.md +0 -0
  958. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/advanced-techniques.md +0 -0
  959. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/core-patterns.md +0 -0
  960. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-api.md +0 -0
  961. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-architecture.md +0 -0
  962. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/references/examples-debug.md +0 -0
  963. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/format-thought.js +0 -0
  964. /package/templates/repo/.github/skills/{sequential-thinking → ck-sequential-thinking}/scripts/process-thought.js +0 -0
  965. /package/templates/repo/.github/skills/{ship → ck-ship}/references/auto-detect.md +0 -0
  966. /package/templates/repo/.github/skills/{ship → ck-ship}/references/pr-template.md +0 -0
  967. /package/templates/repo/.github/skills/{test → ck-test}/references/report-format.md +0 -0
  968. /package/templates/repo/.github/skills/{test → ck-test}/references/test-execution-workflow.md +0 -0
  969. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-OFL.txt +0 -0
  970. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  971. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  972. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-OFL.txt +0 -0
  973. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  974. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-OFL.txt +0 -0
  975. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Boldonse-Regular.ttf +0 -0
  976. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  977. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-OFL.txt +0 -0
  978. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  979. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  980. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  981. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-OFL.txt +0 -0
  982. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  983. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-OFL.txt +0 -0
  984. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/DMMono-Regular.ttf +0 -0
  985. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-OFL.txt +0 -0
  986. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/EricaOne-Regular.ttf +0 -0
  987. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Bold.ttf +0 -0
  988. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-OFL.txt +0 -0
  989. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/GeistMono-Regular.ttf +0 -0
  990. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-OFL.txt +0 -0
  991. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Gloock-Regular.ttf +0 -0
  992. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  993. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-OFL.txt +0 -0
  994. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  995. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  996. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  997. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  998. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  999. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  1000. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  1001. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  1002. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-OFL.txt +0 -0
  1003. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  1004. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  1005. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  1006. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-OFL.txt +0 -0
  1007. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Italiana-Regular.ttf +0 -0
  1008. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  1009. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-OFL.txt +0 -0
  1010. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  1011. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Light.ttf +0 -0
  1012. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-Medium.ttf +0 -0
  1013. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Jura-OFL.txt +0 -0
  1014. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-OFL.txt +0 -0
  1015. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  1016. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Bold.ttf +0 -0
  1017. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  1018. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Italic.ttf +0 -0
  1019. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-OFL.txt +0 -0
  1020. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Lora-Regular.ttf +0 -0
  1021. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Bold.ttf +0 -0
  1022. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-OFL.txt +0 -0
  1023. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NationalPark-Regular.ttf +0 -0
  1024. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -0
  1025. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  1026. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Bold.ttf +0 -0
  1027. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-OFL.txt +0 -0
  1028. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Outfit-Regular.ttf +0 -0
  1029. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  1030. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PixelifySans-OFL.txt +0 -0
  1031. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-OFL.txt +0 -0
  1032. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  1033. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  1034. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-OFL.txt +0 -0
  1035. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  1036. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-OFL.txt +0 -0
  1037. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  1038. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  1039. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/SmoochSans-OFL.txt +0 -0
  1040. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Medium.ttf +0 -0
  1041. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-OFL.txt +0 -0
  1042. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/Tektur-Regular.ttf +0 -0
  1043. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Bold.ttf +0 -0
  1044. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  1045. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Italic.ttf +0 -0
  1046. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-OFL.txt +0 -0
  1047. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/WorkSans-Regular.ttf +0 -0
  1048. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-OFL.txt +0 -0
  1049. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  1050. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/canvas-design-system.md +0 -0
  1051. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-accessibility.md +0 -0
  1052. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-components.md +0 -0
  1053. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/shadcn-theming.md +0 -0
  1054. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-customization.md +0 -0
  1055. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-responsive.md +0 -0
  1056. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/references/tailwind-utilities.md +0 -0
  1057. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/requirements.txt +0 -0
  1058. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/shadcn_add.py +0 -0
  1059. /package/templates/repo/.github/skills/{ui-styling → ck-ui-styling}/scripts/tailwind_config_gen.py +0 -0
  1060. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/accessibility-testing.md +0 -0
  1061. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/api-testing.md +0 -0
  1062. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ci-cd-testing-workflows.md +0 -0
  1063. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/component-testing.md +0 -0
  1064. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/contract-testing.md +0 -0
  1065. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/cross-browser-checklist.md +0 -0
  1066. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/database-testing.md +0 -0
  1067. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/e2e-testing-playwright.md +0 -0
  1068. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/functional-testing-checklist.md +0 -0
  1069. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/interactive-testing-patterns.md +0 -0
  1070. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/load-testing-k6.md +0 -0
  1071. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/mobile-gesture-testing.md +0 -0
  1072. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/performance-core-web-vitals.md +0 -0
  1073. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/playwright-component-testing.md +0 -0
  1074. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/pre-release-checklist.md +0 -0
  1075. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/report-format.md +0 -0
  1076. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-checklists.md +0 -0
  1077. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/security-testing-overview.md +0 -0
  1078. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/shadow-dom-testing.md +0 -0
  1079. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-data-management.md +0 -0
  1080. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-execution-workflow.md +0 -0
  1081. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/test-flakiness-mitigation.md +0 -0
  1082. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/testing-pyramid-strategy.md +0 -0
  1083. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/ui-testing-workflow.md +0 -0
  1084. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/unit-integration-testing.md +0 -0
  1085. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/visual-regression.md +0 -0
  1086. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/references/vulnerability-payloads.md +0 -0
  1087. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/analyze-test-results.js +0 -0
  1088. /package/templates/repo/.github/skills/{web-testing → ck-web-testing}/scripts/init-playwright.js +0 -0
@@ -1,107 +0,0 @@
1
- ---
2
- name: context-engineering
3
- description: >-
4
- Check context usage limits, monitor time remaining, optimize token consumption, debug context failures.
5
- Use when asking about context percentage, rate limits, usage warnings, context optimization, agent architectures, memory systems.
6
- argument-hint: "[topic or question]"
7
- ---
8
-
9
- # Context Engineering
10
-
11
- Context engineering curates the smallest high-signal token set for LLM tasks. The goal: maximize reasoning quality while minimizing token usage.
12
-
13
- ## When to Activate
14
-
15
- - Designing/debugging agent systems
16
- - Context limits constrain performance
17
- - Optimizing cost/latency
18
- - Building multi-agent coordination
19
- - Implementing memory systems
20
- - Evaluating agent performance
21
- - Developing LLM-powered pipelines
22
-
23
- ## Core Principles
24
-
25
- 1. **Context quality > quantity** - High-signal tokens beat exhaustive content
26
- 2. **Attention is finite** - U-shaped curve favors beginning/end positions
27
- 3. **Progressive disclosure** - Load information just-in-time
28
- 4. **Isolation prevents degradation** - Partition work across sub-agents
29
- 5. **Measure before optimizing** - Know your baseline
30
-
31
- **IMPORTANT:**
32
- - Sacrifice grammar for the sake of concision.
33
- - Ensure token efficiency while maintaining high quality.
34
- - Pass these rules to subagents.
35
-
36
- ## Quick Reference
37
-
38
- | Topic | When to Use | Reference |
39
- |-------|-------------|-----------|
40
- | **Fundamentals** | Understanding context anatomy, attention mechanics | [context-fundamentals.md](./references/context-fundamentals.md) |
41
- | **Degradation** | Debugging failures, lost-in-middle, poisoning | [context-degradation.md](./references/context-degradation.md) |
42
- | **Optimization** | Compaction, masking, caching, partitioning | [context-optimization.md](./references/context-optimization.md) |
43
- | **Compression** | Long sessions, summarization strategies | [context-compression.md](./references/context-compression.md) |
44
- | **Memory** | Cross-session persistence, knowledge graphs | [memory-systems.md](./references/memory-systems.md) |
45
- | **Multi-Agent** | Coordination patterns, context isolation | [multi-agent-patterns.md](./references/multi-agent-patterns.md) |
46
- | **Evaluation** | Testing agents, LLM-as-Judge, metrics | [evaluation.md](./references/evaluation.md) |
47
- | **Tool Design** | Tool consolidation, description engineering | [tool-design.md](./references/tool-design.md) |
48
- | **Pipelines** | Project development, batch processing | [project-development.md](./references/project-development.md) |
49
- | **Runtime Awareness** | Usage limits, context window monitoring | [runtime-awareness.md](./references/runtime-awareness.md) |
50
-
51
- ## Key Metrics
52
-
53
- - **Token utilization**: Warning at 70%, trigger optimization at 80%
54
- - **Token variance**: Explains 80% of agent performance variance
55
- - **Multi-agent cost**: ~15x single agent baseline
56
- - **Compaction target**: 50-70% reduction, <5% quality loss
57
- - **Cache hit target**: 70%+ for stable workloads
58
-
59
- ## Four-Bucket Strategy
60
-
61
- 1. **Write**: Save context externally (scratchpads, files)
62
- 2. **Select**: Pull only relevant context (retrieval, filtering)
63
- 3. **Compress**: Reduce tokens while preserving info (summarization)
64
- 4. **Isolate**: Split across sub-agents (partitioning)
65
-
66
- ## Anti-Patterns
67
-
68
- - Exhaustive context over curated context
69
- - Critical info in middle positions
70
- - No compaction triggers before limits
71
- - Single agent for parallelizable tasks
72
- - Tools without clear descriptions
73
-
74
- ## Guidelines
75
-
76
- 1. Place critical info at beginning/end of context
77
- 2. Implement compaction at 70-80% utilization
78
- 3. Use sub-agents for context isolation, not role-play
79
- 4. Design tools with 4-question framework (what, when, inputs, returns)
80
- 5. Optimize for tokens-per-task, not tokens-per-request
81
- 6. Validate with probe-based evaluation
82
- 7. Monitor KV-cache hit rates in production
83
- 8. Start minimal, add complexity only when proven necessary
84
-
85
- ## Runtime Awareness
86
-
87
- The system automatically injects usage awareness via PostToolUse hook:
88
-
89
- ```xml
90
- <usage-awareness>
91
- AI Usage Limits: 5h=45%, 7d=32%
92
- Context Window Usage: 67%
93
- </usage-awareness>
94
- ```
95
-
96
- **Thresholds:**
97
- - 70%: WARNING - consider optimization/compaction
98
- - 90%: CRITICAL - immediate action needed
99
-
100
- **Data Sources:**
101
- - Usage limits: Anthropic OAuth API (`https://api.anthropic.com/api/oauth/usage`)
102
- - Context window: Statusline temp file (`/tmp/ck-context-{session_id}.json`)
103
-
104
- ## Scripts
105
-
106
- - [context_analyzer.py](./scripts/context_analyzer.py) - Context health analysis, degradation detection
107
- - [compression_evaluator.py](./scripts/compression_evaluator.py) - Compression quality evaluation
@@ -1,155 +0,0 @@
1
- ---
2
- name: cook
3
- description: "ALWAYS activate this skill before implementing EVERY feature, plan, or fix."
4
- argument-hint: "[task|plan-path] [--interactive|--fast|--parallel|--auto|--no-test]"
5
- ---
6
-
7
- # Cook - Smart Feature Implementation
8
-
9
- End-to-end implementation with automatic workflow detection.
10
-
11
- **Principles:** YAGNI, KISS, DRY | Token efficiency | Concise reports
12
-
13
- ## Usage
14
-
15
- ```
16
- /ck-cook <natural language task OR plan path>
17
- ```
18
-
19
- **IMPORTANT:** If no flag is provided, the skill will use the `interactive` mode by default for the workflow.
20
-
21
- **Optional flags to select the workflow mode:**
22
- - `--interactive`: Full workflow with user input (**default**)
23
- - `--fast`: Skip research, scout→plan→code
24
- - `--parallel`: Multi-agent execution
25
- - `--no-test`: Skip testing step
26
- - `--auto`: Auto-approve all steps
27
-
28
- **Example:**
29
- ```
30
- /ck-cook "Add user authentication to the app" --fast
31
- /ck-cook path/to/plan.md --auto
32
- ```
33
-
34
- <HARD-GATE>
35
- Do NOT write implementation code until a plan exists and has been reviewed.
36
- This applies regardless of task simplicity. "Simple" tasks are where unexamined assumptions waste the most time.
37
- Exception: `--fast` mode skips research but still requires a plan step.
38
- User override: If user explicitly says "just code it" or "skip planning", respect their instruction.
39
- </HARD-GATE>
40
-
41
- ## Anti-Rationalization
42
-
43
- | Thought | Reality |
44
- |---------|---------|
45
- | "This is too simple to plan" | Simple tasks have hidden complexity. Plan takes 30 seconds. |
46
- | "I already know how to do this" | Knowing ≠ planning. Write it down. |
47
- | "Let me just start coding" | Undisciplined action wastes tokens. Plan first. |
48
- | "The user wants speed" | Fastest path = plan → implement → done. Not: implement → debug → rewrite. |
49
- | "I'll plan as I go" | That's not planning, that's hoping. |
50
- | "Just this once" | Every skip is "just this once." No exceptions. |
51
-
52
- ## Smart Intent Detection
53
-
54
- | Input Pattern | Detected Mode | Behavior |
55
- |---------------|---------------|----------|
56
- | Path to `plan.md` or `phase-*.md` | code | Execute existing plan |
57
- | Contains "fast", "quick" | fast | Skip research, scout→plan→code |
58
- | Contains "trust me", "auto" | auto | Auto-approve all steps |
59
- | Lists 3+ features OR "parallel" | parallel | Multi-agent execution |
60
- | Contains "no test", "skip test" | no-test | Skip testing step |
61
- | Default | interactive | Full workflow with user input |
62
-
63
- See `references/intent-detection.md` for detection logic.
64
-
65
- ## Process Flow (Authoritative)
66
-
67
- ```mermaid
68
- flowchart TD
69
- A[Intent Detection] --> B{Has plan path?}
70
- B -->|Yes| F[Load Plan]
71
- B -->|No| C{Mode?}
72
- C -->|fast| D[Scout → Plan → Code]
73
- C -->|interactive/auto| E[Research → Review → Plan]
74
- E --> F
75
- D --> F
76
- F --> G[Review Gate]
77
- G -->|approved| H[Implement]
78
- G -->|rejected| E
79
- H --> I[Review Gate]
80
- I -->|approved| J{--no-test?}
81
- J -->|No| K[Test]
82
- J -->|Yes| L[Finalize]
83
- K --> L
84
- L --> M[Report + Journal]
85
- ```
86
-
87
- **This diagram is the authoritative workflow.** Prose sections below provide detail for each node. If prose conflicts with this flow, follow the diagram.
88
-
89
- ## Workflow Overview
90
-
91
- ```
92
- [Intent Detection] → [Research?] → [Review] → [Plan] → [Review] → [Implement] → [Review] → [Test?] → [Review] → [Finalize]
93
- ```
94
-
95
- **Default (non-auto):** Stops at `[Review]` gates for human approval before each major step.
96
- **Auto mode (`--auto`):** Skips human review gates, implements all phases continuously.
97
- **Tasks:** Utilize `TaskCreate`, `TaskUpdate`, `TaskGet`, `TaskList` during implementation step. **Fallback:** These are CLI-only tools — unavailable in VSCode extension. If they error, use `TodoWrite` for progress tracking instead.
98
-
99
- | Mode | Research | Testing | Review Gates | Phase Progression |
100
- |------|----------|---------|--------------|-------------------|
101
- | interactive | ✓ | ✓ | **User approval at each step** | One at a time |
102
- | auto | ✓ | ✓ | Auto if score≥9.5 | All at once (no stops) |
103
- | fast | ✗ | ✓ | **User approval at each step** | One at a time |
104
- | parallel | Optional | ✓ | **User approval at each step** | Parallel groups |
105
- | no-test | ✓ | ✗ | **User approval at each step** | One at a time |
106
- | code | ✗ | ✓ | **User approval at each step** | Per plan |
107
-
108
- ## Step Output Format
109
-
110
- ```
111
- ✓ Step [N]: [Brief status] - [Key metrics]
112
- ```
113
-
114
- ## Blocking Gates (Non-Auto Mode)
115
-
116
- Human review required at these checkpoints (skipped with `--auto`):
117
- - **Post-Research:** Review findings before planning
118
- - **Post-Plan:** Approve plan before implementation
119
- - **Post-Implementation:** Approve code before testing
120
- - **Post-Testing:** 100% pass + approve before finalize
121
-
122
- **Always enforced (all modes):**
123
- - **Testing:** 100% pass required (unless no-test mode)
124
- - **Code Review:** User approval OR auto-approve (score≥9.5, 0 critical)
125
- - **Finalize (MANDATORY - never skip):**
126
- 1. `project-manager` subagent → run full plan sync-back (all completed tasks/steps across all `phase-XX-*.md`, not only current phase), then update `plan.md` status/progress
127
- 2. `docs-manager` subagent → update `./docs` if changes warrant
128
- 3. `TaskUpdate` → mark all Tasks complete after sync-back verification (skip if Task tools unavailable)
129
- 4. Ask user if they want to commit via `git-manager` subagent
130
- 5. Run `/ck-journal` to write a concise technical journal entry upon completion
131
-
132
- ## Required Subagents (MANDATORY)
133
-
134
- | Phase | Subagent | Requirement |
135
- |-------|----------|-------------|
136
- | Research | `researcher` | Optional in fast/code |
137
- | Scout | `scout` | Optional in code |
138
- | Plan | `planner` | Optional in code |
139
- | UI Work | `ui-ux-designer` | If frontend work |
140
- | Testing | `tester`, `debugger` | **MUST** spawn |
141
- | Review | `code-reviewer` | **MUST** spawn |
142
- | Finalize | `project-manager`, `docs-manager`, `git-manager` | **MUST** spawn all 3 |
143
-
144
- **CRITICAL ENFORCEMENT:**
145
- - Steps 4, 5, 6 **MUST** use Task tool to spawn subagents
146
- - DO NOT implement testing, review, or finalization yourself - DELEGATE
147
- - If workflow ends with 0 Task tool calls, it is INCOMPLETE
148
- - Pattern: `Task(subagent_type="[type]", prompt="[task]", description="[brief]")`
149
-
150
- ## References
151
-
152
- - `references/intent-detection.md` - Detection rules and routing logic
153
- - `references/workflow-steps.md` - Detailed step definitions for all modes
154
- - `references/review-cycle.md` - Interactive and auto review processes
155
- - `references/subagent-patterns.md` - Subagent invocation patterns
@@ -1,192 +0,0 @@
1
- # Unified Workflow Steps
2
-
3
- All modes share core steps with mode-specific variations.
4
-
5
- **Task Tool Fallback:** `TaskCreate`/`TaskUpdate`/`TaskGet`/`TaskList` are CLI-only — unavailable in VSCode extension. If they error, use `TodoWrite` for progress tracking. All workflow steps remain functional without Task tools.
6
-
7
- ## Step 0: Intent Detection & Setup
8
-
9
- 1. Parse input with `intent-detection.md` rules
10
- 2. Log detected mode: `✓ Step 0: Mode [X] - [reason]`
11
- 3. If mode=code: detect plan path, set active plan
12
- 4. Use `TaskCreate` to create workflow step tasks (with dependencies if complex)
13
-
14
- **Output:** `✓ Step 0: Mode [interactive|auto|fast|parallel|no-test|code] - [detection reason]`
15
-
16
- ## Step 1: Research (skip if fast/code mode)
17
-
18
- **Interactive/Auto:**
19
- - Spawn multiple `researcher` agents in parallel
20
- - Use `/ck-scout ext` or `scout` agent for codebase search
21
- - Keep reports ≤150 lines
22
-
23
- **Parallel:**
24
- - Optional: max 2 researchers if complex
25
-
26
- **Output:** `✓ Step 1: Research complete - [N] reports gathered`
27
-
28
- ### [Review Gate 1] Post-Research (skip if auto mode)
29
- - Present research summary to user
30
- - Use asking the user to ask: "Proceed to planning?" / "Request more research" / "Abort"
31
- - **Auto mode:** Skip this gate
32
-
33
- ## Step 2: Planning
34
-
35
- **Interactive/Auto/No-test:**
36
- - Use `planner` agent with research context
37
- - Create `plan.md` + `phase-XX-*.md` files
38
-
39
- **Fast:**
40
- - Use `/ck-plan --fast` with scout results only
41
- - Minimal planning, focus on action
42
-
43
- **Parallel:**
44
- - Use `/ck-plan --parallel` for dependency graph + file ownership matrix
45
-
46
- **Code:**
47
- - Skip - plan already exists
48
- - Parse existing plan for phases
49
-
50
- **Output:** `✓ Step 2: Plan created - [N] phases`
51
-
52
- ### [Review Gate 2] Post-Plan (skip if auto mode)
53
- - Present plan overview with phases
54
- - Use asking the user to ask: "Validate the plan or approve plan to start implementation?" - "Validate" / "Approve" / "Abort" / "Other" ("Request revisions")
55
- - "Validate": run `/ck-plan validate` skill invocation
56
- - "Approve": continue to implementation
57
- - "Abort": stop the workflow
58
- - "Other": revise the plan based on user's feedback
59
- - **Auto mode:** Skip this gate
60
-
61
- ## Step 3: Implementation
62
-
63
- **IMPORTANT:**
64
- 1. `TaskList` first — check for existing tasks (hydrated by planning skill in same session)
65
- 2. If tasks exist → pick them up, skip re-creation
66
- 3. If no tasks → read plan phases, `TaskCreate` for each unchecked `[ ]` item with priority order and metadata (`phase`, `planDir`, `phaseFile`)
67
- 4. Tasks can be blocked by other tasks via `addBlockedBy`
68
-
69
- **All modes:**
70
- - Use `TaskUpdate` to mark tasks as `in_progress` immediately.
71
- - Execute phase tasks sequentially (Step 3.1, 3.2, etc.)
72
- - Use `ui-ux-designer` for frontend
73
- - Use `ai-multimodal` (if available) for image assets
74
- - Run type checking after each file
75
-
76
- **Parallel mode:**
77
- - Utilize all tools of Tasks: `TaskCreate`, `TaskUpdate`, `TaskGet` and `TaskList`
78
- - Launch multiple `fullstack-developer` agents
79
- - When agents pick up a task, use `TaskUpdate` to assign task to agent and mark tasks as `in_progress` immediately.
80
- - Respect file ownership boundaries
81
- - Wait for parallel group before next
82
-
83
- **Output:** `✓ Step 3: Implemented [N] files - [X/Y] tasks complete`
84
-
85
- ### [Review Gate 3] Post-Implementation (skip if auto mode)
86
- - Present implementation summary (files changed, key changes)
87
- - Use asking the user to ask: "Proceed to testing?" / "Request implementation changes" / "Abort"
88
- - **Auto mode:** Skip this gate
89
-
90
- ## Step 4: Testing (skip if no-test mode)
91
-
92
- **All modes (except no-test):**
93
- - Write tests: happy path, edge cases, errors
94
- - **MUST** spawn `tester` subagent: `Task(subagent_type="tester", prompt="Run test suite", description="Run tests")`
95
- - If failures: **MUST** spawn `debugger` subagent → fix → repeat
96
- - **Forbidden:** fake mocks, commented tests, changed assertions, skipping subagent delegation
97
-
98
- **Output:** `✓ Step 4: Tests [X/X passed] - tester subagent invoked`
99
-
100
- ### [Review Gate 4] Post-Testing (skip if auto mode)
101
- - Present test results summary
102
- - Use asking the user to ask: "Proceed to code review?" / "Request test fixes" / "Abort"
103
- - **Auto mode:** Skip this gate
104
-
105
- ## Step 5: Code Review
106
-
107
- **All modes - MANDATORY subagent:**
108
- - **MUST** spawn `code-reviewer` subagent: `Task(subagent_type="code-reviewer", prompt="Review changes. Return score, critical issues, warnings.", description="Code review")`
109
- - **DO NOT** review code yourself - delegate to subagent
110
-
111
- **Interactive/Parallel/Code/No-test:**
112
- - Interactive cycle (max 3): see `review-cycle.md`
113
- - Requires user approval
114
-
115
- **Auto:**
116
- - Auto-approve if score≥9.5 AND 0 critical
117
- - Auto-fix critical (max 3 cycles)
118
- - Escalate to user after 3 failed cycles
119
-
120
- **Fast:**
121
- - Simplified review, no fix loop
122
- - User approves or aborts
123
-
124
- **Output:** `✓ Step 5: Review [score]/10 - [Approved|Auto-approved] - code-reviewer subagent invoked`
125
-
126
- ## Step 6: Finalize
127
-
128
- **All modes - MANDATORY subagents (NON-NEGOTIABLE):**
129
- 1. **MUST** spawn these subagents in parallel:
130
- - `Task(subagent_type="project-manager", prompt="Run full sync-back for [plan-path]: reconcile all completed Tasks with all phase files, backfill stale completed checkboxes across every phase, then update plan.md frontmatter/table progress. Do NOT only mark current phase.", description="Update plan")`
131
- - `Task(subagent_type="docs-manager", prompt="Update docs for changes.", description="Update docs")`
132
- 2. Project-manager sync-back MUST include:
133
-
134
- ### Status Sync (Finalize)
135
-
136
- Use CLI commands for deterministic status updates:
137
-
138
- ```bash
139
- # Mark completed phases
140
- ck plan check <phase-id>
141
-
142
- # Mark in-progress phases
143
- ck plan check <phase-id> --start
144
-
145
- # Revert if needed
146
- ck plan uncheck <phase-id>
147
- ```
148
-
149
- **Fallback:** If `ck` is not available, edit plan.md directly —
150
- only change the Status column cell, preserve table structure.
151
- - Sweep all `phase-XX-*.md` files in the plan directory.
152
- - Mark every completed item `[ ] → [x]` based on completed tasks (including earlier phases finished before current phase).
153
- - Update `plan.md` status/progress (`pending`/`in-progress`/`completed`) from actual checkbox state.
154
- - Return unresolved mappings if any completed task cannot be matched to a phase file.
155
- 3. Use `TaskUpdate` to mark Tasks complete after sync-back confirmation.
156
- 4. Onboarding check (API keys, env vars)
157
- 5. **MUST** spawn git subagent: `Task(subagent_type="git-manager", prompt="Stage and commit changes", description="Commit")`
158
-
159
- **CRITICAL:** Step 6 is INCOMPLETE without spawning all 3 subagents. DO NOT skip subagent delegation.
160
-
161
- **Auto mode:** Continue to next phase automatically, start from **Step 3**.
162
- **Others:** Ask user before next phase
163
-
164
- **Output:** `✓ Step 6: Finalized - 3 subagents invoked - Full-plan sync-back completed - Committed`
165
-
166
- ## Mode-Specific Flow Summary
167
-
168
- Legend: `[R]` = Review Gate (human approval required)
169
-
170
- ```
171
- interactive: 0 → 1 → [R] → 2 → [R] → 3 → [R] → 4 → [R] → 5(user) → 6
172
- auto: 0 → 1 → 2 → 3 → 4 → 5(auto) → 6 → next phase (NO stops)
173
- fast: 0 → skip → 2(fast) → [R] → 3 → [R] → 4 → [R] → 5(simple) → 6
174
- parallel: 0 → 1? → [R] → 2(parallel) → [R] → 3(multi-agent) → [R] → 4 → [R] → 5(user) → 6
175
- no-test: 0 → 1 → [R] → 2 → [R] → 3 → [R] → skip → 5(user) → 6
176
- code: 0 → skip → skip → 3 → [R] → 4 → [R] → 5(user) → 6
177
- ```
178
-
179
- **Key difference:** `auto` mode is the ONLY mode that skips all review gates.
180
-
181
- ## Critical Rules
182
-
183
- - Never skip steps without mode justification
184
- - **MANDATORY SUBAGENT DELEGATION:** Steps 4, 5, 6 MUST spawn subagents via Task tool. DO NOT implement directly.
185
- - Step 4: `tester` (and `debugger` if failures)
186
- - Step 5: `code-reviewer`
187
- - Step 6: `project-manager`, `docs-manager`, `git-manager`
188
- - Use `TaskCreate` to create Tasks for each unchecked item with priority order and dependencies (or `TodoWrite` if Task tools unavailable).
189
- - Use `TaskUpdate` to mark Tasks `in_progress` when picking up a task (skip if Task tools unavailable).
190
- - Use `TaskUpdate` to mark Tasks `complete` immediately after finalizing the task (skip if Task tools unavailable).
191
- - All step outputs follow format: `✓ Step [N]: [status] - [metrics]`
192
- - **VALIDATION:** If Task tool calls = 0 at end of workflow, the workflow is INCOMPLETE.
@@ -1,84 +0,0 @@
1
- ---
2
- name: databases
3
- description: Design schemas, write queries for MongoDB and PostgreSQL. Use for database design, SQL/NoSQL queries, aggregation pipelines, indexes, migrations, replication, performance optimization, psql CLI.
4
- license: MIT
5
- argument-hint: "[query or schema task]"
6
- ---
7
-
8
- # Databases Skill
9
-
10
- Unified guide for working with MongoDB (document-oriented) and PostgreSQL (relational) databases. Choose the right database for your use case and master both systems.
11
-
12
- ## When to Use This Skill
13
-
14
- Use when:
15
- - Designing database schemas and data models
16
- - Writing queries (SQL or MongoDB query language)
17
- - Building aggregation pipelines or complex joins
18
- - Optimizing indexes and query performance
19
- - Implementing database migrations
20
- - Setting up replication, sharding, or clustering
21
- - Configuring backups and disaster recovery
22
- - Managing database users and permissions
23
- - Analyzing slow queries and performance issues
24
- - Administering production database deployments
25
-
26
- ## Reference Navigation
27
-
28
- ### Database Design
29
- - **[db-design.md](references/db-design.md)** - Activate when user requests: Database/table design for transactional (OLTP), analytics (OLAP), create or extend schema, design fact/dimension tables, analyze/review CSV/JSON/SQL files to create tables, or need advice on data storage structure.
30
-
31
- ### MongoDB References
32
- - **[mongodb-crud.md](references/mongodb-crud.md)** - CRUD operations, query operators, atomic updates
33
- - **[mongodb-aggregation.md](references/mongodb-aggregation.md)** - Aggregation pipeline, stages, operators, patterns
34
- - **[mongodb-indexing.md](references/mongodb-indexing.md)** - Index types, compound indexes, performance optimization
35
- - **[mongodb-atlas.md](references/mongodb-atlas.md)** - Atlas cloud setup, clusters, monitoring, search
36
-
37
- ### PostgreSQL References
38
- - **[postgresql-queries.md](references/postgresql-queries.md)** - SELECT, JOINs, subqueries, CTEs, window functions
39
- - **[postgresql-psql-cli.md](references/postgresql-psql-cli.md)** - psql commands, meta-commands, scripting
40
- - **[postgresql-performance.md](references/postgresql-performance.md)** - EXPLAIN, query optimization, vacuum, indexes
41
- - **[postgresql-administration.md](references/postgresql-administration.md)** - User management, backups, replication, maintenance
42
-
43
- ## Python Utilities
44
-
45
- Database utility scripts in `scripts/`:
46
- - **db_migrate.py** - Generate and apply migrations for both databases (MongoDB and PostgreSQL)
47
- - **db_backup.py** - Backup and restore MongoDB and PostgreSQL
48
- - **db_performance_check.py** - Analyze slow queries and recommend indexes
49
-
50
- ```bash
51
- # Generate migration
52
- python scripts/db_migrate.py --db mongodb --generate "add_user_index"
53
-
54
- # Run backup
55
- python scripts/db_backup.py --db postgres --output /backups/
56
-
57
- # Check performance
58
- python scripts/db_performance_check.py --db mongodb --threshold 100ms
59
- ```
60
-
61
- ## Best Practices
62
-
63
- **MongoDB:**
64
- - Use embedded documents for 1-to-few relationships
65
- - Reference documents for 1-to-many or many-to-many
66
- - Index frequently queried fields
67
- - Use aggregation pipeline for complex transformations
68
- - Enable authentication and TLS in production
69
- - Use Atlas for managed hosting
70
-
71
- **PostgreSQL:**
72
- - Normalize schema to 3NF, denormalize for performance
73
- - Use foreign keys for referential integrity
74
- - Index foreign keys and frequently filtered columns
75
- - Use EXPLAIN ANALYZE to optimize queries
76
- - Regular VACUUM and ANALYZE maintenance
77
- - Connection pooling (pgBouncer) for web apps
78
-
79
- ## Resources
80
-
81
- - MongoDB: https://www.mongodb.com/docs/
82
- - PostgreSQL: https://www.postgresql.org/docs/
83
- - MongoDB University: https://learn.mongodb.com/
84
- - PostgreSQL Tutorial: https://www.postgresqltutorial.com/
@@ -1,120 +0,0 @@
1
- ---
2
- name: debug
3
- description: "Debug systematically with root cause analysis before fixes. Use for bugs, test failures, unexpected behavior, performance issues, call stack tracing, multi-layer validation, log analysis, CI/CD failures, database diagnostics, system investigation."
4
- languages: all
5
- argument-hint: "[error or issue description]"
6
- ---
7
-
8
- # Debugging & System Investigation
9
-
10
- Comprehensive framework combining systematic debugging, root cause tracing, defense-in-depth validation, verification protocols, and system-level investigation (logs, CI/CD, databases, performance).
11
-
12
- ## Core Principle
13
-
14
- **NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST**
15
-
16
- Random fixes waste time and create new bugs. Find root cause, fix at source, validate at every layer, verify before claiming success.
17
-
18
- ## When to Use
19
-
20
- **Code-level:** Test failures, bugs, unexpected behavior, build failures, integration problems
21
- **System-level:** Server errors, CI/CD pipeline failures, performance degradation, database issues, log analysis
22
- **Always:** Before claiming work complete
23
-
24
- ## Techniques
25
-
26
- ### 1. Systematic Debugging (`references/systematic-debugging.md`)
27
-
28
- Four-phase framework: Root Cause Investigation → Pattern Analysis → Hypothesis Testing → Implementation. Complete each phase before proceeding. No fixes without Phase 1.
29
-
30
- **Load when:** Any bug/issue requiring investigation and fix
31
-
32
- ### 2. Root Cause Tracing (`references/root-cause-tracing.md`)
33
-
34
- Trace bugs backward through call stack to find original trigger. Fix at source, not symptom. Includes `scripts/find-polluter.sh` for bisecting test pollution.
35
-
36
- **Load when:** Error deep in call stack, unclear where invalid data originated
37
-
38
- ### 3. Defense-in-Depth (`references/defense-in-depth.md`)
39
-
40
- Validate at every layer: Entry validation → Business logic → Environment guards → Debug instrumentation
41
-
42
- **Load when:** After finding root cause, need comprehensive validation
43
-
44
- ### 4. Verification (`references/verification.md`)
45
-
46
- **Iron law:** NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE. Run command. Read output. Then claim result.
47
-
48
- **Load when:** About to claim work complete, fixed, or passing
49
-
50
- ### 5. Investigation Methodology (`references/investigation-methodology.md`)
51
-
52
- Five-step structured investigation for system-level issues: Initial Assessment → Data Collection → Analysis → Root Cause ID → Solution Development
53
-
54
- **Load when:** Server incidents, system behavior analysis, multi-component failures
55
-
56
- ### 6. Log & CI/CD Analysis (`references/log-and-ci-analysis.md`)
57
-
58
- Collect and analyze logs from servers, CI/CD pipelines (GitHub Actions), application layers. Tools: `gh` CLI, structured log queries, correlation across sources.
59
-
60
- **Load when:** CI/CD pipeline failures, server errors, deployment issues
61
-
62
- ### 7. Performance Diagnostics (`references/performance-diagnostics.md`)
63
-
64
- Identify bottlenecks, analyze query performance, develop optimization strategies. Covers database queries, API response times, resource utilization.
65
-
66
- **Load when:** Performance degradation, slow queries, high latency, resource exhaustion
67
-
68
- ### 8. Reporting Standards (`references/reporting-standards.md`)
69
-
70
- Structured diagnostic reports: Executive Summary → Technical Analysis → Recommendations → Evidence
71
-
72
- **Load when:** Need to produce investigation report or diagnostic summary
73
-
74
- ### 9. Task Management (`references/task-management-debugging.md`)
75
-
76
- Track investigation pipelines via Native Tasks (TaskCreate, TaskUpdate, TaskList). Hydration pattern for multi-step investigations with dependency chains and parallel evidence collection. **Fallback:** Task tools are CLI-only — if unavailable (VSCode extension), use `TodoWrite` for tracking. Debug workflow remains fully functional.
77
-
78
- **Load when:** Multi-component investigation (3+ steps), parallel log collection, coordinating debugger subagents
79
-
80
- ### 10. Frontend Verification (`references/frontend-verification.md`)
81
-
82
- Visual verification of frontend implementations via Chrome MCP (if available) or `chrome-devtools` (if available) skill fallback. Detect if frontend-related → check Chrome MCP availability → screenshot + console error check → report. Skip if not frontend.
83
-
84
- **Load when:** Implementation touches frontend files (tsx/jsx/vue/svelte/html/css), UI bugs, visual regressions
85
-
86
- ## Quick Reference
87
-
88
- ```
89
- Code bug → systematic-debugging.md (Phase 1-4)
90
- Deep in stack → root-cause-tracing.md (trace backward)
91
- Found cause → defense-in-depth.md (add layers)
92
- Claiming done → verification.md (verify first)
93
-
94
- System issue → investigation-methodology.md (5 steps)
95
- CI/CD failure → log-and-ci-analysis.md
96
- Slow system → performance-diagnostics.md
97
- Need report → reporting-standards.md
98
-
99
- Frontend fix → frontend-verification.md (Chrome/devtools)
100
- ```
101
-
102
- ## Tools Integration
103
-
104
- - **Database:** `psql` for PostgreSQL queries and diagnostics
105
- - **CI/CD:** `gh` CLI for GitHub Actions logs and pipeline debugging
106
- - **Codebase:** `docs-seeker` skill for package/plugin docs; `repomix` skill for codebase summary
107
- - **Scouting:** `/ck-scout` or `/ck-scout ext` for finding relevant files
108
- - **Frontend:** Chrome browser or `chrome-devtools` (if available) skill for visual verification (screenshots, console, network)
109
- - **Skills:** Activate `problem-solving` skill when stuck on complex issues
110
-
111
- ## Red Flags
112
-
113
- Stop and follow process if thinking:
114
- - "Quick fix for now, investigate later"
115
- - "Just try changing X and see if it works"
116
- - "It's probably X, let me fix that"
117
- - "Should work now" / "Seems fixed"
118
- - "Tests pass, we're done"
119
-
120
- **All mean:** Return to systematic process.