devflow-kit 0.9.0 → 1.1.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 (414) hide show
  1. package/CHANGELOG.md +197 -29
  2. package/LICENSE +1 -1
  3. package/README.md +185 -309
  4. package/dist/cli.js +7 -1
  5. package/dist/commands/ambient.d.ts +18 -0
  6. package/dist/commands/ambient.js +136 -0
  7. package/dist/commands/init.d.ts +23 -0
  8. package/dist/commands/init.js +393 -571
  9. package/dist/commands/list.d.ts +3 -0
  10. package/dist/commands/list.js +20 -0
  11. package/dist/commands/memory.d.ts +22 -0
  12. package/dist/commands/memory.js +175 -0
  13. package/dist/commands/uninstall.d.ts +10 -0
  14. package/dist/commands/uninstall.js +418 -78
  15. package/dist/plugins.d.ts +46 -0
  16. package/dist/plugins.js +169 -0
  17. package/dist/utils/cli.d.ts +5 -0
  18. package/dist/utils/cli.js +14 -0
  19. package/dist/utils/installer.d.ts +41 -0
  20. package/dist/utils/installer.js +177 -0
  21. package/dist/utils/paths.d.ts +10 -0
  22. package/dist/utils/paths.js +23 -3
  23. package/dist/utils/post-install.d.ts +80 -0
  24. package/dist/utils/post-install.js +508 -0
  25. package/dist/utils/safe-delete-install.d.ts +29 -0
  26. package/dist/utils/safe-delete-install.js +191 -0
  27. package/dist/utils/safe-delete.d.ts +12 -0
  28. package/dist/utils/safe-delete.js +83 -0
  29. package/package.json +18 -8
  30. package/plugins/devflow-ambient/.claude-plugin/plugin.json +7 -0
  31. package/plugins/devflow-ambient/README.md +49 -0
  32. package/plugins/devflow-ambient/commands/ambient.md +110 -0
  33. package/plugins/devflow-ambient/skills/ambient-router/SKILL.md +89 -0
  34. package/plugins/devflow-ambient/skills/ambient-router/references/skill-catalog.md +64 -0
  35. package/plugins/devflow-audit-claude/.claude-plugin/plugin.json +7 -0
  36. package/plugins/devflow-audit-claude/README.md +46 -0
  37. package/plugins/devflow-audit-claude/agents/claude-md-auditor.md +134 -0
  38. package/plugins/devflow-audit-claude/commands/audit-claude.md +85 -0
  39. package/plugins/devflow-code-review/.claude-plugin/plugin.json +31 -0
  40. package/plugins/devflow-code-review/README.md +73 -0
  41. package/plugins/devflow-code-review/agents/git.md +272 -0
  42. package/plugins/devflow-code-review/agents/reviewer.md +119 -0
  43. package/plugins/devflow-code-review/agents/synthesizer.md +204 -0
  44. package/plugins/devflow-code-review/commands/code-review-teams.md +262 -0
  45. package/plugins/devflow-code-review/commands/code-review.md +141 -0
  46. package/plugins/devflow-code-review/skills/accessibility/SKILL.md +229 -0
  47. package/plugins/devflow-code-review/skills/accessibility/references/detection.md +171 -0
  48. package/plugins/devflow-code-review/skills/accessibility/references/patterns.md +670 -0
  49. package/plugins/devflow-code-review/skills/accessibility/references/violations.md +419 -0
  50. package/plugins/devflow-code-review/skills/agent-teams/SKILL.md +124 -0
  51. package/plugins/devflow-code-review/skills/agent-teams/references/cleanup.md +104 -0
  52. package/plugins/devflow-code-review/skills/agent-teams/references/communication.md +122 -0
  53. package/plugins/devflow-code-review/skills/agent-teams/references/team-patterns.md +217 -0
  54. package/plugins/devflow-code-review/skills/architecture-patterns/SKILL.md +153 -0
  55. package/plugins/devflow-code-review/skills/architecture-patterns/references/detection.md +337 -0
  56. package/plugins/devflow-code-review/skills/architecture-patterns/references/patterns.md +873 -0
  57. package/plugins/devflow-code-review/skills/architecture-patterns/references/violations.md +575 -0
  58. package/plugins/devflow-code-review/skills/complexity-patterns/SKILL.md +143 -0
  59. package/plugins/devflow-code-review/skills/complexity-patterns/references/detection.md +264 -0
  60. package/plugins/devflow-code-review/skills/complexity-patterns/references/patterns.md +487 -0
  61. package/plugins/devflow-code-review/skills/complexity-patterns/references/violations.md +361 -0
  62. package/plugins/devflow-code-review/skills/consistency-patterns/SKILL.md +140 -0
  63. package/plugins/devflow-code-review/skills/consistency-patterns/references/detection.md +207 -0
  64. package/plugins/devflow-code-review/skills/consistency-patterns/references/patterns.md +202 -0
  65. package/plugins/devflow-code-review/skills/consistency-patterns/references/violations.md +213 -0
  66. package/plugins/devflow-code-review/skills/database-patterns/SKILL.md +134 -0
  67. package/plugins/devflow-code-review/skills/database-patterns/references/detection.md +208 -0
  68. package/plugins/devflow-code-review/skills/database-patterns/references/patterns.md +394 -0
  69. package/plugins/devflow-code-review/skills/database-patterns/references/violations.md +332 -0
  70. package/plugins/devflow-code-review/skills/dependencies-patterns/SKILL.md +141 -0
  71. package/plugins/devflow-code-review/skills/dependencies-patterns/references/detection.md +181 -0
  72. package/plugins/devflow-code-review/skills/dependencies-patterns/references/patterns.md +225 -0
  73. package/plugins/devflow-code-review/skills/dependencies-patterns/references/violations.md +247 -0
  74. package/plugins/devflow-code-review/skills/documentation-patterns/SKILL.md +125 -0
  75. package/plugins/devflow-code-review/skills/documentation-patterns/references/detection.md +190 -0
  76. package/plugins/devflow-code-review/skills/documentation-patterns/references/patterns.md +189 -0
  77. package/plugins/devflow-code-review/skills/documentation-patterns/references/violations.md +163 -0
  78. package/plugins/devflow-code-review/skills/frontend-design/SKILL.md +254 -0
  79. package/plugins/devflow-code-review/skills/frontend-design/references/detection.md +184 -0
  80. package/plugins/devflow-code-review/skills/frontend-design/references/patterns.md +511 -0
  81. package/plugins/devflow-code-review/skills/frontend-design/references/violations.md +453 -0
  82. package/plugins/devflow-code-review/skills/performance-patterns/SKILL.md +154 -0
  83. package/plugins/devflow-code-review/skills/performance-patterns/references/detection.md +351 -0
  84. package/plugins/devflow-code-review/skills/performance-patterns/references/patterns.md +503 -0
  85. package/plugins/devflow-code-review/skills/performance-patterns/references/violations.md +354 -0
  86. package/plugins/devflow-code-review/skills/react/SKILL.md +276 -0
  87. package/plugins/devflow-code-review/skills/react/references/patterns.md +1331 -0
  88. package/plugins/devflow-code-review/skills/react/references/violations.md +565 -0
  89. package/plugins/devflow-code-review/skills/regression-patterns/SKILL.md +146 -0
  90. package/plugins/devflow-code-review/skills/regression-patterns/references/detection.md +237 -0
  91. package/plugins/devflow-code-review/skills/regression-patterns/references/patterns.md +226 -0
  92. package/plugins/devflow-code-review/skills/regression-patterns/references/violations.md +225 -0
  93. package/plugins/devflow-code-review/skills/review-methodology/SKILL.md +119 -0
  94. package/plugins/devflow-code-review/skills/review-methodology/references/patterns.md +186 -0
  95. package/plugins/devflow-code-review/skills/review-methodology/references/report-template.md +142 -0
  96. package/plugins/devflow-code-review/skills/review-methodology/references/violations.md +125 -0
  97. package/plugins/devflow-code-review/skills/security-patterns/SKILL.md +156 -0
  98. package/plugins/devflow-code-review/skills/security-patterns/references/detection.md +287 -0
  99. package/plugins/devflow-code-review/skills/security-patterns/references/patterns.md +507 -0
  100. package/plugins/devflow-code-review/skills/security-patterns/references/violations.md +237 -0
  101. package/plugins/devflow-code-review/skills/test-patterns/SKILL.md +183 -0
  102. package/plugins/devflow-code-review/skills/test-patterns/references/detection.md +149 -0
  103. package/plugins/devflow-code-review/skills/test-patterns/references/patterns.md +220 -0
  104. package/plugins/devflow-code-review/skills/test-patterns/references/report-template.md +108 -0
  105. package/plugins/devflow-code-review/skills/test-patterns/references/violations.md +221 -0
  106. package/plugins/devflow-core-skills/.claude-plugin/plugin.json +28 -0
  107. package/plugins/devflow-core-skills/README.md +50 -0
  108. package/plugins/devflow-core-skills/skills/accessibility/SKILL.md +229 -0
  109. package/plugins/devflow-core-skills/skills/accessibility/references/detection.md +171 -0
  110. package/plugins/devflow-core-skills/skills/accessibility/references/patterns.md +670 -0
  111. package/plugins/devflow-core-skills/skills/accessibility/references/violations.md +419 -0
  112. package/plugins/devflow-core-skills/skills/core-patterns/SKILL.md +162 -0
  113. package/plugins/devflow-core-skills/skills/core-patterns/references/checklist.md +276 -0
  114. package/plugins/devflow-core-skills/skills/core-patterns/references/code-smell-violations.md +144 -0
  115. package/plugins/devflow-core-skills/skills/core-patterns/references/detection.md +303 -0
  116. package/plugins/devflow-core-skills/skills/core-patterns/references/patterns.md +576 -0
  117. package/plugins/devflow-core-skills/skills/core-patterns/references/violations.md +369 -0
  118. package/plugins/devflow-core-skills/skills/docs-framework/SKILL.md +138 -0
  119. package/plugins/devflow-core-skills/skills/docs-framework/references/patterns.md +346 -0
  120. package/plugins/devflow-core-skills/skills/docs-framework/references/violations.md +221 -0
  121. package/plugins/devflow-core-skills/skills/frontend-design/SKILL.md +254 -0
  122. package/plugins/devflow-core-skills/skills/frontend-design/references/detection.md +184 -0
  123. package/plugins/devflow-core-skills/skills/frontend-design/references/patterns.md +511 -0
  124. package/plugins/devflow-core-skills/skills/frontend-design/references/violations.md +453 -0
  125. package/plugins/devflow-core-skills/skills/git-safety/SKILL.md +122 -0
  126. package/plugins/devflow-core-skills/skills/git-safety/references/detection.md +290 -0
  127. package/plugins/devflow-core-skills/skills/git-safety/references/patterns.md +289 -0
  128. package/plugins/devflow-core-skills/skills/git-safety/references/violations.md +18 -0
  129. package/plugins/devflow-core-skills/skills/git-workflow/SKILL.md +158 -0
  130. package/plugins/devflow-core-skills/skills/git-workflow/references/commit-patterns.md +115 -0
  131. package/plugins/devflow-core-skills/skills/git-workflow/references/commit-violations.md +77 -0
  132. package/plugins/devflow-core-skills/skills/git-workflow/references/pr-patterns.md +127 -0
  133. package/plugins/devflow-core-skills/skills/git-workflow/references/pr-violations.md +96 -0
  134. package/plugins/devflow-core-skills/skills/github-patterns/SKILL.md +153 -0
  135. package/plugins/devflow-core-skills/skills/github-patterns/references/patterns.md +572 -0
  136. package/plugins/devflow-core-skills/skills/github-patterns/references/violations.md +298 -0
  137. package/plugins/devflow-core-skills/skills/input-validation/SKILL.md +148 -0
  138. package/plugins/devflow-core-skills/skills/input-validation/references/detection.md +283 -0
  139. package/plugins/devflow-core-skills/skills/input-validation/references/patterns.md +361 -0
  140. package/plugins/devflow-core-skills/skills/input-validation/references/violations.md +224 -0
  141. package/plugins/devflow-core-skills/skills/react/SKILL.md +276 -0
  142. package/plugins/devflow-core-skills/skills/react/references/patterns.md +1331 -0
  143. package/plugins/devflow-core-skills/skills/react/references/violations.md +565 -0
  144. package/plugins/devflow-core-skills/skills/test-driven-development/SKILL.md +139 -0
  145. package/plugins/devflow-core-skills/skills/test-driven-development/references/rationalization-prevention.md +111 -0
  146. package/plugins/devflow-core-skills/skills/test-patterns/SKILL.md +183 -0
  147. package/plugins/devflow-core-skills/skills/test-patterns/references/detection.md +149 -0
  148. package/plugins/devflow-core-skills/skills/test-patterns/references/patterns.md +220 -0
  149. package/plugins/devflow-core-skills/skills/test-patterns/references/report-template.md +108 -0
  150. package/plugins/devflow-core-skills/skills/test-patterns/references/violations.md +221 -0
  151. package/plugins/devflow-core-skills/skills/typescript/SKILL.md +176 -0
  152. package/plugins/devflow-core-skills/skills/typescript/references/patterns.md +1105 -0
  153. package/plugins/devflow-core-skills/skills/typescript/references/violations.md +433 -0
  154. package/plugins/devflow-debug/.claude-plugin/plugin.json +18 -0
  155. package/plugins/devflow-debug/README.md +65 -0
  156. package/plugins/devflow-debug/agents/git.md +272 -0
  157. package/plugins/devflow-debug/commands/debug-teams.md +231 -0
  158. package/plugins/devflow-debug/commands/debug.md +160 -0
  159. package/plugins/devflow-debug/skills/agent-teams/SKILL.md +124 -0
  160. package/plugins/devflow-debug/skills/agent-teams/references/cleanup.md +104 -0
  161. package/plugins/devflow-debug/skills/agent-teams/references/communication.md +122 -0
  162. package/plugins/devflow-debug/skills/agent-teams/references/team-patterns.md +217 -0
  163. package/plugins/devflow-debug/skills/git-safety/SKILL.md +122 -0
  164. package/plugins/devflow-debug/skills/git-safety/references/detection.md +290 -0
  165. package/plugins/devflow-debug/skills/git-safety/references/patterns.md +289 -0
  166. package/plugins/devflow-debug/skills/git-safety/references/violations.md +18 -0
  167. package/plugins/devflow-implement/.claude-plugin/plugin.json +21 -0
  168. package/plugins/devflow-implement/README.md +71 -0
  169. package/plugins/devflow-implement/agents/coder.md +122 -0
  170. package/plugins/devflow-implement/agents/git.md +272 -0
  171. package/plugins/devflow-implement/agents/scrutinizer.md +80 -0
  172. package/plugins/devflow-implement/agents/shepherd.md +94 -0
  173. package/plugins/devflow-implement/agents/simplifier.md +62 -0
  174. package/plugins/devflow-implement/agents/skimmer.md +88 -0
  175. package/plugins/devflow-implement/agents/synthesizer.md +204 -0
  176. package/plugins/devflow-implement/agents/validator.md +86 -0
  177. package/plugins/devflow-implement/commands/implement-teams.md +608 -0
  178. package/plugins/devflow-implement/commands/implement.md +426 -0
  179. package/plugins/devflow-implement/skills/accessibility/SKILL.md +229 -0
  180. package/plugins/devflow-implement/skills/accessibility/references/detection.md +171 -0
  181. package/plugins/devflow-implement/skills/accessibility/references/patterns.md +670 -0
  182. package/plugins/devflow-implement/skills/accessibility/references/violations.md +419 -0
  183. package/plugins/devflow-implement/skills/agent-teams/SKILL.md +124 -0
  184. package/plugins/devflow-implement/skills/agent-teams/references/cleanup.md +104 -0
  185. package/plugins/devflow-implement/skills/agent-teams/references/communication.md +122 -0
  186. package/plugins/devflow-implement/skills/agent-teams/references/team-patterns.md +217 -0
  187. package/plugins/devflow-implement/skills/frontend-design/SKILL.md +254 -0
  188. package/plugins/devflow-implement/skills/frontend-design/references/detection.md +184 -0
  189. package/plugins/devflow-implement/skills/frontend-design/references/patterns.md +511 -0
  190. package/plugins/devflow-implement/skills/frontend-design/references/violations.md +453 -0
  191. package/plugins/devflow-implement/skills/implementation-patterns/SKILL.md +162 -0
  192. package/plugins/devflow-implement/skills/implementation-patterns/references/patterns.md +1063 -0
  193. package/plugins/devflow-implement/skills/implementation-patterns/references/violations.md +483 -0
  194. package/plugins/devflow-implement/skills/self-review/SKILL.md +149 -0
  195. package/plugins/devflow-implement/skills/self-review/references/patterns.md +405 -0
  196. package/plugins/devflow-implement/skills/self-review/references/report-template.md +253 -0
  197. package/plugins/devflow-implement/skills/self-review/references/violations.md +308 -0
  198. package/plugins/devflow-resolve/.claude-plugin/plugin.json +19 -0
  199. package/plugins/devflow-resolve/README.md +65 -0
  200. package/plugins/devflow-resolve/agents/git.md +272 -0
  201. package/plugins/devflow-resolve/agents/resolver.md +131 -0
  202. package/plugins/devflow-resolve/agents/simplifier.md +62 -0
  203. package/plugins/devflow-resolve/commands/resolve-teams.md +298 -0
  204. package/plugins/devflow-resolve/commands/resolve.md +237 -0
  205. package/plugins/devflow-resolve/skills/agent-teams/SKILL.md +124 -0
  206. package/plugins/devflow-resolve/skills/agent-teams/references/cleanup.md +104 -0
  207. package/plugins/devflow-resolve/skills/agent-teams/references/communication.md +122 -0
  208. package/plugins/devflow-resolve/skills/agent-teams/references/team-patterns.md +217 -0
  209. package/plugins/devflow-resolve/skills/implementation-patterns/SKILL.md +162 -0
  210. package/plugins/devflow-resolve/skills/implementation-patterns/references/patterns.md +1063 -0
  211. package/plugins/devflow-resolve/skills/implementation-patterns/references/violations.md +483 -0
  212. package/plugins/devflow-resolve/skills/security-patterns/SKILL.md +156 -0
  213. package/plugins/devflow-resolve/skills/security-patterns/references/detection.md +287 -0
  214. package/plugins/devflow-resolve/skills/security-patterns/references/patterns.md +507 -0
  215. package/plugins/devflow-resolve/skills/security-patterns/references/violations.md +237 -0
  216. package/plugins/devflow-self-review/.claude-plugin/plugin.json +7 -0
  217. package/plugins/devflow-self-review/README.md +38 -0
  218. package/plugins/devflow-self-review/agents/scrutinizer.md +80 -0
  219. package/plugins/devflow-self-review/agents/simplifier.md +62 -0
  220. package/plugins/devflow-self-review/agents/validator.md +86 -0
  221. package/plugins/devflow-self-review/commands/self-review.md +126 -0
  222. package/plugins/devflow-self-review/skills/core-patterns/SKILL.md +162 -0
  223. package/plugins/devflow-self-review/skills/core-patterns/references/checklist.md +276 -0
  224. package/plugins/devflow-self-review/skills/core-patterns/references/code-smell-violations.md +144 -0
  225. package/plugins/devflow-self-review/skills/core-patterns/references/detection.md +303 -0
  226. package/plugins/devflow-self-review/skills/core-patterns/references/patterns.md +576 -0
  227. package/plugins/devflow-self-review/skills/core-patterns/references/violations.md +369 -0
  228. package/plugins/devflow-self-review/skills/self-review/SKILL.md +149 -0
  229. package/plugins/devflow-self-review/skills/self-review/references/patterns.md +405 -0
  230. package/plugins/devflow-self-review/skills/self-review/references/report-template.md +253 -0
  231. package/plugins/devflow-self-review/skills/self-review/references/violations.md +308 -0
  232. package/plugins/devflow-specify/.claude-plugin/plugin.json +15 -0
  233. package/plugins/devflow-specify/README.md +46 -0
  234. package/plugins/devflow-specify/agents/skimmer.md +88 -0
  235. package/plugins/devflow-specify/agents/synthesizer.md +204 -0
  236. package/plugins/devflow-specify/commands/specify-teams.md +314 -0
  237. package/plugins/devflow-specify/commands/specify.md +179 -0
  238. package/plugins/devflow-specify/skills/agent-teams/SKILL.md +124 -0
  239. package/plugins/devflow-specify/skills/agent-teams/references/cleanup.md +104 -0
  240. package/plugins/devflow-specify/skills/agent-teams/references/communication.md +122 -0
  241. package/plugins/devflow-specify/skills/agent-teams/references/team-patterns.md +217 -0
  242. package/scripts/hooks/ambient-prompt.sh +48 -0
  243. package/scripts/hooks/background-memory-update.sh +208 -0
  244. package/scripts/hooks/ensure-memory-gitignore.sh +17 -0
  245. package/scripts/hooks/pre-compact-memory.sh +87 -0
  246. package/scripts/hooks/session-start-memory.sh +126 -0
  247. package/scripts/hooks/stop-update-memory.sh +85 -0
  248. package/shared/agents/coder.md +122 -0
  249. package/shared/agents/git.md +272 -0
  250. package/shared/agents/resolver.md +131 -0
  251. package/shared/agents/reviewer.md +119 -0
  252. package/shared/agents/scrutinizer.md +80 -0
  253. package/shared/agents/shepherd.md +94 -0
  254. package/shared/agents/simplifier.md +62 -0
  255. package/shared/agents/skimmer.md +88 -0
  256. package/shared/agents/synthesizer.md +204 -0
  257. package/shared/agents/validator.md +86 -0
  258. package/shared/skills/accessibility/SKILL.md +229 -0
  259. package/shared/skills/accessibility/references/detection.md +171 -0
  260. package/shared/skills/accessibility/references/patterns.md +670 -0
  261. package/shared/skills/accessibility/references/violations.md +419 -0
  262. package/shared/skills/agent-teams/SKILL.md +124 -0
  263. package/shared/skills/agent-teams/references/cleanup.md +104 -0
  264. package/shared/skills/agent-teams/references/communication.md +122 -0
  265. package/shared/skills/agent-teams/references/team-patterns.md +217 -0
  266. package/shared/skills/ambient-router/SKILL.md +89 -0
  267. package/shared/skills/ambient-router/references/skill-catalog.md +64 -0
  268. package/shared/skills/architecture-patterns/SKILL.md +153 -0
  269. package/shared/skills/architecture-patterns/references/detection.md +337 -0
  270. package/shared/skills/architecture-patterns/references/patterns.md +873 -0
  271. package/shared/skills/architecture-patterns/references/violations.md +575 -0
  272. package/shared/skills/complexity-patterns/SKILL.md +143 -0
  273. package/shared/skills/complexity-patterns/references/detection.md +264 -0
  274. package/shared/skills/complexity-patterns/references/patterns.md +487 -0
  275. package/shared/skills/complexity-patterns/references/violations.md +361 -0
  276. package/shared/skills/consistency-patterns/SKILL.md +140 -0
  277. package/shared/skills/consistency-patterns/references/detection.md +207 -0
  278. package/shared/skills/consistency-patterns/references/patterns.md +202 -0
  279. package/shared/skills/consistency-patterns/references/violations.md +213 -0
  280. package/shared/skills/core-patterns/SKILL.md +162 -0
  281. package/shared/skills/core-patterns/references/checklist.md +276 -0
  282. package/shared/skills/core-patterns/references/code-smell-violations.md +144 -0
  283. package/shared/skills/core-patterns/references/detection.md +303 -0
  284. package/shared/skills/core-patterns/references/patterns.md +576 -0
  285. package/shared/skills/core-patterns/references/violations.md +369 -0
  286. package/shared/skills/database-patterns/SKILL.md +134 -0
  287. package/shared/skills/database-patterns/references/detection.md +208 -0
  288. package/shared/skills/database-patterns/references/patterns.md +394 -0
  289. package/shared/skills/database-patterns/references/violations.md +332 -0
  290. package/shared/skills/dependencies-patterns/SKILL.md +141 -0
  291. package/shared/skills/dependencies-patterns/references/detection.md +181 -0
  292. package/shared/skills/dependencies-patterns/references/patterns.md +225 -0
  293. package/shared/skills/dependencies-patterns/references/violations.md +247 -0
  294. package/shared/skills/docs-framework/SKILL.md +138 -0
  295. package/shared/skills/docs-framework/references/patterns.md +346 -0
  296. package/shared/skills/docs-framework/references/violations.md +221 -0
  297. package/shared/skills/documentation-patterns/SKILL.md +125 -0
  298. package/shared/skills/documentation-patterns/references/detection.md +190 -0
  299. package/shared/skills/documentation-patterns/references/patterns.md +189 -0
  300. package/shared/skills/documentation-patterns/references/violations.md +163 -0
  301. package/shared/skills/frontend-design/SKILL.md +254 -0
  302. package/shared/skills/frontend-design/references/detection.md +184 -0
  303. package/shared/skills/frontend-design/references/patterns.md +511 -0
  304. package/shared/skills/frontend-design/references/violations.md +453 -0
  305. package/shared/skills/git-safety/SKILL.md +122 -0
  306. package/shared/skills/git-safety/references/detection.md +290 -0
  307. package/shared/skills/git-safety/references/patterns.md +289 -0
  308. package/shared/skills/git-safety/references/violations.md +18 -0
  309. package/shared/skills/git-workflow/SKILL.md +158 -0
  310. package/shared/skills/git-workflow/references/commit-patterns.md +115 -0
  311. package/shared/skills/git-workflow/references/commit-violations.md +77 -0
  312. package/shared/skills/git-workflow/references/pr-patterns.md +127 -0
  313. package/shared/skills/git-workflow/references/pr-violations.md +96 -0
  314. package/shared/skills/github-patterns/SKILL.md +153 -0
  315. package/shared/skills/github-patterns/references/patterns.md +572 -0
  316. package/shared/skills/github-patterns/references/violations.md +298 -0
  317. package/shared/skills/implementation-patterns/SKILL.md +162 -0
  318. package/shared/skills/implementation-patterns/references/patterns.md +1063 -0
  319. package/shared/skills/implementation-patterns/references/violations.md +483 -0
  320. package/shared/skills/input-validation/SKILL.md +148 -0
  321. package/shared/skills/input-validation/references/detection.md +283 -0
  322. package/shared/skills/input-validation/references/patterns.md +361 -0
  323. package/shared/skills/input-validation/references/violations.md +224 -0
  324. package/shared/skills/performance-patterns/SKILL.md +154 -0
  325. package/shared/skills/performance-patterns/references/detection.md +351 -0
  326. package/shared/skills/performance-patterns/references/patterns.md +503 -0
  327. package/shared/skills/performance-patterns/references/violations.md +354 -0
  328. package/shared/skills/react/SKILL.md +276 -0
  329. package/shared/skills/react/references/patterns.md +1331 -0
  330. package/shared/skills/react/references/violations.md +565 -0
  331. package/shared/skills/regression-patterns/SKILL.md +146 -0
  332. package/shared/skills/regression-patterns/references/detection.md +237 -0
  333. package/shared/skills/regression-patterns/references/patterns.md +226 -0
  334. package/shared/skills/regression-patterns/references/violations.md +225 -0
  335. package/shared/skills/review-methodology/SKILL.md +119 -0
  336. package/shared/skills/review-methodology/references/patterns.md +186 -0
  337. package/shared/skills/review-methodology/references/report-template.md +142 -0
  338. package/shared/skills/review-methodology/references/violations.md +125 -0
  339. package/shared/skills/security-patterns/SKILL.md +156 -0
  340. package/shared/skills/security-patterns/references/detection.md +287 -0
  341. package/shared/skills/security-patterns/references/patterns.md +507 -0
  342. package/shared/skills/security-patterns/references/violations.md +237 -0
  343. package/shared/skills/self-review/SKILL.md +149 -0
  344. package/shared/skills/self-review/references/patterns.md +405 -0
  345. package/shared/skills/self-review/references/report-template.md +253 -0
  346. package/shared/skills/self-review/references/violations.md +308 -0
  347. package/shared/skills/test-driven-development/SKILL.md +139 -0
  348. package/shared/skills/test-driven-development/references/rationalization-prevention.md +111 -0
  349. package/shared/skills/test-patterns/SKILL.md +183 -0
  350. package/shared/skills/test-patterns/references/detection.md +149 -0
  351. package/shared/skills/test-patterns/references/patterns.md +220 -0
  352. package/shared/skills/test-patterns/references/report-template.md +108 -0
  353. package/shared/skills/test-patterns/references/violations.md +221 -0
  354. package/shared/skills/typescript/SKILL.md +176 -0
  355. package/shared/skills/typescript/references/patterns.md +1105 -0
  356. package/shared/skills/typescript/references/violations.md +433 -0
  357. package/src/templates/claudeignore.template +188 -0
  358. package/src/templates/managed-settings.json +160 -0
  359. package/src/templates/settings.json +59 -0
  360. package/dist/cli.d.ts.map +0 -1
  361. package/dist/cli.js.map +0 -1
  362. package/dist/commands/init.d.ts.map +0 -1
  363. package/dist/commands/init.js.map +0 -1
  364. package/dist/commands/uninstall.d.ts.map +0 -1
  365. package/dist/commands/uninstall.js.map +0 -1
  366. package/dist/utils/git.d.ts.map +0 -1
  367. package/dist/utils/git.js.map +0 -1
  368. package/dist/utils/paths.d.ts.map +0 -1
  369. package/dist/utils/paths.js.map +0 -1
  370. package/src/claude/CLAUDE.md +0 -400
  371. package/src/claude/agents/devflow/audit-architecture.md +0 -132
  372. package/src/claude/agents/devflow/audit-complexity.md +0 -132
  373. package/src/claude/agents/devflow/audit-database.md +0 -132
  374. package/src/claude/agents/devflow/audit-dependencies.md +0 -132
  375. package/src/claude/agents/devflow/audit-documentation.md +0 -132
  376. package/src/claude/agents/devflow/audit-performance.md +0 -256
  377. package/src/claude/agents/devflow/audit-security.md +0 -259
  378. package/src/claude/agents/devflow/audit-tests.md +0 -132
  379. package/src/claude/agents/devflow/audit-typescript.md +0 -132
  380. package/src/claude/agents/devflow/brainstorm.md +0 -279
  381. package/src/claude/agents/devflow/catch-up.md +0 -345
  382. package/src/claude/agents/devflow/code-review.md +0 -307
  383. package/src/claude/agents/devflow/commit.md +0 -380
  384. package/src/claude/agents/devflow/debug.md +0 -476
  385. package/src/claude/agents/devflow/design.md +0 -491
  386. package/src/claude/agents/devflow/get-issue.md +0 -286
  387. package/src/claude/agents/devflow/pr-comments.md +0 -285
  388. package/src/claude/agents/devflow/project-state.md +0 -419
  389. package/src/claude/agents/devflow/pull-request.md +0 -493
  390. package/src/claude/agents/devflow/release.md +0 -1137
  391. package/src/claude/agents/devflow/tech-debt.md +0 -338
  392. package/src/claude/commands/devflow/brainstorm.md +0 -68
  393. package/src/claude/commands/devflow/breakdown.md +0 -125
  394. package/src/claude/commands/devflow/catch-up.md +0 -29
  395. package/src/claude/commands/devflow/code-review.md +0 -237
  396. package/src/claude/commands/devflow/commit.md +0 -17
  397. package/src/claude/commands/devflow/debug.md +0 -56
  398. package/src/claude/commands/devflow/design.md +0 -82
  399. package/src/claude/commands/devflow/devlog.md +0 -408
  400. package/src/claude/commands/devflow/get-issue.md +0 -16
  401. package/src/claude/commands/devflow/implement.md +0 -100
  402. package/src/claude/commands/devflow/plan.md +0 -223
  403. package/src/claude/commands/devflow/pull-request.md +0 -20
  404. package/src/claude/commands/devflow/release.md +0 -251
  405. package/src/claude/commands/devflow/resolve-comments.md +0 -583
  406. package/src/claude/scripts/statusline.sh +0 -47
  407. package/src/claude/settings.json +0 -6
  408. package/src/claude/skills/devflow/code-smell/SKILL.md +0 -428
  409. package/src/claude/skills/devflow/debug/SKILL.md +0 -119
  410. package/src/claude/skills/devflow/error-handling/SKILL.md +0 -597
  411. package/src/claude/skills/devflow/input-validation/SKILL.md +0 -514
  412. package/src/claude/skills/devflow/pattern-check/SKILL.md +0 -238
  413. package/src/claude/skills/devflow/research/SKILL.md +0 -138
  414. package/src/claude/skills/devflow/test-design/SKILL.md +0 -384
