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
package/CHANGELOG.md CHANGED
@@ -5,6 +5,143 @@ All notable changes to DevFlow will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.0] - 2026-02-25
9
+
10
+ ### Added
11
+ - **Agent Teams integration** - Peer-to-peer agent collaboration across workflows
12
+ - `/code-review` uses adversarial review team with debate round and consensus findings
13
+ - `/implement` uses exploration and planning teams with debate, Shepherd↔Coder direct dialogue
14
+ - New `/debug` command for competing hypothesis investigation with agent teams
15
+ - `agent-teams` foundation skill with team spawning, challenge protocol, consensus formation
16
+ - Graceful fallback to parallel subagents when Agent Teams is unavailable
17
+ - **`devflow-debug` plugin** - New plugin for bug investigation
18
+ - `/debug` command spawns 3-5 hypothesis investigators
19
+ - Adversarial debate where agents actively disprove each other's theories
20
+ - Root cause analysis report with confidence levels
21
+ - **`accessibility` skill** - WCAG 2.1 AA patterns for keyboard navigation, ARIA, contrast
22
+ - Iron Law: EVERY INTERACTION MUST BE POSSIBLE WITHOUT A MOUSE
23
+ - Auto-triggers when creating UI components, forms, or interactive elements
24
+ - **`frontend-design` skill** - Intentional visual design patterns (Anthropic's 4 Dimensions)
25
+ - Iron Law: AESTHETICS MUST HAVE INTENT
26
+ - AI slop detection (purple-pink gradients, Inter without rationale, everything centered)
27
+ - Auto-triggers when working with CSS, styling, or visual design
28
+ - **Enhanced `react` skill** - Added 5 new categories from Vercel best practices
29
+ - Async Parallelization (Promise.all for independent fetches)
30
+ - Bundle Size (no barrel imports, lazy loading)
31
+ - Re-render Optimization (primitive deps, stable callbacks)
32
+ - Image Optimization (dimensions, lazy loading, aspect-ratio)
33
+ - Data Structure Performance (Set/Map for O(1) lookups)
34
+ - **Conditional frontend reviews** in `/code-review` command
35
+ - `react` review (if .tsx/.jsx files changed)
36
+ - `accessibility` review (if .tsx/.jsx files changed)
37
+ - `frontend-design` review (if .tsx/.jsx/.css/.scss files changed)
38
+ - **Glob pattern activation schema** for skills
39
+ - Skills can declare `activation.file-patterns` and `activation.exclude` in frontmatter
40
+ - Future-proofs for conditional skill loading
41
+ - **`github-patterns` skill** - Foundation skill for GitHub API interactions
42
+ - Rate limiting patterns (1-2s delays, 60s wait if <10 remaining)
43
+ - Comment deduplication algorithms
44
+ - Line-in-diff validation for PR comments
45
+ - Issue data parsing (acceptance criteria, dependencies)
46
+ - Branch name generation from issues
47
+ - Tech debt management patterns (archive on overflow)
48
+ - Iron Law: RESPECT RATE LIMITS OR FAIL GRACEFULLY
49
+ - **Unified `Git` agent** - Single parameterized agent for all git/GitHub operations
50
+ - `fetch-issue` operation: Fetches GitHub issue details with acceptance criteria and suggested branch name
51
+ - `comment-pr` operation: Creates PR inline comments with deduplication and rate limiting
52
+ - `manage-debt` operation: Updates tech debt backlog issue with semantic deduplication
53
+ - `create-release` operation: Creates GitHub release with version tag
54
+ - Replaces: GetIssue, Comment, TechDebt agents
55
+ - **`git-workflow` skill** - Unified commit and PR patterns (atomic commits, message format, PR quality)
56
+ - Iron Law: ATOMIC COMMITS OR NO COMMITS
57
+ - Auto-triggers when staging files, creating commits, or opening PRs
58
+ - **Iron Laws** - Every skill now has a single, non-negotiable core principle
59
+ - 24 Iron Laws across all skills (e.g., "NEVER THROW IN BUSINESS LOGIC", "NO FAKE SOLUTIONS")
60
+ - Automatically enforced when skills activate
61
+ - Consistent format: `## Iron Law` section in each SKILL.md
62
+ - **Clarification Gates** for `/specify` command
63
+ - Gate 0: Confirm understanding before exploration
64
+ - Gate 1: Validate scope and priorities after exploration
65
+ - Gate 2: Confirm acceptance criteria before issue creation
66
+ - No gate may be skipped - explicit user approval required
67
+ - **Security deny list** via OS-level managed settings (140 blocked operations)
68
+ - System destruction (rm -rf, dd, mkfs, shred)
69
+ - Code execution (curl|bash, eval, exec)
70
+ - Privilege escalation (sudo, su, doas, pkexec)
71
+ - Permission changes (chmod 777, chown root)
72
+ - System control (kill -9, reboot, shutdown)
73
+ - Data exfiltration (netcat, socat, telnet)
74
+ - Sensitive file reads (.env, SSH keys, AWS credentials)
75
+ - Package globals (npm -g, pip --system)
76
+ - Resource abuse (fork bombs, crypto miners)
77
+ - **`ENABLE_TOOL_SEARCH`** environment variable in settings
78
+ - Deferred MCP tool loading until needed
79
+ - ~85% token reduction for conversations with many MCP tools
80
+ - **Context usage percentage** in statusline
81
+ - Replaces binary "exceeds 200k" warning
82
+ - Color-coded: Green (<50%), Yellow (50-80%), Red (>80%)
83
+ - Calculated from `context_window.current_usage` data
84
+ - **Working Memory hooks** — Automatic session continuity via stop/session-start/pre-compact hooks (#59)
85
+ - Background haiku updater writes `.docs/WORKING-MEMORY.md` asynchronously
86
+ - SessionStart hook injects previous memory + git state on startup
87
+ - mkdir-based locking for concurrent session safety
88
+ - **Teams/no-teams command variants** — Install-time selection of Agent Teams vs parallel subagents (#61)
89
+ - `--teams`/`--no-teams` CLI flags with TTY confirmation prompt
90
+ - Variant-aware installer copies correct `.md` files
91
+ - `stripTeamsConfig()` removes teams env vars when disabled
92
+
93
+ ### Changed
94
+ - **Lean agent and command redesign** - Major refactoring reducing 3,653 lines to 844 (-77%)
95
+ - Commands: `/implement` (479→182), `/specify` (631→179), `/devlog` (408→113), `/code-review` (312→136)
96
+ - Agents: Coder, Synthesizer, Reviewer, Git, Devlog, CatchUp, Skimmer, Simplifier
97
+ - Removed embedded bash scripts, verbose templates, redundant explanations
98
+ - Preserved all workflows, agent invocations, and architecture
99
+ - **Agent model assignments** - Simplified to inherit vs haiku
100
+ - `inherit`: Coder, Reviewer, Simplifier, Skimmer (use orchestrator's model)
101
+ - `haiku`: Synthesizer, Git, Devlog, CatchUp (fast, simple operations)
102
+ - `/specify` now requires explicit user confirmation at each gate
103
+ - Statusline shows actual percentage instead of just large context warning
104
+ - Settings template includes permissions.deny and env configuration
105
+ - Commit and PR patterns now auto-activate via skills instead of requiring explicit commands
106
+ - **Skills consolidation** — 28 skills merged to 24
107
+ - `test-design` + `tests-patterns` → `test-patterns`
108
+ - `commit` + `pull-request` → `git-workflow`
109
+ - `code-smell` absorbed into `core-patterns`
110
+ - `codebase-navigation` removed (redundant with Explore agent)
111
+ - `devflow-` prefix dropped from all skill names
112
+ - **Managed settings** replace `--override-settings` flag — OS-level deny list installed to system-managed path, non-overridable by user settings
113
+ - **CLAUDE.md creation removed** — opinionated template no longer forced on users during init
114
+ - **`--teams` default flipped to off** — Agent Teams now opt-in via `--teams` flag
115
+ - **`/review` renamed to `/code-review`** — Plugin directory, command files, CLI registry, and all cross-references updated for clarity
116
+ - **Landing page** — Reference badge and repo homepage URL added
117
+
118
+ ### Removed
119
+ - **`/commit` command** - Replaced by `git-workflow` skill (use `git commit` directly)
120
+ - **`/pull-request` command** - Replaced by `git-workflow` skill (use `gh pr create` directly)
121
+ - **`/breakdown` command** - Removed (use natural conversation or TodoWrite directly)
122
+ - **`/release` command** - Removed (use manual release process)
123
+ - **`/resolve-comments` command** - Removed (address PR comments directly)
124
+ - **`/run` command** - Removed (use `/implement` for full lifecycle)
125
+ - **`Commit` agent** - Patterns moved to `git-workflow` skill
126
+ - **`PullRequest` agent** - Patterns moved to `git-workflow` skill
127
+ - **`Release` agent** - Removed (use manual release process)
128
+ - **`/catch-up` command** - Superseded by Working Memory hooks (automatic context restoration)
129
+ - **`/devlog` command** - Superseded by Working Memory hooks (automatic session logging)
130
+ - **`catch-up` agent** - No longer needed with automatic Working Memory
131
+ - **`devlog` agent** - No longer needed with automatic Working Memory
132
+ - **`GetIssue` agent** - Replaced by Git agent (operation: fetch-issue)
133
+ - **`Comment` agent** - Replaced by Git agent (operation: comment-pr)
134
+ - **`TechDebt` agent** - Replaced by Git agent (operation: manage-debt)
135
+
136
+ ### Fixed
137
+ - **Statusline base branch detection** — Layered 4-tier fallback (branch reflog → HEAD reflog → `gh pr view` cache → main/master) replaces hardcoded main/master check; fixes incorrect diff stats for branches off `develop`, `staging`, etc. (#70)
138
+ - **Stale CLAUDE.md in files array** — Removed from `package.json` after CLAUDE.md creation was dropped
139
+ - **Skimmer agent** — Use `npx rskim` to eliminate global install requirement (#60)
140
+ - **Working Memory throttle race** — Marker file prevents concurrent updater spawns during Agent Teams sessions (#62)
141
+ - **Working Memory diagnostics** — stderr captured to log file instead of swallowed (#62)
142
+
143
+ ---
144
+
8
145
  ## [0.9.0] - 2025-12-04
9
146
 
10
147
  ### Added
@@ -74,7 +211,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
211
  - Trust agent judgment after safety checks pass
75
212
  - Only abort for genuine issues (secrets, credentials)
76
213
  - Faster workflow without back-and-forth
77
- - **`/implement` command** - Streamlined from 507 to ~100 lines
214
+ - **`/run` command** - Streamlined from 507 to ~100 lines (renamed from `/implement`)
78
215
  - Removed over-engineered interactive triage
79
216
  - Focus on efficient task execution
80
217
  - Only stop for genuine design decisions
@@ -127,7 +264,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127
264
  - Tracks completion status
128
265
 
129
266
  #### Enhanced Audit System
130
- - **Three-category reporting** - All 9 audit agents refactored for clearer feedback
267
+ - **Three-category reporting** - All 9 review agents refactored for clearer feedback
131
268
  - **🔴 Issues in Your Changes** - NEW vulnerabilities/problems introduced (BLOCKING)
132
269
  - **⚠️ Issues in Code You Touched** - Problems near your changes (SHOULD FIX)
133
270
  - **ℹ️ Pre-existing Issues** - Legacy problems unrelated to PR (INFORMATIONAL)
@@ -142,7 +279,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
142
279
 
143
280
  #### Code Review Command Rewrite
144
281
  - **Completely rewritten `/code-review` command** - Better orchestration and synthesis
145
- - Orchestrates all audit sub-agents in parallel for faster execution
282
+ - Orchestrates all review sub-agents in parallel for faster execution
146
283
  - Synthesizes findings from three-category reports
147
284
  - Generates actionable summary with clear priorities
148
285
  - Separates blocking issues from informational findings
@@ -244,7 +381,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
244
381
  - Automatic activation based on conversation context
245
382
 
246
383
  #### Smart Interactive Commands
247
- - **/implement command** - Orchestrator for guided feature implementation
384
+ - **/run command** - Orchestrator for guided feature implementation (originally `/implement`)
248
385
  - Interactive workflow for planning, research, and execution
249
386
  - Integrates with project-state agent for context gathering
250
387
  - Guides through research, design, implementation, and testing phases
@@ -304,12 +441,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
304
441
 
305
442
  ### Fixed
306
443
  - **Statusline path resolution** - Use absolute paths instead of tilde (~) for reliable execution
307
- - **Audit report organization** - Formalized structured storage for all audit reports
308
- - Branch-specific directories: `.docs/audits/<branch-name>/`
444
+ - **Audit report organization** - Formalized structured storage for all review reports
445
+ - Branch-specific directories: `.docs/reviews/<branch-name>/`
309
446
  - Timestamped reports for historical tracking
310
- - Standardized naming: `<audit-type>-report.<timestamp>.md`
447
+ - Standardized naming: `<review-type>-report.<timestamp>.md`
311
448
  - Standalone directory for direct agent invocations
312
- - Applied consistently across all 9 audit agents
449
+ - Applied consistently across all 9 review agents
313
450
 
314
451
  ### Added
315
452
  - **Release notes persistence** - Save comprehensive release notes to `.docs/releases/RELEASE_NOTES_v<version>.md`
@@ -373,10 +510,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
373
510
  - Never overwrites without explicit permission
374
511
 
375
512
  #### TypeScript Auditor Sub-Agent
376
- - **audit-typescript** - Specialized TypeScript code quality and type safety auditor
513
+ - **review-typescript** - Specialized TypeScript code quality and type safety auditor
377
514
  - Conditional execution: Runs only if .ts/.tsx files changed OR tsconfig.json exists
378
515
  - Built-in detection logic (gracefully skips non-TypeScript projects)
379
- - Comprehensive audits: type safety config, `any` usage, type assertions, branded types
516
+ - Comprehensive reviews: type safety config, `any` usage, type assertions, branded types
380
517
  - Advanced patterns: discriminated unions, immutability, Result types
381
518
  - Code quality: naming conventions, dependency injection, pure functions
382
519
  - Severity-based reporting (CRITICAL/HIGH/MEDIUM/LOW) with file:line references
@@ -424,17 +561,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
424
561
  13. Provide verification links and next steps
425
562
 
426
563
  ### Changed
427
- - **Pre-commit workflow** - Integrated audit-typescript into 5-agent review
564
+ - **Pre-commit workflow** - Integrated review-typescript into 5-agent review
428
565
  - Conditionally executes for TypeScript projects
429
566
  - No manual configuration needed
430
- - **Pre-PR workflow** - Integrated audit-typescript into comprehensive review
567
+ - **Pre-PR workflow** - Integrated review-typescript into comprehensive review
431
568
  - Automatic TypeScript detection and execution
432
- - Preserves existing audit orchestration patterns
569
+ - Preserves existing review orchestration patterns
433
570
 
434
571
  ### Documentation
435
572
  - Added `/release` command to README commands table
436
573
  - Added `release` sub-agent to README sub-agents table
437
- - Added `audit-typescript` sub-agent to README sub-agents table
574
+ - Added `review-typescript` sub-agent to README sub-agents table
438
575
  - Created "Creating a Release" workflow section in README
439
576
  - Documented smart CLAUDE.md installation behavior
440
577
  - Included release automation in integration examples
@@ -443,7 +580,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
443
580
  ## [0.2.0] - 2025-10-16
444
581
 
445
582
  ### Added
446
- - **audit-documentation sub-agent** - Ensures documentation stays aligned with code
583
+ - **review-documentation sub-agent** - Ensures documentation stays aligned with code
447
584
  - Validates README accuracy (installation, usage, examples)
448
585
  - Checks API documentation matches actual function signatures
449
586
  - Detects stale code comments and commented-out code
@@ -469,12 +606,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
469
606
 
470
607
  ### Changed
471
608
  - **Pre-commit strategy** - Lightweight 5-agent review for fast feedback
472
- - Core audits: Security, Performance, Architecture, Tests, Complexity
609
+ - Core reviews: Security, Performance, Architecture, Tests, Complexity
473
610
  - Typical execution: 30-60 seconds
474
- - Additional audits available on explicit request
611
+ - Additional reviews available on explicit request
475
612
  - **Pre-pr strategy** - Comprehensive 7-8 agent review
476
- - All core audits plus Dependencies and Documentation
477
- - Conditional Database audit (only if DB files changed)
613
+ - All core reviews plus Dependencies and Documentation
614
+ - Conditional Database review (only if DB files changed)
478
615
  - Typical execution: 2-3 minutes
479
616
  - Thorough branch review before PR creation
480
617
  - **Path handling** - No longer assumes HOME environment variable
@@ -493,8 +630,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
493
630
  - **Hardcoded path assumptions** - Proper fallbacks and environment overrides
494
631
 
495
632
  ### Documentation
496
- - Added audit-documentation to sub-agents table in README
497
- - Clarified audit strategies for pre-commit vs pre-pr
633
+ - Added review-documentation to sub-agents table in README
634
+ - Clarified review strategies for pre-commit vs pre-pr
498
635
  - Updated workflow examples with refined command usage
499
636
 
500
637
  ## [0.1.2] - 2025-10-05
@@ -545,13 +682,13 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
545
682
  - `/debug [issue]` - Systematic debugging with issue-specific investigation
546
683
 
547
684
  #### Sub-Agents (Audit Specialists)
548
- - `audit-security` - Security vulnerability detection and analysis
549
- - `audit-performance` - Performance optimization and bottleneck detection
550
- - `audit-architecture` - Software architecture and design pattern analysis
551
- - `audit-tests` - Test quality and coverage analysis
552
- - `audit-dependencies` - Dependency management and security analysis
553
- - `audit-complexity` - Code complexity and maintainability assessment
554
- - `audit-database` - Database design and optimization review
685
+ - `review-security` - Security vulnerability detection and analysis
686
+ - `review-performance` - Performance optimization and bottleneck detection
687
+ - `review-architecture` - Software architecture and design pattern analysis
688
+ - `review-tests` - Test quality and coverage analysis
689
+ - `review-dependencies` - Dependency management and security analysis
690
+ - `review-complexity` - Code complexity and maintainability assessment
691
+ - `review-database` - Database design and optimization review
555
692
 
556
693
  #### Workflow Sub-Agents
557
694
  - `catch-up` - Project status and context restoration with validation
@@ -560,7 +697,7 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
560
697
  #### Features
561
698
  - **Smart Statusline** - Real-time project context display with git status and cost tracking
562
699
  - **Security & Optimization** - Automatic `.claudeignore` file creation for token efficiency
563
- - **Parallel Sub-Agent Execution** - Run multiple audits simultaneously for better performance
700
+ - **Parallel Sub-Agent Execution** - Run multiple reviews simultaneously for better performance
564
701
  - **Git Safety** - Sequential git operations to prevent lock file conflicts
565
702
  - **Structured Documentation** - Organized tracking in `.docs/` directory
566
703
 
@@ -583,6 +720,7 @@ devflow init
583
720
 
584
721
  ---
585
722
 
723
+ [1.0.0]: https://github.com/dean0x/devflow/compare/v0.9.0...v1.0.0
586
724
  [0.9.0]: https://github.com/dean0x/devflow/releases/tag/v0.9.0
587
725
  [0.8.1]: https://github.com/dean0x/devflow/releases/tag/v0.8.1
588
726
  [0.8.0]: https://github.com/dean0x/devflow/releases/tag/v0.8.0
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 DevFlow Contributors
3
+ Copyright (c) 2025-2026 DevFlow Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal