devflow-kit 0.9.0 โ†’ 1.0.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 (397) hide show
  1. package/CHANGELOG.md +167 -29
  2. package/LICENSE +1 -1
  3. package/README.md +179 -310
  4. package/dist/cli.js +3 -1
  5. package/dist/commands/init.d.ts +21 -0
  6. package/dist/commands/init.js +311 -576
  7. package/dist/commands/list.d.ts +3 -0
  8. package/dist/commands/list.js +20 -0
  9. package/dist/commands/uninstall.d.ts +10 -0
  10. package/dist/commands/uninstall.js +351 -78
  11. package/dist/plugins.d.ts +46 -0
  12. package/dist/plugins.js +162 -0
  13. package/dist/utils/cli.d.ts +5 -0
  14. package/dist/utils/cli.js +14 -0
  15. package/dist/utils/installer.d.ts +41 -0
  16. package/dist/utils/installer.js +177 -0
  17. package/dist/utils/paths.d.ts +10 -0
  18. package/dist/utils/paths.js +23 -3
  19. package/dist/utils/post-install.d.ts +68 -0
  20. package/dist/utils/post-install.js +427 -0
  21. package/dist/utils/safe-delete-install.d.ts +22 -0
  22. package/dist/utils/safe-delete-install.js +156 -0
  23. package/dist/utils/safe-delete.d.ts +12 -0
  24. package/dist/utils/safe-delete.js +83 -0
  25. package/package.json +18 -8
  26. package/plugins/devflow-audit-claude/.claude-plugin/plugin.json +7 -0
  27. package/plugins/devflow-audit-claude/README.md +46 -0
  28. package/plugins/devflow-audit-claude/agents/claude-md-auditor.md +134 -0
  29. package/plugins/devflow-audit-claude/commands/audit-claude.md +85 -0
  30. package/plugins/devflow-code-review/.claude-plugin/plugin.json +31 -0
  31. package/plugins/devflow-code-review/README.md +73 -0
  32. package/plugins/devflow-code-review/agents/git.md +272 -0
  33. package/plugins/devflow-code-review/agents/reviewer.md +119 -0
  34. package/plugins/devflow-code-review/agents/synthesizer.md +204 -0
  35. package/plugins/devflow-code-review/commands/code-review-teams.md +262 -0
  36. package/plugins/devflow-code-review/commands/code-review.md +141 -0
  37. package/plugins/devflow-code-review/skills/accessibility/SKILL.md +229 -0
  38. package/plugins/devflow-code-review/skills/accessibility/references/detection.md +171 -0
  39. package/plugins/devflow-code-review/skills/accessibility/references/patterns.md +670 -0
  40. package/plugins/devflow-code-review/skills/accessibility/references/violations.md +419 -0
  41. package/plugins/devflow-code-review/skills/agent-teams/SKILL.md +124 -0
  42. package/plugins/devflow-code-review/skills/agent-teams/references/cleanup.md +104 -0
  43. package/plugins/devflow-code-review/skills/agent-teams/references/communication.md +122 -0
  44. package/plugins/devflow-code-review/skills/agent-teams/references/team-patterns.md +217 -0
  45. package/plugins/devflow-code-review/skills/architecture-patterns/SKILL.md +153 -0
  46. package/plugins/devflow-code-review/skills/architecture-patterns/references/detection.md +337 -0
  47. package/plugins/devflow-code-review/skills/architecture-patterns/references/patterns.md +873 -0
  48. package/plugins/devflow-code-review/skills/architecture-patterns/references/violations.md +575 -0
  49. package/plugins/devflow-code-review/skills/complexity-patterns/SKILL.md +143 -0
  50. package/plugins/devflow-code-review/skills/complexity-patterns/references/detection.md +264 -0
  51. package/plugins/devflow-code-review/skills/complexity-patterns/references/patterns.md +487 -0
  52. package/plugins/devflow-code-review/skills/complexity-patterns/references/violations.md +361 -0
  53. package/plugins/devflow-code-review/skills/consistency-patterns/SKILL.md +140 -0
  54. package/plugins/devflow-code-review/skills/consistency-patterns/references/detection.md +207 -0
  55. package/plugins/devflow-code-review/skills/consistency-patterns/references/patterns.md +202 -0
  56. package/plugins/devflow-code-review/skills/consistency-patterns/references/violations.md +213 -0
  57. package/plugins/devflow-code-review/skills/database-patterns/SKILL.md +134 -0
  58. package/plugins/devflow-code-review/skills/database-patterns/references/detection.md +208 -0
  59. package/plugins/devflow-code-review/skills/database-patterns/references/patterns.md +394 -0
  60. package/plugins/devflow-code-review/skills/database-patterns/references/violations.md +332 -0
  61. package/plugins/devflow-code-review/skills/dependencies-patterns/SKILL.md +141 -0
  62. package/plugins/devflow-code-review/skills/dependencies-patterns/references/detection.md +181 -0
  63. package/plugins/devflow-code-review/skills/dependencies-patterns/references/patterns.md +225 -0
  64. package/plugins/devflow-code-review/skills/dependencies-patterns/references/violations.md +247 -0
  65. package/plugins/devflow-code-review/skills/documentation-patterns/SKILL.md +125 -0
  66. package/plugins/devflow-code-review/skills/documentation-patterns/references/detection.md +190 -0
  67. package/plugins/devflow-code-review/skills/documentation-patterns/references/patterns.md +189 -0
  68. package/plugins/devflow-code-review/skills/documentation-patterns/references/violations.md +163 -0
  69. package/plugins/devflow-code-review/skills/frontend-design/SKILL.md +254 -0
  70. package/plugins/devflow-code-review/skills/frontend-design/references/detection.md +184 -0
  71. package/plugins/devflow-code-review/skills/frontend-design/references/patterns.md +511 -0
  72. package/plugins/devflow-code-review/skills/frontend-design/references/violations.md +453 -0
  73. package/plugins/devflow-code-review/skills/performance-patterns/SKILL.md +154 -0
  74. package/plugins/devflow-code-review/skills/performance-patterns/references/detection.md +351 -0
  75. package/plugins/devflow-code-review/skills/performance-patterns/references/patterns.md +503 -0
  76. package/plugins/devflow-code-review/skills/performance-patterns/references/violations.md +354 -0
  77. package/plugins/devflow-code-review/skills/react/SKILL.md +276 -0
  78. package/plugins/devflow-code-review/skills/react/references/patterns.md +1331 -0
  79. package/plugins/devflow-code-review/skills/react/references/violations.md +565 -0
  80. package/plugins/devflow-code-review/skills/regression-patterns/SKILL.md +146 -0
  81. package/plugins/devflow-code-review/skills/regression-patterns/references/detection.md +237 -0
  82. package/plugins/devflow-code-review/skills/regression-patterns/references/patterns.md +226 -0
  83. package/plugins/devflow-code-review/skills/regression-patterns/references/violations.md +225 -0
  84. package/plugins/devflow-code-review/skills/review-methodology/SKILL.md +119 -0
  85. package/plugins/devflow-code-review/skills/review-methodology/references/patterns.md +186 -0
  86. package/plugins/devflow-code-review/skills/review-methodology/references/report-template.md +142 -0
  87. package/plugins/devflow-code-review/skills/review-methodology/references/violations.md +125 -0
  88. package/plugins/devflow-code-review/skills/security-patterns/SKILL.md +156 -0
  89. package/plugins/devflow-code-review/skills/security-patterns/references/detection.md +287 -0
  90. package/plugins/devflow-code-review/skills/security-patterns/references/patterns.md +507 -0
  91. package/plugins/devflow-code-review/skills/security-patterns/references/violations.md +237 -0
  92. package/plugins/devflow-code-review/skills/test-patterns/SKILL.md +183 -0
  93. package/plugins/devflow-code-review/skills/test-patterns/references/detection.md +149 -0
  94. package/plugins/devflow-code-review/skills/test-patterns/references/patterns.md +220 -0
  95. package/plugins/devflow-code-review/skills/test-patterns/references/report-template.md +108 -0
  96. package/plugins/devflow-code-review/skills/test-patterns/references/violations.md +221 -0
  97. package/plugins/devflow-core-skills/.claude-plugin/plugin.json +27 -0
  98. package/plugins/devflow-core-skills/README.md +50 -0
  99. package/plugins/devflow-core-skills/skills/accessibility/SKILL.md +229 -0
  100. package/plugins/devflow-core-skills/skills/accessibility/references/detection.md +171 -0
  101. package/plugins/devflow-core-skills/skills/accessibility/references/patterns.md +670 -0
  102. package/plugins/devflow-core-skills/skills/accessibility/references/violations.md +419 -0
  103. package/plugins/devflow-core-skills/skills/core-patterns/SKILL.md +162 -0
  104. package/plugins/devflow-core-skills/skills/core-patterns/references/checklist.md +276 -0
  105. package/plugins/devflow-core-skills/skills/core-patterns/references/code-smell-violations.md +144 -0
  106. package/plugins/devflow-core-skills/skills/core-patterns/references/detection.md +303 -0
  107. package/plugins/devflow-core-skills/skills/core-patterns/references/patterns.md +576 -0
  108. package/plugins/devflow-core-skills/skills/core-patterns/references/violations.md +369 -0
  109. package/plugins/devflow-core-skills/skills/docs-framework/SKILL.md +134 -0
  110. package/plugins/devflow-core-skills/skills/docs-framework/references/patterns.md +346 -0
  111. package/plugins/devflow-core-skills/skills/docs-framework/references/violations.md +221 -0
  112. package/plugins/devflow-core-skills/skills/frontend-design/SKILL.md +254 -0
  113. package/plugins/devflow-core-skills/skills/frontend-design/references/detection.md +184 -0
  114. package/plugins/devflow-core-skills/skills/frontend-design/references/patterns.md +511 -0
  115. package/plugins/devflow-core-skills/skills/frontend-design/references/violations.md +453 -0
  116. package/plugins/devflow-core-skills/skills/git-safety/SKILL.md +122 -0
  117. package/plugins/devflow-core-skills/skills/git-safety/references/detection.md +290 -0
  118. package/plugins/devflow-core-skills/skills/git-safety/references/patterns.md +289 -0
  119. package/plugins/devflow-core-skills/skills/git-safety/references/violations.md +18 -0
  120. package/plugins/devflow-core-skills/skills/git-workflow/SKILL.md +158 -0
  121. package/plugins/devflow-core-skills/skills/git-workflow/references/commit-patterns.md +115 -0
  122. package/plugins/devflow-core-skills/skills/git-workflow/references/commit-violations.md +77 -0
  123. package/plugins/devflow-core-skills/skills/git-workflow/references/pr-patterns.md +127 -0
  124. package/plugins/devflow-core-skills/skills/git-workflow/references/pr-violations.md +96 -0
  125. package/plugins/devflow-core-skills/skills/github-patterns/SKILL.md +153 -0
  126. package/plugins/devflow-core-skills/skills/github-patterns/references/patterns.md +572 -0
  127. package/plugins/devflow-core-skills/skills/github-patterns/references/violations.md +298 -0
  128. package/plugins/devflow-core-skills/skills/input-validation/SKILL.md +148 -0
  129. package/plugins/devflow-core-skills/skills/input-validation/references/detection.md +283 -0
  130. package/plugins/devflow-core-skills/skills/input-validation/references/patterns.md +361 -0
  131. package/plugins/devflow-core-skills/skills/input-validation/references/violations.md +224 -0
  132. package/plugins/devflow-core-skills/skills/react/SKILL.md +276 -0
  133. package/plugins/devflow-core-skills/skills/react/references/patterns.md +1331 -0
  134. package/plugins/devflow-core-skills/skills/react/references/violations.md +565 -0
  135. package/plugins/devflow-core-skills/skills/test-patterns/SKILL.md +183 -0
  136. package/plugins/devflow-core-skills/skills/test-patterns/references/detection.md +149 -0
  137. package/plugins/devflow-core-skills/skills/test-patterns/references/patterns.md +220 -0
  138. package/plugins/devflow-core-skills/skills/test-patterns/references/report-template.md +108 -0
  139. package/plugins/devflow-core-skills/skills/test-patterns/references/violations.md +221 -0
  140. package/plugins/devflow-core-skills/skills/typescript/SKILL.md +176 -0
  141. package/plugins/devflow-core-skills/skills/typescript/references/patterns.md +1105 -0
  142. package/plugins/devflow-core-skills/skills/typescript/references/violations.md +433 -0
  143. package/plugins/devflow-debug/.claude-plugin/plugin.json +18 -0
  144. package/plugins/devflow-debug/README.md +65 -0
  145. package/plugins/devflow-debug/agents/git.md +272 -0
  146. package/plugins/devflow-debug/commands/debug-teams.md +231 -0
  147. package/plugins/devflow-debug/commands/debug.md +160 -0
  148. package/plugins/devflow-debug/skills/agent-teams/SKILL.md +124 -0
  149. package/plugins/devflow-debug/skills/agent-teams/references/cleanup.md +104 -0
  150. package/plugins/devflow-debug/skills/agent-teams/references/communication.md +122 -0
  151. package/plugins/devflow-debug/skills/agent-teams/references/team-patterns.md +217 -0
  152. package/plugins/devflow-debug/skills/git-safety/SKILL.md +122 -0
  153. package/plugins/devflow-debug/skills/git-safety/references/detection.md +290 -0
  154. package/plugins/devflow-debug/skills/git-safety/references/patterns.md +289 -0
  155. package/plugins/devflow-debug/skills/git-safety/references/violations.md +18 -0
  156. package/plugins/devflow-implement/.claude-plugin/plugin.json +21 -0
  157. package/plugins/devflow-implement/README.md +71 -0
  158. package/plugins/devflow-implement/agents/coder.md +122 -0
  159. package/plugins/devflow-implement/agents/git.md +272 -0
  160. package/plugins/devflow-implement/agents/scrutinizer.md +80 -0
  161. package/plugins/devflow-implement/agents/shepherd.md +94 -0
  162. package/plugins/devflow-implement/agents/simplifier.md +62 -0
  163. package/plugins/devflow-implement/agents/skimmer.md +88 -0
  164. package/plugins/devflow-implement/agents/synthesizer.md +204 -0
  165. package/plugins/devflow-implement/agents/validator.md +86 -0
  166. package/plugins/devflow-implement/commands/implement-teams.md +608 -0
  167. package/plugins/devflow-implement/commands/implement.md +426 -0
  168. package/plugins/devflow-implement/skills/accessibility/SKILL.md +229 -0
  169. package/plugins/devflow-implement/skills/accessibility/references/detection.md +171 -0
  170. package/plugins/devflow-implement/skills/accessibility/references/patterns.md +670 -0
  171. package/plugins/devflow-implement/skills/accessibility/references/violations.md +419 -0
  172. package/plugins/devflow-implement/skills/agent-teams/SKILL.md +124 -0
  173. package/plugins/devflow-implement/skills/agent-teams/references/cleanup.md +104 -0
  174. package/plugins/devflow-implement/skills/agent-teams/references/communication.md +122 -0
  175. package/plugins/devflow-implement/skills/agent-teams/references/team-patterns.md +217 -0
  176. package/plugins/devflow-implement/skills/frontend-design/SKILL.md +254 -0
  177. package/plugins/devflow-implement/skills/frontend-design/references/detection.md +184 -0
  178. package/plugins/devflow-implement/skills/frontend-design/references/patterns.md +511 -0
  179. package/plugins/devflow-implement/skills/frontend-design/references/violations.md +453 -0
  180. package/plugins/devflow-implement/skills/implementation-patterns/SKILL.md +162 -0
  181. package/plugins/devflow-implement/skills/implementation-patterns/references/patterns.md +1063 -0
  182. package/plugins/devflow-implement/skills/implementation-patterns/references/violations.md +483 -0
  183. package/plugins/devflow-implement/skills/self-review/SKILL.md +149 -0
  184. package/plugins/devflow-implement/skills/self-review/references/patterns.md +405 -0
  185. package/plugins/devflow-implement/skills/self-review/references/report-template.md +253 -0
  186. package/plugins/devflow-implement/skills/self-review/references/violations.md +308 -0
  187. package/plugins/devflow-resolve/.claude-plugin/plugin.json +19 -0
  188. package/plugins/devflow-resolve/README.md +65 -0
  189. package/plugins/devflow-resolve/agents/git.md +272 -0
  190. package/plugins/devflow-resolve/agents/resolver.md +131 -0
  191. package/plugins/devflow-resolve/agents/simplifier.md +62 -0
  192. package/plugins/devflow-resolve/commands/resolve-teams.md +298 -0
  193. package/plugins/devflow-resolve/commands/resolve.md +237 -0
  194. package/plugins/devflow-resolve/skills/agent-teams/SKILL.md +124 -0
  195. package/plugins/devflow-resolve/skills/agent-teams/references/cleanup.md +104 -0
  196. package/plugins/devflow-resolve/skills/agent-teams/references/communication.md +122 -0
  197. package/plugins/devflow-resolve/skills/agent-teams/references/team-patterns.md +217 -0
  198. package/plugins/devflow-resolve/skills/implementation-patterns/SKILL.md +162 -0
  199. package/plugins/devflow-resolve/skills/implementation-patterns/references/patterns.md +1063 -0
  200. package/plugins/devflow-resolve/skills/implementation-patterns/references/violations.md +483 -0
  201. package/plugins/devflow-resolve/skills/security-patterns/SKILL.md +156 -0
  202. package/plugins/devflow-resolve/skills/security-patterns/references/detection.md +287 -0
  203. package/plugins/devflow-resolve/skills/security-patterns/references/patterns.md +507 -0
  204. package/plugins/devflow-resolve/skills/security-patterns/references/violations.md +237 -0
  205. package/plugins/devflow-self-review/.claude-plugin/plugin.json +7 -0
  206. package/plugins/devflow-self-review/README.md +38 -0
  207. package/plugins/devflow-self-review/agents/scrutinizer.md +80 -0
  208. package/plugins/devflow-self-review/agents/simplifier.md +62 -0
  209. package/plugins/devflow-self-review/agents/validator.md +86 -0
  210. package/plugins/devflow-self-review/commands/self-review.md +126 -0
  211. package/plugins/devflow-self-review/skills/core-patterns/SKILL.md +162 -0
  212. package/plugins/devflow-self-review/skills/core-patterns/references/checklist.md +276 -0
  213. package/plugins/devflow-self-review/skills/core-patterns/references/code-smell-violations.md +144 -0
  214. package/plugins/devflow-self-review/skills/core-patterns/references/detection.md +303 -0
  215. package/plugins/devflow-self-review/skills/core-patterns/references/patterns.md +576 -0
  216. package/plugins/devflow-self-review/skills/core-patterns/references/violations.md +369 -0
  217. package/plugins/devflow-self-review/skills/self-review/SKILL.md +149 -0
  218. package/plugins/devflow-self-review/skills/self-review/references/patterns.md +405 -0
  219. package/plugins/devflow-self-review/skills/self-review/references/report-template.md +253 -0
  220. package/plugins/devflow-self-review/skills/self-review/references/violations.md +308 -0
  221. package/plugins/devflow-specify/.claude-plugin/plugin.json +15 -0
  222. package/plugins/devflow-specify/README.md +46 -0
  223. package/plugins/devflow-specify/agents/skimmer.md +88 -0
  224. package/plugins/devflow-specify/agents/synthesizer.md +204 -0
  225. package/plugins/devflow-specify/commands/specify-teams.md +314 -0
  226. package/plugins/devflow-specify/commands/specify.md +179 -0
  227. package/plugins/devflow-specify/skills/agent-teams/SKILL.md +124 -0
  228. package/plugins/devflow-specify/skills/agent-teams/references/cleanup.md +104 -0
  229. package/plugins/devflow-specify/skills/agent-teams/references/communication.md +122 -0
  230. package/plugins/devflow-specify/skills/agent-teams/references/team-patterns.md +217 -0
  231. package/scripts/hooks/background-memory-update.sh +167 -0
  232. package/scripts/hooks/pre-compact-memory.sh +81 -0
  233. package/scripts/hooks/session-start-memory.sh +84 -0
  234. package/scripts/hooks/stop-update-memory.sh +81 -0
  235. package/shared/agents/coder.md +122 -0
  236. package/shared/agents/git.md +272 -0
  237. package/shared/agents/resolver.md +131 -0
  238. package/shared/agents/reviewer.md +119 -0
  239. package/shared/agents/scrutinizer.md +80 -0
  240. package/shared/agents/shepherd.md +94 -0
  241. package/shared/agents/simplifier.md +62 -0
  242. package/shared/agents/skimmer.md +88 -0
  243. package/shared/agents/synthesizer.md +204 -0
  244. package/shared/agents/validator.md +86 -0
  245. package/shared/skills/accessibility/SKILL.md +229 -0
  246. package/shared/skills/accessibility/references/detection.md +171 -0
  247. package/shared/skills/accessibility/references/patterns.md +670 -0
  248. package/shared/skills/accessibility/references/violations.md +419 -0
  249. package/shared/skills/agent-teams/SKILL.md +124 -0
  250. package/shared/skills/agent-teams/references/cleanup.md +104 -0
  251. package/shared/skills/agent-teams/references/communication.md +122 -0
  252. package/shared/skills/agent-teams/references/team-patterns.md +217 -0
  253. package/shared/skills/architecture-patterns/SKILL.md +153 -0
  254. package/shared/skills/architecture-patterns/references/detection.md +337 -0
  255. package/shared/skills/architecture-patterns/references/patterns.md +873 -0
  256. package/shared/skills/architecture-patterns/references/violations.md +575 -0
  257. package/shared/skills/complexity-patterns/SKILL.md +143 -0
  258. package/shared/skills/complexity-patterns/references/detection.md +264 -0
  259. package/shared/skills/complexity-patterns/references/patterns.md +487 -0
  260. package/shared/skills/complexity-patterns/references/violations.md +361 -0
  261. package/shared/skills/consistency-patterns/SKILL.md +140 -0
  262. package/shared/skills/consistency-patterns/references/detection.md +207 -0
  263. package/shared/skills/consistency-patterns/references/patterns.md +202 -0
  264. package/shared/skills/consistency-patterns/references/violations.md +213 -0
  265. package/shared/skills/core-patterns/SKILL.md +162 -0
  266. package/shared/skills/core-patterns/references/checklist.md +276 -0
  267. package/shared/skills/core-patterns/references/code-smell-violations.md +144 -0
  268. package/shared/skills/core-patterns/references/detection.md +303 -0
  269. package/shared/skills/core-patterns/references/patterns.md +576 -0
  270. package/shared/skills/core-patterns/references/violations.md +369 -0
  271. package/shared/skills/database-patterns/SKILL.md +134 -0
  272. package/shared/skills/database-patterns/references/detection.md +208 -0
  273. package/shared/skills/database-patterns/references/patterns.md +394 -0
  274. package/shared/skills/database-patterns/references/violations.md +332 -0
  275. package/shared/skills/dependencies-patterns/SKILL.md +141 -0
  276. package/shared/skills/dependencies-patterns/references/detection.md +181 -0
  277. package/shared/skills/dependencies-patterns/references/patterns.md +225 -0
  278. package/shared/skills/dependencies-patterns/references/violations.md +247 -0
  279. package/shared/skills/docs-framework/SKILL.md +134 -0
  280. package/shared/skills/docs-framework/references/patterns.md +346 -0
  281. package/shared/skills/docs-framework/references/violations.md +221 -0
  282. package/shared/skills/documentation-patterns/SKILL.md +125 -0
  283. package/shared/skills/documentation-patterns/references/detection.md +190 -0
  284. package/shared/skills/documentation-patterns/references/patterns.md +189 -0
  285. package/shared/skills/documentation-patterns/references/violations.md +163 -0
  286. package/shared/skills/frontend-design/SKILL.md +254 -0
  287. package/shared/skills/frontend-design/references/detection.md +184 -0
  288. package/shared/skills/frontend-design/references/patterns.md +511 -0
  289. package/shared/skills/frontend-design/references/violations.md +453 -0
  290. package/shared/skills/git-safety/SKILL.md +122 -0
  291. package/shared/skills/git-safety/references/detection.md +290 -0
  292. package/shared/skills/git-safety/references/patterns.md +289 -0
  293. package/shared/skills/git-safety/references/violations.md +18 -0
  294. package/shared/skills/git-workflow/SKILL.md +158 -0
  295. package/shared/skills/git-workflow/references/commit-patterns.md +115 -0
  296. package/shared/skills/git-workflow/references/commit-violations.md +77 -0
  297. package/shared/skills/git-workflow/references/pr-patterns.md +127 -0
  298. package/shared/skills/git-workflow/references/pr-violations.md +96 -0
  299. package/shared/skills/github-patterns/SKILL.md +153 -0
  300. package/shared/skills/github-patterns/references/patterns.md +572 -0
  301. package/shared/skills/github-patterns/references/violations.md +298 -0
  302. package/shared/skills/implementation-patterns/SKILL.md +162 -0
  303. package/shared/skills/implementation-patterns/references/patterns.md +1063 -0
  304. package/shared/skills/implementation-patterns/references/violations.md +483 -0
  305. package/shared/skills/input-validation/SKILL.md +148 -0
  306. package/shared/skills/input-validation/references/detection.md +283 -0
  307. package/shared/skills/input-validation/references/patterns.md +361 -0
  308. package/shared/skills/input-validation/references/violations.md +224 -0
  309. package/shared/skills/performance-patterns/SKILL.md +154 -0
  310. package/shared/skills/performance-patterns/references/detection.md +351 -0
  311. package/shared/skills/performance-patterns/references/patterns.md +503 -0
  312. package/shared/skills/performance-patterns/references/violations.md +354 -0
  313. package/shared/skills/react/SKILL.md +276 -0
  314. package/shared/skills/react/references/patterns.md +1331 -0
  315. package/shared/skills/react/references/violations.md +565 -0
  316. package/shared/skills/regression-patterns/SKILL.md +146 -0
  317. package/shared/skills/regression-patterns/references/detection.md +237 -0
  318. package/shared/skills/regression-patterns/references/patterns.md +226 -0
  319. package/shared/skills/regression-patterns/references/violations.md +225 -0
  320. package/shared/skills/review-methodology/SKILL.md +119 -0
  321. package/shared/skills/review-methodology/references/patterns.md +186 -0
  322. package/shared/skills/review-methodology/references/report-template.md +142 -0
  323. package/shared/skills/review-methodology/references/violations.md +125 -0
  324. package/shared/skills/security-patterns/SKILL.md +156 -0
  325. package/shared/skills/security-patterns/references/detection.md +287 -0
  326. package/shared/skills/security-patterns/references/patterns.md +507 -0
  327. package/shared/skills/security-patterns/references/violations.md +237 -0
  328. package/shared/skills/self-review/SKILL.md +149 -0
  329. package/shared/skills/self-review/references/patterns.md +405 -0
  330. package/shared/skills/self-review/references/report-template.md +253 -0
  331. package/shared/skills/self-review/references/violations.md +308 -0
  332. package/shared/skills/test-patterns/SKILL.md +183 -0
  333. package/shared/skills/test-patterns/references/detection.md +149 -0
  334. package/shared/skills/test-patterns/references/patterns.md +220 -0
  335. package/shared/skills/test-patterns/references/report-template.md +108 -0
  336. package/shared/skills/test-patterns/references/violations.md +221 -0
  337. package/shared/skills/typescript/SKILL.md +176 -0
  338. package/shared/skills/typescript/references/patterns.md +1105 -0
  339. package/shared/skills/typescript/references/violations.md +433 -0
  340. package/src/templates/claudeignore.template +188 -0
  341. package/src/templates/managed-settings.json +146 -0
  342. package/src/templates/settings.json +59 -0
  343. package/dist/cli.d.ts.map +0 -1
  344. package/dist/cli.js.map +0 -1
  345. package/dist/commands/init.d.ts.map +0 -1
  346. package/dist/commands/init.js.map +0 -1
  347. package/dist/commands/uninstall.d.ts.map +0 -1
  348. package/dist/commands/uninstall.js.map +0 -1
  349. package/dist/utils/git.d.ts.map +0 -1
  350. package/dist/utils/git.js.map +0 -1
  351. package/dist/utils/paths.d.ts.map +0 -1
  352. package/dist/utils/paths.js.map +0 -1
  353. package/src/claude/CLAUDE.md +0 -400
  354. package/src/claude/agents/devflow/audit-architecture.md +0 -132
  355. package/src/claude/agents/devflow/audit-complexity.md +0 -132
  356. package/src/claude/agents/devflow/audit-database.md +0 -132
  357. package/src/claude/agents/devflow/audit-dependencies.md +0 -132
  358. package/src/claude/agents/devflow/audit-documentation.md +0 -132
  359. package/src/claude/agents/devflow/audit-performance.md +0 -256
  360. package/src/claude/agents/devflow/audit-security.md +0 -259
  361. package/src/claude/agents/devflow/audit-tests.md +0 -132
  362. package/src/claude/agents/devflow/audit-typescript.md +0 -132
  363. package/src/claude/agents/devflow/brainstorm.md +0 -279
  364. package/src/claude/agents/devflow/catch-up.md +0 -345
  365. package/src/claude/agents/devflow/code-review.md +0 -307
  366. package/src/claude/agents/devflow/commit.md +0 -380
  367. package/src/claude/agents/devflow/debug.md +0 -476
  368. package/src/claude/agents/devflow/design.md +0 -491
  369. package/src/claude/agents/devflow/get-issue.md +0 -286
  370. package/src/claude/agents/devflow/pr-comments.md +0 -285
  371. package/src/claude/agents/devflow/project-state.md +0 -419
  372. package/src/claude/agents/devflow/pull-request.md +0 -493
  373. package/src/claude/agents/devflow/release.md +0 -1137
  374. package/src/claude/agents/devflow/tech-debt.md +0 -338
  375. package/src/claude/commands/devflow/brainstorm.md +0 -68
  376. package/src/claude/commands/devflow/breakdown.md +0 -125
  377. package/src/claude/commands/devflow/catch-up.md +0 -29
  378. package/src/claude/commands/devflow/code-review.md +0 -237
  379. package/src/claude/commands/devflow/commit.md +0 -17
  380. package/src/claude/commands/devflow/debug.md +0 -56
  381. package/src/claude/commands/devflow/design.md +0 -82
  382. package/src/claude/commands/devflow/devlog.md +0 -408
  383. package/src/claude/commands/devflow/get-issue.md +0 -16
  384. package/src/claude/commands/devflow/implement.md +0 -100
  385. package/src/claude/commands/devflow/plan.md +0 -223
  386. package/src/claude/commands/devflow/pull-request.md +0 -20
  387. package/src/claude/commands/devflow/release.md +0 -251
  388. package/src/claude/commands/devflow/resolve-comments.md +0 -583
  389. package/src/claude/scripts/statusline.sh +0 -47
  390. package/src/claude/settings.json +0 -6
  391. package/src/claude/skills/devflow/code-smell/SKILL.md +0 -428
  392. package/src/claude/skills/devflow/debug/SKILL.md +0 -119
  393. package/src/claude/skills/devflow/error-handling/SKILL.md +0 -597
  394. package/src/claude/skills/devflow/input-validation/SKILL.md +0 -514
  395. package/src/claude/skills/devflow/pattern-check/SKILL.md +0 -238
  396. package/src/claude/skills/devflow/research/SKILL.md +0 -138
  397. package/src/claude/skills/devflow/test-design/SKILL.md +0 -384
@@ -1,237 +0,0 @@
1
- ---
2
- description: Comprehensive branch review using specialized sub-agents for PR readiness
3
- allowed-tools: Task, Bash, Read, Grep, Glob
4
- ---
5
-
6
- ## Your Task
7
-
8
- Orchestrate specialized audit sub-agents to review the current branch, then synthesize findings into PR comments and tech debt tracking.
9
-
10
- ---
11
-
12
- ## Phase 1: Setup
13
-
14
- ```bash
15
- # Get current branch for directory naming
16
- CURRENT_BRANCH=$(git branch --show-current)
17
- BRANCH_SLUG=$(echo "${CURRENT_BRANCH:-standalone}" | sed 's/\//-/g')
18
-
19
- # Coordination variables (shared across all sub-agents)
20
- TIMESTAMP=$(date +%Y-%m-%d_%H%M)
21
- AUDIT_BASE_DIR=".docs/audits/${BRANCH_SLUG}"
22
- mkdir -p "$AUDIT_BASE_DIR"
23
-
24
- # Detect project type for conditional audits
25
- HAS_TYPESCRIPT=false
26
- [ -f "tsconfig.json" ] && HAS_TYPESCRIPT=true
27
-
28
- HAS_DB_CHANGES=false
29
- git diff --name-only HEAD~10..HEAD 2>/dev/null | grep -qiE '(migration|schema|\.sql|prisma|drizzle|knex)' && HAS_DB_CHANGES=true
30
-
31
- echo "=== CODE REVIEW ==="
32
- echo "๐Ÿ“ Reports: $AUDIT_BASE_DIR"
33
- echo "โฑ๏ธ Timestamp: $TIMESTAMP"
34
- echo "๐Ÿ“ฆ TypeScript: $HAS_TYPESCRIPT"
35
- echo "๐Ÿ—„๏ธ Database: $HAS_DB_CHANGES"
36
- ```
37
-
38
- ---
39
-
40
- ## Phase 2: Run Audit Sub-Agents (Parallel)
41
-
42
- Launch ALL applicable audit sub-agents in a **single message** using multiple Task tool calls for parallel execution.
43
-
44
- **IMPORTANT:** You MUST launch these as parallel Task calls in ONE message.
45
-
46
- **Always Launch (7 core audits):**
47
-
48
- 1. **audit-security**
49
- ```
50
- Analyze branch for security issues. Compare against base branch.
51
- Save report to: ${AUDIT_BASE_DIR}/security-report.${TIMESTAMP}.md
52
- ```
53
-
54
- 2. **audit-performance**
55
- ```
56
- Analyze branch for performance issues. Compare against base branch.
57
- Save report to: ${AUDIT_BASE_DIR}/performance-report.${TIMESTAMP}.md
58
- ```
59
-
60
- 3. **audit-architecture**
61
- ```
62
- Analyze branch for architecture issues. Compare against base branch.
63
- Save report to: ${AUDIT_BASE_DIR}/architecture-report.${TIMESTAMP}.md
64
- ```
65
-
66
- 4. **audit-tests**
67
- ```
68
- Analyze branch for test coverage and quality issues. Compare against base branch.
69
- Save report to: ${AUDIT_BASE_DIR}/tests-report.${TIMESTAMP}.md
70
- ```
71
-
72
- 5. **audit-complexity**
73
- ```
74
- Analyze branch for code complexity issues. Compare against base branch.
75
- Save report to: ${AUDIT_BASE_DIR}/complexity-report.${TIMESTAMP}.md
76
- ```
77
-
78
- 6. **audit-dependencies**
79
- ```
80
- Analyze branch for dependency issues. Compare against base branch.
81
- Save report to: ${AUDIT_BASE_DIR}/dependencies-report.${TIMESTAMP}.md
82
- ```
83
-
84
- 7. **audit-documentation**
85
- ```
86
- Analyze branch for documentation issues. Compare against base branch.
87
- Save report to: ${AUDIT_BASE_DIR}/documentation-report.${TIMESTAMP}.md
88
- ```
89
-
90
- **Conditional Audits:**
91
-
92
- 8. **audit-typescript** (if HAS_TYPESCRIPT=true)
93
- ```
94
- Analyze branch for TypeScript issues. Compare against base branch.
95
- Save report to: ${AUDIT_BASE_DIR}/typescript-report.${TIMESTAMP}.md
96
- ```
97
-
98
- 9. **audit-database** (if HAS_DB_CHANGES=true)
99
- ```
100
- Analyze branch for database issues. Compare against base branch.
101
- Save report to: ${AUDIT_BASE_DIR}/database-report.${TIMESTAMP}.md
102
- ```
103
-
104
- ---
105
-
106
- ## Phase 3: Synthesis (After Audits Complete)
107
-
108
- **WAIT for all Phase 2 audits to complete before proceeding.**
109
-
110
- After all audit sub-agents have finished, launch THREE synthesis sub-agents in **parallel**:
111
-
112
- ### 3.1 code-review sub-agent (Summary Report)
113
-
114
- ```
115
- Generate code review summary for branch ${CURRENT_BRANCH}.
116
-
117
- Context:
118
- - Branch: ${CURRENT_BRANCH}
119
- - Base: ${BASE_BRANCH}
120
- - Audit Directory: ${AUDIT_BASE_DIR}
121
- - Timestamp: ${TIMESTAMP}
122
-
123
- Tasks:
124
- 1. Read all audit reports from ${AUDIT_BASE_DIR}/*-report.${TIMESTAMP}.md
125
- 2. Extract and categorize all issues (๐Ÿ”ด/โš ๏ธ/โ„น๏ธ)
126
- 3. Generate summary report at ${AUDIT_BASE_DIR}/review-summary.${TIMESTAMP}.md
127
- 4. Determine merge recommendation
128
-
129
- Report back: Merge recommendation and issue counts
130
- ```
131
-
132
- ### 3.2 pr-comments sub-agent (PR Comments)
133
-
134
- ```
135
- Create PR comments for code review findings on branch ${CURRENT_BRANCH}.
136
-
137
- Context:
138
- - Branch: ${CURRENT_BRANCH}
139
- - Audit Directory: ${AUDIT_BASE_DIR}
140
- - Timestamp: ${TIMESTAMP}
141
-
142
- Tasks:
143
- 1. Read all audit reports from ${AUDIT_BASE_DIR}/*-report.${TIMESTAMP}.md
144
- 2. Ensure PR exists (create draft if missing)
145
- 3. Create individual comments for all ๐Ÿ”ด blocking issues
146
- 4. Create individual comments for all โš ๏ธ should-fix issues
147
- 5. Include suggested fixes with code examples
148
- 6. Show pros/cons table when multiple approaches exist
149
- 7. Add Claude Code attribution to each comment
150
-
151
- Report back: PR number and count of comments created
152
- ```
153
-
154
- ### 3.3 tech-debt sub-agent (Tech Debt Management)
155
-
156
- ```
157
- Manage tech debt for code review on branch ${CURRENT_BRANCH}.
158
-
159
- Context:
160
- - Branch: ${CURRENT_BRANCH}
161
- - Audit Directory: ${AUDIT_BASE_DIR}
162
- - Timestamp: ${TIMESTAMP}
163
-
164
- Tasks:
165
- 1. Read all audit reports from ${AUDIT_BASE_DIR}/*-report.${TIMESTAMP}.md
166
- 2. Find or create Tech Debt Backlog issue
167
- 3. Check if archive needed (approaching 60k char limit)
168
- 4. Add new โ„น๏ธ pre-existing issues (deduplicated)
169
- 5. Check existing items - remove those that are fixed
170
- 6. Update issue with changes
171
-
172
- Report back: Issue number, items added, items removed
173
- ```
174
-
175
- **IMPORTANT:** Launch all THREE synthesis sub-agents in a SINGLE message for parallel execution.
176
-
177
- ---
178
-
179
- ## Phase 4: Present Results
180
-
181
- After ALL synthesis sub-agents complete, consolidate their reports and display final summary:
182
-
183
- ```markdown
184
- ๐Ÿ” CODE REVIEW COMPLETE
185
-
186
- **Branch**: ${CURRENT_BRANCH}
187
- **Audits**: {count} specialized audits completed
188
-
189
- ---
190
-
191
- ## ๐Ÿšฆ Merge Status: {RECOMMENDATION from code-review agent}
192
-
193
- ---
194
-
195
- ## ๐Ÿ“Š Issues Found
196
-
197
- | Category | Count | Action |
198
- |----------|-------|--------|
199
- | ๐Ÿ”ด Blocking | {count} | Must fix before merge |
200
- | โš ๏ธ Should Fix | {count} | Fix while you're here |
201
- | โ„น๏ธ Pre-existing | {count} | Managed in tech debt |
202
-
203
- ---
204
-
205
- ## ๐Ÿ“ Artifacts Created
206
-
207
- - **Summary**: `${AUDIT_BASE_DIR}/review-summary.${TIMESTAMP}.md`
208
- - **PR Comments**: {count} comments on PR #{number from pr-comments agent}
209
- - **Tech Debt**: Issue #{number from tech-debt agent}
210
- - Added: {count} new items
211
- - Removed: {count} fixed items
212
-
213
- ---
214
-
215
- ## ๐ŸŽฏ Next Steps
216
-
217
- {If BLOCK MERGE:}
218
- 1. Review PR comments for fix suggestions
219
- 2. Address ๐Ÿ”ด blocking issues
220
- 3. Re-run `/code-review` to verify
221
-
222
- {If APPROVED:}
223
- 1. Review โš ๏ธ suggestions (optional)
224
- 2. Create commits: `/commit`
225
- 3. Create PR: `/pull-request`
226
- ```
227
-
228
- ---
229
-
230
- ## Orchestration Rules
231
-
232
- 1. **Phase 2 is parallel** - Launch ALL audit sub-agents in a single message
233
- 2. **Phase 3 is parallel** - Launch ALL synthesis sub-agents in a single message (after Phase 2)
234
- 3. **Don't read reports yourself** - Sub-agents handle all file reading
235
- 4. **Don't create artifacts yourself** - Each sub-agent creates its own outputs
236
- 5. **Pass context accurately** - Ensure AUDIT_BASE_DIR and TIMESTAMP reach all sub-agents
237
- 6. **Consolidate results** - Combine reports from all three synthesis agents for final output
@@ -1,17 +0,0 @@
1
- ---
2
- allowed-tools: Task
3
- description: Create intelligent atomic commits with safety checks and clean git history
4
- ---
5
-
6
- ## Your task
7
-
8
- Launch the `commit` sub-agent to analyze changes, detect safety issues, group into atomic commits, and **execute them immediately**.
9
-
10
- The agent will:
11
- 1. Analyze uncommitted changes
12
- 2. Run safety checks (abort if secrets/dangerous files found)
13
- 3. Group into logical atomic commits
14
- 4. **Execute commits without asking for confirmation**
15
- 5. Report what was committed
16
-
17
- Trust the agent's judgment. It will only abort for genuine safety issues (secrets, credentials).
@@ -1,56 +0,0 @@
1
- ---
2
- allowed-tools: Task
3
- description: Systematic debugging workflow with issue tracking - use '/debug [issue description]'
4
- ---
5
-
6
- ## Your task
7
-
8
- Launch the `debug` sub-agent to conduct systematic debugging for: `$ARGUMENTS`
9
-
10
- If no arguments provided, prompt the user for the issue description.
11
-
12
- ### Debugging Process
13
-
14
- The debug agent will:
15
-
16
- 1. **Capture the Problem** - Create debug session tracking with unique session ID
17
- 2. **Document the Issue** - Create comprehensive debug log in `.docs/debug/`
18
- 3. **Smart Investigation** - Detect issue type (error/performance/test/build) and adapt strategy
19
- 4. **Generate Hypotheses** - Create targeted, testable hypotheses based on issue type
20
- 5. **Systematic Testing** - Test each hypothesis methodically and document findings
21
- 6. **Root Cause Analysis** - Identify precise root cause with file and line references
22
- 7. **Implement Fix** - Design, implement, and verify the solution
23
- 8. **Prevention Strategy** - Document how to prevent similar issues
24
- 9. **Update Knowledge Base** - Add to searchable `.docs/debug/KNOWLEDGE_BASE.md`
25
-
26
- ### Next: Synthesize Results
27
-
28
- After the sub-agent completes, present a concise summary to the user:
29
-
30
- ```markdown
31
- ๐Ÿ” DEBUG SESSION COMPLETE: $ARGUMENTS
32
-
33
- ## ๐ŸŽฏ ROOT CAUSE
34
- {Precise description with file:line}
35
-
36
- ## โœ… SOLUTION APPLIED
37
- {Description of fix}
38
-
39
- ## ๐Ÿ“ VERIFICATION
40
- {Test results showing fix works}
41
-
42
- ## ๐Ÿ›ก๏ธ PREVENTION
43
- {How to prevent similar issues}
44
-
45
- ## ๐Ÿ“„ DOCUMENTATION
46
- - Debug log: `.docs/debug/{SESSION_ID}.md`
47
- - Knowledge base: `.docs/debug/KNOWLEDGE_BASE.md`
48
-
49
- ๐Ÿ“„ Full debugging details available from sub-agent output above
50
- ```
51
-
52
- ๐Ÿ’ก **Usage Examples**:
53
- - `/debug "TypeError: Cannot read property 'name' of undefined"`
54
- - `/debug tests failing after npm update`
55
- - `/debug app crashes on startup`
56
- - `/debug slow performance in search feature`
@@ -1,82 +0,0 @@
1
- ---
2
- allowed-tools: Task
3
- description: Create detailed implementation design with integration points and edge cases - use '/design [feature description]'
4
- ---
5
-
6
- ## Your task
7
-
8
- Launch the `design` sub-agent to create a detailed implementation design for: `$ARGUMENTS`
9
-
10
- If no arguments provided, use the previous discussion context to infer the feature, or prompt the user for the feature to design.
11
-
12
- ### Design Process
13
-
14
- The design agent will:
15
-
16
- 1. **Analyze Existing Patterns** - Study code style, architecture, and reusable components
17
- 2. **Map Integration Points** - Identify all places new feature touches existing code
18
- 3. **Handle Edge Cases** - Surface non-obvious scenarios and error conditions
19
- 4. **Avoid Duplication** - Find existing code to reuse instead of recreating
20
- 5. **Create Implementation Plan** - Step-by-step guide with file references
21
-
22
- ### Next: Present Implementation Design
23
-
24
- After the sub-agent completes, present a concise summary to the user:
25
-
26
- ```markdown
27
- ๐ŸŽจ DESIGN COMPLETE: $ARGUMENTS
28
-
29
- ## ๐Ÿ“ IMPLEMENTATION OVERVIEW
30
-
31
- {High-level summary of the design}
32
-
33
- ## ๐Ÿ”— INTEGRATION POINTS
34
-
35
- {Where this connects to existing code}
36
- - {module/file}: {what needs updating}
37
- - {module/file}: {what needs updating}
38
-
39
- ## ๐ŸŽฏ CORE COMPONENTS
40
-
41
- {New code to create}
42
- 1. {component}: {purpose and location}
43
- 2. {component}: {purpose and location}
44
-
45
- ## โš ๏ธ EDGE CASES HANDLED
46
-
47
- {Non-obvious scenarios to account for}
48
- - {scenario}: {how to handle}
49
- - {scenario}: {how to handle}
50
-
51
- ## โ™ป๏ธ CODE REUSE OPPORTUNITIES
52
-
53
- {Existing code to leverage}
54
- - {file:function}: {what it does, how to use}
55
-
56
- ## ๐Ÿ“ IMPLEMENTATION STEPS
57
-
58
- {Ordered sequence to implement}
59
- 1. {step with file references}
60
- 2. {step with file references}
61
-
62
- ## ๐Ÿงช TESTING STRATEGY
63
-
64
- {How to test this implementation}
65
-
66
- ๐Ÿ“„ Full design document available from sub-agent output above
67
- ```
68
-
69
- ๐Ÿ’ก **Usage Examples**:
70
- - `/design user authentication with JWT`
71
- - `/design file upload with validation`
72
- - `/design real-time sync engine`
73
- - `/design search with filters and pagination`
74
-
75
- **When to use `/brainstorm` vs `/design`**:
76
- - **Brainstorm** = "What approach should we take?" (architecture decisions)
77
- - **Design** = "How should we implement it?" (detailed implementation plan)
78
-
79
- **Typical workflow**:
80
- 1. `/brainstorm` - Explore approaches and make design decisions
81
- 2. `/design` - Create detailed implementation plan based on chosen approach
82
- 3. `/implement` - Execute the plan with continuous user interaction