package/CHANGELOG.md CHANGED
@@ -5,6 +5,172 @@ 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.1.0] - 2026-03-04
9
+
10
+ ### Added
11
+ - **Ambient mode** — New `devflow-ambient` plugin with `/ambient` command for proportional quality enforcement
12
+ - Intent classification (BUILD/DEBUG/REVIEW/PLAN/EXPLORE/CHAT) auto-loads relevant skills
13
+ - Three depth tiers: QUICK (zero overhead), STANDARD (2-3 skills), ESCALATE (nudge to workflows)
14
+ - Always-on mode via `devflow ambient --enable` or `devflow init --ambient`
15
+ - New `ambient-router` skill for intent/depth classification
16
+ - New `test-driven-development` skill (auto-activates for BUILD tasks)
17
+ - Skills: 24 → 26, Plugins: 8 → 9
18
+ - **Working memory enhancements** — Structured cross-session context preservation
19
+ - Structured sections: Now, Progress, Decisions, Modified Files, Context, Session Log
20
+ - Toggleable via `devflow memory --enable/--disable/--status` or `devflow init --memory/--no-memory`
21
+ - `PROJECT-PATTERNS.md` extraction — background hook accumulates patterns across sessions
22
+ - Directory separation: `.memory/` (session state) vs `.docs/` (reviews/design artifacts)
23
+ - Auto-migration from `.docs/` to `.memory/` with no-clobber semantics
24
+ - Auto-adds `.memory/` and `.docs/` to `.gitignore` on first hook run
25
+
26
+ ### Changed
27
+ - **Background agent permissions** — Replaced `--dangerously-skip-permissions` with `--tools "Write"` + `--allowedTools` for restricted file access in memory update hooks
28
+ - **Safe-delete auto-upgrade** — `devflow init` now detects outdated safe-delete blocks and silently upgrades them; no manual uninstall/reinstall needed
29
+
30
+ ### Fixed
31
+ - **Ambient depth classification** — Intent now drives depth exclusively; removed 20-word threshold that silently downgraded ~32% of BUILD/DEBUG prompts to QUICK (#73)
32
+ - **Safe-delete file existence** — Filter non-existent files before calling `trash` in bash/zsh, fish, and PowerShell Unix blocks; prevents noisy `trash: file doesn't exist` errors on `rm -f` of missing files (#74)
33
+ - **Safe-delete deny list** — Expanded `rm` deny patterns from 8 to 21, covering `rm -r`, `rm -fr`, and `rm -f` flag variations that could bypass the `rm -rf`-only patterns (#74)
34
+
35
+ ---
36
+
37
+ ## [1.0.0] - 2026-02-25
38
+
39
+ ### Added
40
+ - **Agent Teams integration** - Peer-to-peer agent collaboration across workflows
41
+ - `/code-review` uses adversarial review team with debate round and consensus findings
42
+ - `/implement` uses exploration and planning teams with debate, Shepherd↔Coder direct dialogue
43
+ - New `/debug` command for competing hypothesis investigation with agent teams
44
+ - `agent-teams` foundation skill with team spawning, challenge protocol, consensus formation
45
+ - Graceful fallback to parallel subagents when Agent Teams is unavailable
46
+ - **`devflow-debug` plugin** - New plugin for bug investigation
47
+ - `/debug` command spawns 3-5 hypothesis investigators
48
+ - Adversarial debate where agents actively disprove each other's theories
49
+ - Root cause analysis report with confidence levels
50
+ - **`accessibility` skill** - WCAG 2.1 AA patterns for keyboard navigation, ARIA, contrast
51
+ - Iron Law: EVERY INTERACTION MUST BE POSSIBLE WITHOUT A MOUSE
52
+ - Auto-triggers when creating UI components, forms, or interactive elements
53
+ - **`frontend-design` skill** - Intentional visual design patterns (Anthropic's 4 Dimensions)
54
+ - Iron Law: AESTHETICS MUST HAVE INTENT
55
+ - AI slop detection (purple-pink gradients, Inter without rationale, everything centered)
56
+ - Auto-triggers when working with CSS, styling, or visual design
57
+ - **Enhanced `react` skill** - Added 5 new categories from Vercel best practices
58
+ - Async Parallelization (Promise.all for independent fetches)
59
+ - Bundle Size (no barrel imports, lazy loading)
60
+ - Re-render Optimization (primitive deps, stable callbacks)
61
+ - Image Optimization (dimensions, lazy loading, aspect-ratio)
62
+ - Data Structure Performance (Set/Map for O(1) lookups)
63
+ - **Conditional frontend reviews** in `/code-review` command
64
+ - `react` review (if .tsx/.jsx files changed)
65
+ - `accessibility` review (if .tsx/.jsx files changed)
66
+ - `frontend-design` review (if .tsx/.jsx/.css/.scss files changed)
67
+ - **Glob pattern activation schema** for skills
68
+ - Skills can declare `activation.file-patterns` and `activation.exclude` in frontmatter
69
+ - Future-proofs for conditional skill loading
70
+ - **`github-patterns` skill** - Foundation skill for GitHub API interactions
71
+ - Rate limiting patterns (1-2s delays, 60s wait if <10 remaining)
72
+ - Comment deduplication algorithms
73
+ - Line-in-diff validation for PR comments
74
+ - Issue data parsing (acceptance criteria, dependencies)
75
+ - Branch name generation from issues
76
+ - Tech debt management patterns (archive on overflow)
77
+ - Iron Law: RESPECT RATE LIMITS OR FAIL GRACEFULLY
78
+ - **Unified `Git` agent** - Single parameterized agent for all git/GitHub operations
79
+ - `fetch-issue` operation: Fetches GitHub issue details with acceptance criteria and suggested branch name
80
+ - `comment-pr` operation: Creates PR inline comments with deduplication and rate limiting
81
+ - `manage-debt` operation: Updates tech debt backlog issue with semantic deduplication
82
+ - `create-release` operation: Creates GitHub release with version tag
83
+ - Replaces: GetIssue, Comment, TechDebt agents
84
+ - **`git-workflow` skill** - Unified commit and PR patterns (atomic commits, message format, PR quality)
85
+ - Iron Law: ATOMIC COMMITS OR NO COMMITS
86
+ - Auto-triggers when staging files, creating commits, or opening PRs
87
+ - **Iron Laws** - Every skill now has a single, non-negotiable core principle
88
+ - 24 Iron Laws across all skills (e.g., "NEVER THROW IN BUSINESS LOGIC", "NO FAKE SOLUTIONS")
89
+ - Automatically enforced when skills activate
90
+ - Consistent format: `## Iron Law` section in each SKILL.md
91
+ - **Clarification Gates** for `/specify` command
92
+ - Gate 0: Confirm understanding before exploration
93
+ - Gate 1: Validate scope and priorities after exploration
94
+ - Gate 2: Confirm acceptance criteria before issue creation
95
+ - No gate may be skipped - explicit user approval required
96
+ - **Security deny list** via OS-level managed settings (140 blocked operations)
97
+ - System destruction (rm -rf, dd, mkfs, shred)
98
+ - Code execution (curl|bash, eval, exec)
99
+ - Privilege escalation (sudo, su, doas, pkexec)
100
+ - Permission changes (chmod 777, chown root)
101
+ - System control (kill -9, reboot, shutdown)
102
+ - Data exfiltration (netcat, socat, telnet)
103
+ - Sensitive file reads (.env, SSH keys, AWS credentials)
104
+ - Package globals (npm -g, pip --system)
105
+ - Resource abuse (fork bombs, crypto miners)
106
+ - **`ENABLE_TOOL_SEARCH`** environment variable in settings
107
+ - Deferred MCP tool loading until needed
108
+ - ~85% token reduction for conversations with many MCP tools
109
+ - **Context usage percentage** in statusline
110
+ - Replaces binary "exceeds 200k" warning
111
+ - Color-coded: Green (<50%), Yellow (50-80%), Red (>80%)
112
+ - Calculated from `context_window.current_usage` data
113
+ - **Working Memory hooks** — Automatic session continuity via stop/session-start/pre-compact hooks (#59)
114
+ - Background haiku updater writes `.docs/WORKING-MEMORY.md` asynchronously
115
+ - SessionStart hook injects previous memory + git state on startup
116
+ - mkdir-based locking for concurrent session safety
117
+ - **Teams/no-teams command variants** — Install-time selection of Agent Teams vs parallel subagents (#61)
118
+ - `--teams`/`--no-teams` CLI flags with TTY confirmation prompt
119
+ - Variant-aware installer copies correct `.md` files
120
+ - `stripTeamsConfig()` removes teams env vars when disabled
121
+
122
+ ### Changed
123
+ - **Lean agent and command redesign** - Major refactoring reducing 3,653 lines to 844 (-77%)
124
+ - Commands: `/implement` (479→182), `/specify` (631→179), `/devlog` (408→113), `/code-review` (312→136)
125
+ - Agents: Coder, Synthesizer, Reviewer, Git, Devlog, CatchUp, Skimmer, Simplifier
126
+ - Removed embedded bash scripts, verbose templates, redundant explanations
127
+ - Preserved all workflows, agent invocations, and architecture
128
+ - **Agent model assignments** - Simplified to inherit vs haiku
129
+ - `inherit`: Coder, Reviewer, Simplifier, Skimmer (use orchestrator's model)
130
+ - `haiku`: Synthesizer, Git, Devlog, CatchUp (fast, simple operations)
131
+ - `/specify` now requires explicit user confirmation at each gate
132
+ - Statusline shows actual percentage instead of just large context warning
133
+ - Settings template includes permissions.deny and env configuration
134
+ - Commit and PR patterns now auto-activate via skills instead of requiring explicit commands
135
+ - **Skills consolidation** — 28 skills merged to 24
136
+ - `test-design` + `tests-patterns` → `test-patterns`
137
+ - `commit` + `pull-request` → `git-workflow`
138
+ - `code-smell` absorbed into `core-patterns`
139
+ - `codebase-navigation` removed (redundant with Explore agent)
140
+ - `devflow-` prefix dropped from all skill names
141
+ - **Managed settings** replace `--override-settings` flag — OS-level deny list installed to system-managed path, non-overridable by user settings
142
+ - **CLAUDE.md creation removed** — opinionated template no longer forced on users during init
143
+ - **`--teams` default flipped to off** — Agent Teams now opt-in via `--teams` flag
144
+ - **`/review` renamed to `/code-review`** — Plugin directory, command files, CLI registry, and all cross-references updated for clarity
145
+ - **Landing page** — Reference badge and repo homepage URL added
146
+
147
+ ### Removed
148
+ - **`/commit` command** - Replaced by `git-workflow` skill (use `git commit` directly)
149
+ - **`/pull-request` command** - Replaced by `git-workflow` skill (use `gh pr create` directly)
150
+ - **`/breakdown` command** - Removed (use natural conversation or TodoWrite directly)
151
+ - **`/release` command** - Removed (use manual release process)
152
+ - **`/resolve-comments` command** - Removed (address PR comments directly)
153
+ - **`/run` command** - Removed (use `/implement` for full lifecycle)
154
+ - **`Commit` agent** - Patterns moved to `git-workflow` skill
155
+ - **`PullRequest` agent** - Patterns moved to `git-workflow` skill
156
+ - **`Release` agent** - Removed (use manual release process)
157
+ - **`/catch-up` command** - Superseded by Working Memory hooks (automatic context restoration)
158
+ - **`/devlog` command** - Superseded by Working Memory hooks (automatic session logging)
159
+ - **`catch-up` agent** - No longer needed with automatic Working Memory
160
+ - **`devlog` agent** - No longer needed with automatic Working Memory
161
+ - **`GetIssue` agent** - Replaced by Git agent (operation: fetch-issue)
162
+ - **`Comment` agent** - Replaced by Git agent (operation: comment-pr)
163
+ - **`TechDebt` agent** - Replaced by Git agent (operation: manage-debt)
164
+
165
+ ### Fixed
166
+ - **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)
167
+ - **Stale CLAUDE.md in files array** — Removed from `package.json` after CLAUDE.md creation was dropped
168
+ - **Skimmer agent** — Use `npx rskim` to eliminate global install requirement (#60)
169
+ - **Working Memory throttle race** — Marker file prevents concurrent updater spawns during Agent Teams sessions (#62)
170
+ - **Working Memory diagnostics** — stderr captured to log file instead of swallowed (#62)
171
+
172
+ ---
173
+
8
174
  ## [0.9.0] - 2025-12-04
9
175
 
10
176
  ### Added
@@ -74,7 +240,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
240
  - Trust agent judgment after safety checks pass
75
241
  - Only abort for genuine issues (secrets, credentials)
76
242
  - Faster workflow without back-and-forth
77
- - **`/implement` command** - Streamlined from 507 to ~100 lines
243
+ - **`/run` command** - Streamlined from 507 to ~100 lines (renamed from `/implement`)
78
244
  - Removed over-engineered interactive triage
79
245
  - Focus on efficient task execution
80
246
  - Only stop for genuine design decisions
@@ -127,7 +293,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127
293
  - Tracks completion status
128
294
 
129
295
  #### Enhanced Audit System
130
- - **Three-category reporting** - All 9 audit agents refactored for clearer feedback
296
+ - **Three-category reporting** - All 9 review agents refactored for clearer feedback
131
297
  - **🔴 Issues in Your Changes** - NEW vulnerabilities/problems introduced (BLOCKING)
132
298
  - **⚠️ Issues in Code You Touched** - Problems near your changes (SHOULD FIX)
133
299
  - **ℹ️ Pre-existing Issues** - Legacy problems unrelated to PR (INFORMATIONAL)
@@ -142,7 +308,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
142
308
 
143
309
  #### Code Review Command Rewrite
144
310
  - **Completely rewritten `/code-review` command** - Better orchestration and synthesis
145
- - Orchestrates all audit sub-agents in parallel for faster execution
311
+ - Orchestrates all review sub-agents in parallel for faster execution
146
312
  - Synthesizes findings from three-category reports
147
313
  - Generates actionable summary with clear priorities
148
314
  - Separates blocking issues from informational findings
@@ -244,7 +410,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
244
410
  - Automatic activation based on conversation context
245
411
 
246
412
  #### Smart Interactive Commands
247
- - **/implement command** - Orchestrator for guided feature implementation
413
+ - **/run command** - Orchestrator for guided feature implementation (originally `/implement`)
248
414
  - Interactive workflow for planning, research, and execution
249
415
  - Integrates with project-state agent for context gathering
250
416
  - Guides through research, design, implementation, and testing phases
@@ -304,12 +470,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
304
470
 
305
471
  ### Fixed
306
472
  - **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>/`
473
+ - **Audit report organization** - Formalized structured storage for all review reports
474
+ - Branch-specific directories: `.docs/reviews/<branch-name>/`
309
475
  - Timestamped reports for historical tracking
310
- - Standardized naming: `<audit-type>-report.<timestamp>.md`
476
+ - Standardized naming: `<review-type>-report.<timestamp>.md`
311
477
  - Standalone directory for direct agent invocations
312
- - Applied consistently across all 9 audit agents
478
+ - Applied consistently across all 9 review agents
313
479
 
314
480
  ### Added
315
481
  - **Release notes persistence** - Save comprehensive release notes to `.docs/releases/RELEASE_NOTES_v<version>.md`
@@ -373,10 +539,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
373
539
  - Never overwrites without explicit permission
374
540
 
375
541
  #### TypeScript Auditor Sub-Agent
376
- - **audit-typescript** - Specialized TypeScript code quality and type safety auditor
542
+ - **review-typescript** - Specialized TypeScript code quality and type safety auditor
377
543
  - Conditional execution: Runs only if .ts/.tsx files changed OR tsconfig.json exists
378
544
  - Built-in detection logic (gracefully skips non-TypeScript projects)
379
- - Comprehensive audits: type safety config, `any` usage, type assertions, branded types
545
+ - Comprehensive reviews: type safety config, `any` usage, type assertions, branded types
380
546
  - Advanced patterns: discriminated unions, immutability, Result types
381
547
  - Code quality: naming conventions, dependency injection, pure functions
382
548
  - Severity-based reporting (CRITICAL/HIGH/MEDIUM/LOW) with file:line references
@@ -424,17 +590,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
424
590
  13. Provide verification links and next steps
425
591
 
426
592
  ### Changed
427
- - **Pre-commit workflow** - Integrated audit-typescript into 5-agent review
593
+ - **Pre-commit workflow** - Integrated review-typescript into 5-agent review
428
594
  - Conditionally executes for TypeScript projects
429
595
  - No manual configuration needed
430
- - **Pre-PR workflow** - Integrated audit-typescript into comprehensive review
596
+ - **Pre-PR workflow** - Integrated review-typescript into comprehensive review
431
597
  - Automatic TypeScript detection and execution
432
- - Preserves existing audit orchestration patterns
598
+ - Preserves existing review orchestration patterns
433
599
 
434
600
  ### Documentation
435
601
  - Added `/release` command to README commands table
436
602
  - Added `release` sub-agent to README sub-agents table
437
- - Added `audit-typescript` sub-agent to README sub-agents table
603
+ - Added `review-typescript` sub-agent to README sub-agents table
438
604
  - Created "Creating a Release" workflow section in README
439
605
  - Documented smart CLAUDE.md installation behavior
440
606
  - Included release automation in integration examples
@@ -443,7 +609,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
443
609
  ## [0.2.0] - 2025-10-16
444
610
 
445
611
  ### Added
446
- - **audit-documentation sub-agent** - Ensures documentation stays aligned with code
612
+ - **review-documentation sub-agent** - Ensures documentation stays aligned with code
447
613
  - Validates README accuracy (installation, usage, examples)
448
614
  - Checks API documentation matches actual function signatures
449
615
  - Detects stale code comments and commented-out code
@@ -469,12 +635,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
469
635
 
470
636
  ### Changed
471
637
  - **Pre-commit strategy** - Lightweight 5-agent review for fast feedback
472
- - Core audits: Security, Performance, Architecture, Tests, Complexity
638
+ - Core reviews: Security, Performance, Architecture, Tests, Complexity
473
639
  - Typical execution: 30-60 seconds
474
- - Additional audits available on explicit request
640
+ - Additional reviews available on explicit request
475
641
  - **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)
642
+ - All core reviews plus Dependencies and Documentation
643
+ - Conditional Database review (only if DB files changed)
478
644
  - Typical execution: 2-3 minutes
479
645
  - Thorough branch review before PR creation
480
646
  - **Path handling** - No longer assumes HOME environment variable
@@ -493,8 +659,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
493
659
  - **Hardcoded path assumptions** - Proper fallbacks and environment overrides
494
660
 
495
661
  ### Documentation
496
- - Added audit-documentation to sub-agents table in README
497
- - Clarified audit strategies for pre-commit vs pre-pr
662
+ - Added review-documentation to sub-agents table in README
663
+ - Clarified review strategies for pre-commit vs pre-pr
498
664
  - Updated workflow examples with refined command usage
499
665
 
500
666
  ## [0.1.2] - 2025-10-05
@@ -545,13 +711,13 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
545
711
  - `/debug [issue]` - Systematic debugging with issue-specific investigation
546
712
 
547
713
  #### 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
714
+ - `review-security` - Security vulnerability detection and analysis
715
+ - `review-performance` - Performance optimization and bottleneck detection
716
+ - `review-architecture` - Software architecture and design pattern analysis
717
+ - `review-tests` - Test quality and coverage analysis
718
+ - `review-dependencies` - Dependency management and security analysis
719
+ - `review-complexity` - Code complexity and maintainability assessment
720
+ - `review-database` - Database design and optimization review
555
721
 
556
722
  #### Workflow Sub-Agents
557
723
  - `catch-up` - Project status and context restoration with validation
@@ -560,7 +726,7 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
560
726
  #### Features
561
727
  - **Smart Statusline** - Real-time project context display with git status and cost tracking
562
728
  - **Security & Optimization** - Automatic `.claudeignore` file creation for token efficiency
563
- - **Parallel Sub-Agent Execution** - Run multiple audits simultaneously for better performance
729
+ - **Parallel Sub-Agent Execution** - Run multiple reviews simultaneously for better performance
564
730
  - **Git Safety** - Sequential git operations to prevent lock file conflicts
565
731
  - **Structured Documentation** - Organized tracking in `.docs/` directory
566
732
 
@@ -583,6 +749,8 @@ devflow init
583
749
 
584
750
  ---
585
751
 
752
+ [1.1.0]: https://github.com/dean0x/devflow/compare/v1.0.0...v1.1.0
753
+ [1.0.0]: https://github.com/dean0x/devflow/compare/v0.9.0...v1.0.0
586
754
  [0.9.0]: https://github.com/dean0x/devflow/releases/tag/v0.9.0
587
755
  [0.8.1]: https://github.com/dean0x/devflow/releases/tag/v0.8.1
588
756
  [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