mdan-cli 2.5.0 → 2.5.2

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 (706) hide show
  1. package/.augment/code_review_guidelines.yaml +271 -0
  2. package/.claude/skills/bmad-os-audit-file-refs/SKILL.md +6 -0
  3. package/.claude/skills/bmad-os-audit-file-refs/prompts/instructions.md +59 -0
  4. package/.claude/skills/bmad-os-changelog-social/SKILL.md +177 -0
  5. package/.claude/skills/bmad-os-changelog-social/examples/discord-example.md +53 -0
  6. package/.claude/skills/bmad-os-changelog-social/examples/linkedin-example.md +49 -0
  7. package/.claude/skills/bmad-os-changelog-social/examples/twitter-example.md +55 -0
  8. package/.claude/skills/bmad-os-diataxis-style-fix/SKILL.md +6 -0
  9. package/.claude/skills/bmad-os-diataxis-style-fix/prompts/instructions.md +229 -0
  10. package/.claude/skills/bmad-os-draft-changelog/SKILL.md +6 -0
  11. package/.claude/skills/bmad-os-draft-changelog/prompts/instructions.md +82 -0
  12. package/.claude/skills/bmad-os-gh-triage/SKILL.md +6 -0
  13. package/.claude/skills/bmad-os-gh-triage/prompts/agent-prompt.md +60 -0
  14. package/.claude/skills/bmad-os-gh-triage/prompts/instructions.md +74 -0
  15. package/.claude/skills/bmad-os-release-module/SKILL.md +6 -0
  16. package/.claude/skills/bmad-os-release-module/prompts/instructions.md +53 -0
  17. package/.claude/skills/bmad-os-review-pr/SKILL.md +6 -0
  18. package/.claude/skills/bmad-os-review-pr/prompts/instructions.md +231 -0
  19. package/.claude/skills/bmad-os-root-cause-analysis/SKILL.md +12 -0
  20. package/.claude/skills/bmad-os-root-cause-analysis/prompts/instructions.md +74 -0
  21. package/.coderabbit.yaml +85 -0
  22. package/.github/CODE_OF_CONDUCT.md +128 -0
  23. package/.github/FUNDING.yaml +15 -0
  24. package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
  25. package/.github/ISSUE_TEMPLATE/config.yaml +8 -0
  26. package/.github/ISSUE_TEMPLATE/documentation.yaml +55 -0
  27. package/.github/ISSUE_TEMPLATE/feature-request.md +22 -0
  28. package/.github/ISSUE_TEMPLATE/issue.md +32 -0
  29. package/.github/PULL_REQUEST_TEMPLATE.md +13 -0
  30. package/.github/scripts/discord-helpers.sh +34 -0
  31. package/.github/workflows/coderabbit-review.yaml +22 -0
  32. package/.github/workflows/discord.yaml +90 -0
  33. package/.github/workflows/docs.yaml +64 -0
  34. package/.github/workflows/quality.yaml +116 -0
  35. package/.husky/pre-commit +20 -0
  36. package/.markdownlint-cli2.yaml +41 -0
  37. package/.nvmrc +1 -0
  38. package/.prettierignore +12 -0
  39. package/.vscode/settings.json +96 -0
  40. package/AGENTS.md +227 -165
  41. package/AGENTS_LIST.md +946 -0
  42. package/ARCHITECTURE.md +590 -0
  43. package/CHANGELOG.md +1770 -0
  44. package/CNAME +1 -0
  45. package/CONTRIBUTING.md +512 -0
  46. package/CONTRIBUTORS.md +32 -0
  47. package/INSTALL.md +246 -0
  48. package/LICENSE +30 -0
  49. package/README.md +133 -194
  50. package/RELEASE_NOTES.md +246 -0
  51. package/SECURITY.md +85 -0
  52. package/TRADEMARK.md +55 -0
  53. package/USAGE.md +368 -0
  54. package/Wordmark.png +0 -0
  55. package/app/__init__.py +5 -0
  56. package/app/cis/agents/__init__.py +31 -0
  57. package/app/cis/agents/brainstorming-coach/__init__.py +3 -0
  58. package/app/cis/agents/brainstorming-coach/agent.py +162 -0
  59. package/app/cis/agents/brainstorming-coach/prompt.yaml +53 -0
  60. package/app/cis/agents/creative-problem-solver/__init__.py +3 -0
  61. package/app/cis/agents/creative-problem-solver/agent.py +233 -0
  62. package/app/cis/agents/creative-problem-solver/prompt.yaml +74 -0
  63. package/app/cis/agents/design-thinking-coach/__init__.py +3 -0
  64. package/app/cis/agents/design-thinking-coach/agent.py +241 -0
  65. package/app/cis/agents/design-thinking-coach/prompt.yaml +77 -0
  66. package/app/cis/agents/innovation-strategist/__init__.py +3 -0
  67. package/app/cis/agents/innovation-strategist/agent.py +271 -0
  68. package/app/cis/agents/innovation-strategist/prompt.yaml +70 -0
  69. package/app/cis/agents/presentation-master/__init__.py +3 -0
  70. package/app/cis/agents/presentation-master/agent.py +420 -0
  71. package/app/cis/agents/presentation-master/prompt.yaml +62 -0
  72. package/app/cis/agents/storyteller/__init__.py +3 -0
  73. package/app/cis/agents/storyteller/agent.py +303 -0
  74. package/app/cis/agents/storyteller/prompt.yaml +99 -0
  75. package/app/core/__init__.py +5 -0
  76. package/app/core/agents/__init__.py +5 -0
  77. package/app/core/agents/mdan-master/__init__.py +7 -0
  78. package/app/core/agents/mdan-master/agent.py +302 -0
  79. package/app/core/agents/mdan-master/prompt.yaml +105 -0
  80. package/app/mmb/agents/__init__.py +24 -0
  81. package/app/mmb/agents/agent-builder/__init__.py +5 -0
  82. package/app/mmb/agents/agent-builder/agent.py +261 -0
  83. package/app/mmb/agents/agent-builder/prompt.yaml +48 -0
  84. package/app/mmb/agents/module-builder/__init__.py +5 -0
  85. package/app/mmb/agents/module-builder/agent.py +299 -0
  86. package/app/mmb/agents/module-builder/prompt.yaml +50 -0
  87. package/app/mmb/agents/workflow-builder/__init__.py +5 -0
  88. package/app/mmb/agents/workflow-builder/agent.py +318 -0
  89. package/app/mmb/agents/workflow-builder/prompt.yaml +52 -0
  90. package/app/mmm/agents/__init__.py +48 -0
  91. package/app/mmm/agents/analyst/__init__.py +7 -0
  92. package/app/mmm/agents/analyst/agent.py +384 -0
  93. package/app/mmm/agents/analyst/prompt.yaml +62 -0
  94. package/app/mmm/agents/architect/__init__.py +7 -0
  95. package/app/mmm/agents/architect/agent.py +300 -0
  96. package/app/mmm/agents/architect/prompt.yaml +66 -0
  97. package/app/mmm/agents/dev/__init__.py +7 -0
  98. package/app/mmm/agents/dev/agent.py +285 -0
  99. package/app/mmm/agents/dev/prompt.yaml +62 -0
  100. package/app/mmm/agents/pm/__init__.py +7 -0
  101. package/app/mmm/agents/pm/agent.py +417 -0
  102. package/app/mmm/agents/pm/prompt.yaml +64 -0
  103. package/app/mmm/agents/qa/__init__.py +7 -0
  104. package/app/mmm/agents/qa/agent.py +267 -0
  105. package/app/mmm/agents/qa/prompt.yaml +67 -0
  106. package/app/mmm/agents/quick-flow-solo-dev/__init__.py +7 -0
  107. package/app/mmm/agents/quick-flow-solo-dev/agent.py +319 -0
  108. package/app/mmm/agents/quick-flow-solo-dev/prompt.yaml +60 -0
  109. package/app/mmm/agents/sm/__init__.py +7 -0
  110. package/app/mmm/agents/sm/agent.py +357 -0
  111. package/app/mmm/agents/sm/prompt.yaml +61 -0
  112. package/app/mmm/agents/tech-writer/__init__.py +7 -0
  113. package/app/mmm/agents/tech-writer/agent.py +420 -0
  114. package/app/mmm/agents/tech-writer/prompt.yaml +70 -0
  115. package/app/mmm/agents/ux-designer/__init__.py +14 -0
  116. package/app/mmm/agents/ux-designer/agent.py +412 -0
  117. package/app/mmm/agents/ux-designer/prompt.yaml +37 -0
  118. package/app/packs/__init__.py +32 -0
  119. package/app/packs/db-optimization/__init__.py +13 -0
  120. package/app/packs/db-optimization/agents/__init__.py +11 -0
  121. package/app/packs/db-optimization/agents/db-performance-analyst/__init__.py +5 -0
  122. package/app/packs/db-optimization/agents/db-performance-analyst/agent.py +559 -0
  123. package/app/packs/db-optimization/agents/db-performance-analyst/prompt.yaml +63 -0
  124. package/app/packs/db-optimization/agents/indexing-specialist/__init__.py +5 -0
  125. package/app/packs/db-optimization/agents/indexing-specialist/agent.py +713 -0
  126. package/app/packs/db-optimization/agents/indexing-specialist/prompt.yaml +92 -0
  127. package/app/packs/db-optimization/agents/query-optimizer/__init__.py +5 -0
  128. package/app/packs/db-optimization/agents/query-optimizer/agent.py +566 -0
  129. package/app/packs/db-optimization/agents/query-optimizer/prompt.yaml +74 -0
  130. package/app/packs/devops-azure/__init__.py +13 -0
  131. package/app/packs/devops-azure/agents/__init__.py +11 -0
  132. package/app/packs/devops-azure/agents/azure-specialist/__init__.py +5 -0
  133. package/app/packs/devops-azure/agents/azure-specialist/agent.py +584 -0
  134. package/app/packs/devops-azure/agents/azure-specialist/prompt.yaml +301 -0
  135. package/app/packs/devops-azure/agents/cicd-architect/__init__.py +5 -0
  136. package/app/packs/devops-azure/agents/cicd-architect/agent.py +665 -0
  137. package/app/packs/devops-azure/agents/cicd-architect/prompt.yaml +409 -0
  138. package/app/packs/devops-azure/agents/devops-engineer/__init__.py +5 -0
  139. package/app/packs/devops-azure/agents/devops-engineer/agent.py +545 -0
  140. package/app/packs/devops-azure/agents/devops-engineer/prompt.yaml +263 -0
  141. package/app/packs/fintech/__init__.py +13 -0
  142. package/app/packs/fintech/agents/__init__.py +11 -0
  143. package/app/packs/fintech/agents/compliance-officer/__init__.py +5 -0
  144. package/app/packs/fintech/agents/compliance-officer/agent.py +449 -0
  145. package/app/packs/fintech/agents/compliance-officer/prompt.yaml +135 -0
  146. package/app/packs/fintech/agents/financial-analyst/__init__.py +5 -0
  147. package/app/packs/fintech/agents/financial-analyst/agent.py +392 -0
  148. package/app/packs/fintech/agents/financial-analyst/prompt.yaml +143 -0
  149. package/app/packs/fintech/agents/risk-manager/__init__.py +5 -0
  150. package/app/packs/fintech/agents/risk-manager/agent.py +664 -0
  151. package/app/packs/fintech/agents/risk-manager/prompt.yaml +240 -0
  152. package/app/tea/agents/tea/__init__.py +9 -0
  153. package/app/tea/agents/tea/agent.py +689 -0
  154. package/app/tea/agents/tea/prompt.yaml +100 -0
  155. package/banner-bmad-method.png +0 -0
  156. package/docs/404.md +9 -0
  157. package/docs/_STYLE_GUIDE.md +370 -0
  158. package/docs/explanation/advanced-elicitation.md +49 -0
  159. package/docs/explanation/adversarial-review.md +59 -0
  160. package/docs/explanation/brainstorming.md +33 -0
  161. package/docs/explanation/established-projects-faq.md +50 -0
  162. package/docs/explanation/party-mode.md +59 -0
  163. package/docs/explanation/preventing-agent-conflicts.md +112 -0
  164. package/docs/explanation/project-context.md +157 -0
  165. package/docs/explanation/quick-flow.md +73 -0
  166. package/docs/explanation/why-solutioning-matters.md +77 -0
  167. package/docs/how-to/customize-bmad.md +172 -0
  168. package/docs/how-to/established-projects.md +117 -0
  169. package/docs/how-to/get-answers-about-bmad.md +134 -0
  170. package/docs/how-to/install-bmad.md +97 -0
  171. package/docs/how-to/non-interactive-installation.md +171 -0
  172. package/docs/how-to/project-context.md +136 -0
  173. package/docs/how-to/quick-fixes.md +123 -0
  174. package/docs/how-to/shard-large-documents.md +78 -0
  175. package/docs/how-to/upgrade-to-v6.md +97 -0
  176. package/docs/index.md +59 -0
  177. package/docs/reference/agents.md +28 -0
  178. package/docs/reference/commands.md +151 -0
  179. package/docs/reference/modules.md +76 -0
  180. package/docs/reference/testing.md +106 -0
  181. package/docs/reference/workflow-map.md +89 -0
  182. package/docs/roadmap.mdx +136 -0
  183. package/docs/tutorials/getting-started.md +286 -0
  184. package/eslint.config.mjs +141 -0
  185. package/package.json +106 -37
  186. package/prettier.config.mjs +32 -0
  187. package/prompts/cis/brainstorming-coach.yaml +53 -0
  188. package/prompts/cis/creative-problem-solver.yaml +74 -0
  189. package/prompts/cis/design-thinking-coach.yaml +77 -0
  190. package/prompts/cis/innovation-strategist.yaml +70 -0
  191. package/prompts/cis/presentation-master.yaml +62 -0
  192. package/prompts/cis/storyteller.yaml +99 -0
  193. package/prompts/core/mdan-master.yaml +105 -0
  194. package/prompts/mmb/agent-builder.yaml +48 -0
  195. package/prompts/mmb/module-builder.yaml +50 -0
  196. package/prompts/mmb/workflow-builder.yaml +52 -0
  197. package/prompts/mmm/analyst.yaml +62 -0
  198. package/prompts/mmm/architect.yaml +66 -0
  199. package/prompts/mmm/dev.yaml +62 -0
  200. package/prompts/mmm/pm.yaml +64 -0
  201. package/prompts/mmm/qa.yaml +67 -0
  202. package/prompts/mmm/quick-flow-solo-dev.yaml +60 -0
  203. package/prompts/mmm/sm.yaml +61 -0
  204. package/prompts/mmm/tech-writer.yaml +70 -0
  205. package/prompts/mmm/ux-designer.yaml +33 -0
  206. package/prompts/packs/db-optimization/db-performance-analyst.yaml +63 -0
  207. package/prompts/packs/db-optimization/indexing-specialist.yaml +92 -0
  208. package/prompts/packs/db-optimization/query-optimizer.yaml +74 -0
  209. package/prompts/packs/devops-azure/azure-specialist.yaml +301 -0
  210. package/prompts/packs/devops-azure/cicd-architect.yaml +409 -0
  211. package/prompts/packs/devops-azure/devops-engineer.yaml +263 -0
  212. package/prompts/packs/fintech/compliance-officer.yaml +135 -0
  213. package/prompts/packs/fintech/financial-analyst.yaml +143 -0
  214. package/prompts/packs/fintech/risk-manager.yaml +240 -0
  215. package/prompts/tea/tea.yaml +100 -0
  216. package/prompts.json +237 -0
  217. package/src/bmm/agents/analyst.agent.yaml +43 -0
  218. package/src/bmm/agents/architect.agent.yaml +29 -0
  219. package/src/bmm/agents/dev.agent.yaml +38 -0
  220. package/src/bmm/agents/pm.agent.yaml +44 -0
  221. package/src/bmm/agents/qa.agent.yaml +58 -0
  222. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
  223. package/src/bmm/agents/sm.agent.yaml +37 -0
  224. package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
  225. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +46 -0
  226. package/src/bmm/agents/ux-designer.agent.yaml +27 -0
  227. package/src/bmm/data/project-context-template.md +26 -0
  228. package/src/bmm/module-help.csv +31 -0
  229. package/src/bmm/module.yaml +50 -0
  230. package/src/bmm/teams/default-party.csv +20 -0
  231. package/src/bmm/teams/team-fullstack.yaml +12 -0
  232. package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
  233. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
  234. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
  235. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
  236. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
  237. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
  238. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
  239. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +162 -0
  240. package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +57 -0
  241. package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
  242. package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
  243. package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
  244. package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
  245. package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
  246. package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +444 -0
  247. package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
  248. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
  249. package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
  250. package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
  251. package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
  252. package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +476 -0
  253. package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
  254. package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
  255. package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
  256. package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
  257. package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
  258. package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +233 -0
  259. package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +487 -0
  260. package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +54 -0
  261. package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +54 -0
  262. package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +54 -0
  263. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +15 -0
  264. package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -0
  265. package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +11 -0
  266. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +191 -0
  267. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01b-continue.md +152 -0
  268. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +224 -0
  269. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +154 -0
  270. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +170 -0
  271. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +226 -0
  272. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +213 -0
  273. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +207 -0
  274. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +226 -0
  275. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +237 -0
  276. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +228 -0
  277. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +231 -0
  278. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +242 -0
  279. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +217 -0
  280. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +124 -0
  281. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +247 -0
  282. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
  283. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +249 -0
  284. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +253 -0
  285. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +168 -0
  286. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +226 -0
  287. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +191 -0
  288. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +209 -0
  289. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +174 -0
  290. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
  291. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +228 -0
  292. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +217 -0
  293. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
  294. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
  295. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +263 -0
  296. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +209 -0
  297. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
  298. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +242 -0
  299. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +231 -0
  300. package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -0
  301. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +63 -0
  302. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +65 -0
  303. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +63 -0
  304. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
  305. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
  306. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
  307. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
  308. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
  309. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
  310. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
  311. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
  312. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
  313. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
  314. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
  315. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
  316. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
  317. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
  318. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +171 -0
  319. package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
  320. package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +42 -0
  321. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +184 -0
  322. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +172 -0
  323. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +173 -0
  324. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +133 -0
  325. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +245 -0
  326. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +129 -0
  327. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
  328. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +54 -0
  329. package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
  330. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +13 -0
  331. package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
  332. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
  333. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +173 -0
  334. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
  335. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +329 -0
  336. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
  337. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
  338. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
  339. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
  340. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +76 -0
  341. package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +49 -0
  342. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
  343. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
  344. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
  345. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +149 -0
  346. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  347. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
  348. package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
  349. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
  350. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +43 -0
  351. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
  352. package/src/bmm/workflows/4-implementation/correct-course/instructions.md +207 -0
  353. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +53 -0
  354. package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
  355. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +346 -0
  356. package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
  357. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +52 -0
  358. package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
  359. package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
  360. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +20 -0
  361. package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
  362. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +52 -0
  363. package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
  364. package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +226 -0
  365. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
  366. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +47 -0
  367. package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -0
  368. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +25 -0
  369. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +174 -0
  370. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +118 -0
  371. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +111 -0
  372. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +111 -0
  373. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +104 -0
  374. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +146 -0
  375. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +50 -0
  376. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +189 -0
  377. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +143 -0
  378. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +126 -0
  379. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +200 -0
  380. package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
  381. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
  382. package/src/bmm/workflows/document-project/checklist.md +245 -0
  383. package/src/bmm/workflows/document-project/documentation-requirements.csv +12 -0
  384. package/src/bmm/workflows/document-project/instructions.md +130 -0
  385. package/src/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
  386. package/src/bmm/workflows/document-project/templates/index-template.md +169 -0
  387. package/src/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
  388. package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
  389. package/src/bmm/workflows/document-project/templates/source-tree-template.md +135 -0
  390. package/src/bmm/workflows/document-project/workflow.yaml +22 -0
  391. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
  392. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
  393. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
  394. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
  395. package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
  396. package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
  397. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
  398. package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
  399. package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
  400. package/src/bmm/workflows/qa-generate-e2e-tests/checklist.md +33 -0
  401. package/src/bmm/workflows/qa-generate-e2e-tests/instructions.md +110 -0
  402. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +42 -0
  403. package/src/core/agents/bmad-master.agent.yaml +30 -0
  404. package/src/core/module-help.csv +9 -0
  405. package/src/core/module.yaml +25 -0
  406. package/src/core/tasks/editorial-review-prose.xml +102 -0
  407. package/src/core/tasks/editorial-review-structure.xml +208 -0
  408. package/src/core/tasks/help.md +86 -0
  409. package/src/core/tasks/index-docs.xml +65 -0
  410. package/src/core/tasks/review-adversarial-general.xml +49 -0
  411. package/src/core/tasks/shard-doc.xml +108 -0
  412. package/src/core/tasks/workflow.xml +235 -0
  413. package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
  414. package/src/core/workflows/advanced-elicitation/workflow.xml +118 -0
  415. package/src/core/workflows/brainstorming/brain-methods.csv +62 -0
  416. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
  417. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
  418. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
  419. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
  420. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
  421. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
  422. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
  423. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
  424. package/src/core/workflows/brainstorming/template.md +15 -0
  425. package/src/core/workflows/brainstorming/workflow.md +58 -0
  426. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  427. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
  428. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +168 -0
  429. package/src/core/workflows/party-mode/workflow.md +194 -0
  430. package/src/utility/agent-components/activation-rules.txt +6 -0
  431. package/src/utility/agent-components/activation-steps.txt +14 -0
  432. package/src/utility/agent-components/agent-command-header.md +1 -0
  433. package/src/utility/agent-components/agent.customize.template.yaml +41 -0
  434. package/src/utility/agent-components/handler-action.txt +4 -0
  435. package/src/utility/agent-components/handler-data.txt +5 -0
  436. package/src/utility/agent-components/handler-exec.txt +6 -0
  437. package/src/utility/agent-components/handler-multi.txt +14 -0
  438. package/src/utility/agent-components/handler-tmpl.txt +5 -0
  439. package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
  440. package/src/utility/agent-components/handler-workflow.txt +10 -0
  441. package/src/utility/agent-components/menu-handlers.txt +6 -0
  442. package/test/README.md +295 -0
  443. package/test/adversarial-review-tests/README.md +56 -0
  444. package/test/adversarial-review-tests/sample-content.md +46 -0
  445. package/test/adversarial-review-tests/test-cases.yaml +103 -0
  446. package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
  447. package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
  448. package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
  449. package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
  450. package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
  451. package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
  452. package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
  453. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
  454. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
  455. package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
  456. package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
  457. package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
  458. package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
  459. package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
  460. package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
  461. package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
  462. package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
  463. package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
  464. package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
  465. package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
  466. package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
  467. package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
  468. package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
  469. package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
  470. package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
  471. package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
  472. package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
  473. package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
  474. package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
  475. package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
  476. package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
  477. package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
  478. package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
  479. package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
  480. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
  481. package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
  482. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
  483. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
  484. package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
  485. package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
  486. package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
  487. package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
  488. package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
  489. package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
  490. package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
  491. package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
  492. package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
  493. package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
  494. package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
  495. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
  496. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
  497. package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
  498. package/test/fixtures/file-refs-csv/invalid/all-empty-workflow.csv +3 -0
  499. package/test/fixtures/file-refs-csv/invalid/empty-data.csv +1 -0
  500. package/test/fixtures/file-refs-csv/invalid/no-workflow-column.csv +3 -0
  501. package/test/fixtures/file-refs-csv/invalid/unresolvable-vars.csv +3 -0
  502. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +3 -0
  503. package/test/fixtures/file-refs-csv/valid/core-style.csv +3 -0
  504. package/test/fixtures/file-refs-csv/valid/minimal.csv +2 -0
  505. package/test/test-agent-schema.js +387 -0
  506. package/test/test-cli-integration.sh +159 -0
  507. package/test/test-file-refs-csv.js +133 -0
  508. package/test/test-installation-components.js +212 -0
  509. package/test/test-rehype-plugins.mjs +1050 -0
  510. package/test/unit-test-schema.js +133 -0
  511. package/tests/run_all_tests.py +80 -0
  512. package/tests/scenarios/cis/brainstorming-coach.test.py +150 -0
  513. package/tests/scenarios/cis/creative-problem-solver.test.py +167 -0
  514. package/tests/scenarios/cis/design-thinking-coach.test.py +177 -0
  515. package/tests/scenarios/cis/innovation-strategist.test.py +191 -0
  516. package/tests/scenarios/cis/presentation-master.test.py +240 -0
  517. package/tests/scenarios/cis/storyteller.test.py +324 -0
  518. package/tests/scenarios/core/mdan-master.test.py +281 -0
  519. package/tests/scenarios/mmb/agent-builder.test.py +124 -0
  520. package/tests/scenarios/mmb/module-builder.test.py +124 -0
  521. package/tests/scenarios/mmb/workflow-builder.test.py +124 -0
  522. package/tests/scenarios/mmm/analyst.test.py +138 -0
  523. package/tests/scenarios/mmm/architect.test.py +138 -0
  524. package/tests/scenarios/mmm/dev.test.py +138 -0
  525. package/tests/scenarios/mmm/pm.test.py +138 -0
  526. package/tests/scenarios/mmm/qa.test.py +138 -0
  527. package/tests/scenarios/mmm/quick-flow-solo-dev.test.py +138 -0
  528. package/tests/scenarios/mmm/sm.test.py +138 -0
  529. package/tests/scenarios/mmm/tech-writer.test.py +138 -0
  530. package/tests/scenarios/mmm/ux-designer.test.py +294 -0
  531. package/tests/scenarios/packs/db-optimization/db-performance-analyst.test.py +108 -0
  532. package/tests/scenarios/packs/db-optimization/indexing-specialist.test.py +108 -0
  533. package/tests/scenarios/packs/db-optimization/query-optimizer.test.py +106 -0
  534. package/tests/scenarios/packs/devops-azure/azure-specialist.test.py +125 -0
  535. package/tests/scenarios/packs/devops-azure/cicd-architect.test.py +122 -0
  536. package/tests/scenarios/packs/devops-azure/devops-engineer.test.py +128 -0
  537. package/tests/scenarios/packs/fintech/compliance-officer.test.py +165 -0
  538. package/tests/scenarios/packs/fintech/financial-analyst.test.py +184 -0
  539. package/tests/scenarios/packs/fintech/risk-manager.test.py +171 -0
  540. package/tests/scenarios/tea/tea.test.py +346 -0
  541. package/tests/simple_cis_test.py +285 -0
  542. package/tests/simple_db_optimization_test.py +199 -0
  543. package/tests/simple_devops_test.py +193 -0
  544. package/tests/simple_fintech_test.py +205 -0
  545. package/tests/simple_mmb_test.py +103 -0
  546. package/tests/simple_mmm_test.py +159 -0
  547. package/tests/simple_tea_test.py +80 -0
  548. package/tests/simple_test.py +111 -0
  549. package/tests/simple_ux_designer_test.py +144 -0
  550. package/tests/validate_yaml.py +86 -0
  551. package/tools/bmad-npx-wrapper.js +38 -0
  552. package/tools/build-docs.mjs +463 -0
  553. package/tools/cli/README.md +60 -0
  554. package/tools/cli/bmad-cli.js +106 -0
  555. package/tools/cli/commands/install.js +87 -0
  556. package/tools/cli/commands/status.js +65 -0
  557. package/tools/cli/commands/uninstall.js +167 -0
  558. package/tools/cli/external-official-modules.yaml +53 -0
  559. package/tools/cli/installers/install-messages.yaml +39 -0
  560. package/tools/cli/installers/lib/core/config-collector.js +1285 -0
  561. package/tools/cli/installers/lib/core/custom-module-cache.js +260 -0
  562. package/tools/cli/installers/lib/core/dependency-resolver.js +743 -0
  563. package/tools/cli/installers/lib/core/detector.js +223 -0
  564. package/tools/cli/installers/lib/core/ide-config-manager.js +157 -0
  565. package/tools/cli/installers/lib/core/installer.js +3162 -0
  566. package/tools/cli/installers/lib/core/manifest-generator.js +1081 -0
  567. package/tools/cli/installers/lib/core/manifest.js +1038 -0
  568. package/tools/cli/installers/lib/custom/handler.js +358 -0
  569. package/tools/cli/installers/lib/ide/_base-ide.js +665 -0
  570. package/tools/cli/installers/lib/ide/_config-driven.js +634 -0
  571. package/tools/cli/installers/lib/ide/codex.js +440 -0
  572. package/tools/cli/installers/lib/ide/github-copilot.js +699 -0
  573. package/tools/cli/installers/lib/ide/kilo.js +269 -0
  574. package/tools/cli/installers/lib/ide/manager.js +342 -0
  575. package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
  576. package/tools/cli/installers/lib/ide/platform-codes.yaml +243 -0
  577. package/tools/cli/installers/lib/ide/rovodev.js +257 -0
  578. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +180 -0
  579. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +174 -0
  580. package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
  581. package/tools/cli/installers/lib/ide/shared/path-utils.js +299 -0
  582. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +366 -0
  583. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +318 -0
  584. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +14 -0
  585. package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
  586. package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +15 -0
  587. package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
  588. package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
  589. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +14 -0
  590. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +6 -0
  591. package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +14 -0
  592. package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
  593. package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
  594. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +16 -0
  595. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +14 -0
  596. package/tools/cli/installers/lib/ide/templates/combined/kiro-agent.md +16 -0
  597. package/tools/cli/installers/lib/ide/templates/combined/kiro-task.md +9 -0
  598. package/tools/cli/installers/lib/ide/templates/combined/kiro-tool.md +9 -0
  599. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +15 -0
  600. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow.md +7 -0
  601. package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +15 -0
  602. package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +13 -0
  603. package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +13 -0
  604. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +16 -0
  605. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +16 -0
  606. package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +9 -0
  607. package/tools/cli/installers/lib/ide/templates/combined/trae.md +9 -0
  608. package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +10 -0
  609. package/tools/cli/installers/lib/ide/templates/split/.gitkeep +0 -0
  610. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +13 -0
  611. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
  612. package/tools/cli/installers/lib/message-loader.js +83 -0
  613. package/tools/cli/installers/lib/modules/external-manager.js +136 -0
  614. package/tools/cli/installers/lib/modules/manager.js +1498 -0
  615. package/tools/cli/lib/activation-builder.js +165 -0
  616. package/tools/cli/lib/agent/compiler.js +525 -0
  617. package/tools/cli/lib/agent/installer.js +680 -0
  618. package/tools/cli/lib/agent/template-engine.js +152 -0
  619. package/tools/cli/lib/agent-analyzer.js +109 -0
  620. package/tools/cli/lib/agent-party-generator.js +194 -0
  621. package/tools/cli/lib/cli-utils.js +182 -0
  622. package/tools/cli/lib/config.js +213 -0
  623. package/tools/cli/lib/file-ops.js +204 -0
  624. package/tools/cli/lib/platform-codes.js +116 -0
  625. package/tools/cli/lib/project-root.js +77 -0
  626. package/tools/cli/lib/prompts.js +809 -0
  627. package/tools/cli/lib/ui.js +1936 -0
  628. package/tools/cli/lib/xml-handler.js +177 -0
  629. package/tools/cli/lib/xml-to-markdown.js +82 -0
  630. package/tools/cli/lib/yaml-format.js +245 -0
  631. package/tools/cli/lib/yaml-xml-builder.js +587 -0
  632. package/tools/docs/_prompt-external-modules-page.md +59 -0
  633. package/tools/docs/fix-refs.md +91 -0
  634. package/tools/fix-doc-links.js +285 -0
  635. package/tools/format-workflow-md.js +263 -0
  636. package/tools/lib/xml-utils.js +13 -0
  637. package/tools/migrate-custom-module-paths.js +124 -0
  638. package/tools/platform-codes.yaml +157 -0
  639. package/tools/schema/agent.js +491 -0
  640. package/tools/validate-agent-schema.js +110 -0
  641. package/tools/validate-doc-links.js +407 -0
  642. package/tools/validate-file-refs.js +554 -0
  643. package/tools/validate-svg-changes.sh +356 -0
  644. package/website/README.md +75 -0
  645. package/website/astro.config.mjs +136 -0
  646. package/website/public/favicon.ico +0 -0
  647. package/website/public/img/bmad-dark.png +0 -0
  648. package/website/public/img/bmad-light.png +0 -0
  649. package/website/public/workflow-map-diagram.html +361 -0
  650. package/website/src/components/Banner.astro +62 -0
  651. package/website/src/components/Header.astro +96 -0
  652. package/website/src/components/MobileMenuFooter.astro +33 -0
  653. package/website/src/content/config.ts +6 -0
  654. package/website/src/lib/site-url.mjs +25 -0
  655. package/website/src/pages/404.astro +11 -0
  656. package/website/src/pages/robots.txt.ts +48 -0
  657. package/website/src/rehype-base-paths.js +112 -0
  658. package/website/src/rehype-markdown-links.js +119 -0
  659. package/website/src/styles/custom.css +805 -0
  660. package/.mcp.json +0 -46
  661. package/agents/AGENTS-REGISTRY.md +0 -215
  662. package/agents/architect.md +0 -160
  663. package/agents/dev.md +0 -166
  664. package/agents/devops.md +0 -230
  665. package/agents/doc.md +0 -189
  666. package/agents/learn.md +0 -377
  667. package/agents/product.md +0 -124
  668. package/agents/security.md +0 -168
  669. package/agents/test.md +0 -209
  670. package/agents/ux.md +0 -207
  671. package/cli/mdan.js +0 -628
  672. package/cli/mdan.py +0 -316
  673. package/cli/mdan.sh +0 -724
  674. package/cli/postinstall.js +0 -4
  675. package/core/orchestrator.md +0 -238
  676. package/core/universal-envelope.md +0 -160
  677. package/install.sh +0 -91
  678. package/integrations/all-integrations.md +0 -300
  679. package/integrations/claude.md +0 -46
  680. package/integrations/cursor.md +0 -74
  681. package/integrations/mcp.md +0 -153
  682. package/integrations/windsurf.md +0 -48
  683. package/memory/MDAN-STATE.template.json +0 -44
  684. package/memory/MEMORY-SYSTEM.md +0 -197
  685. package/phases/01-discover.md +0 -136
  686. package/phases/02-design.md +0 -147
  687. package/phases/03-build.md +0 -113
  688. package/phases/04-verify.md +0 -107
  689. package/phases/05-ship.md +0 -156
  690. package/skills/find-skills/skill.md +0 -133
  691. package/templates/ARCHITECTURE.md +0 -186
  692. package/templates/CHANGELOG.md +0 -41
  693. package/templates/MDAN-KNOWLEDGE.md +0 -73
  694. package/templates/PRD.md +0 -120
  695. package/templates/SECURITY-REVIEW.md +0 -99
  696. package/templates/TEST-PLAN.md +0 -97
  697. package/templates/prompts/README.md +0 -108
  698. package/templates/prompts/dev-agent.yaml +0 -85
  699. package/templates/prompts/orchestrator.yaml +0 -97
  700. package/templates/prompts.json +0 -81
  701. package/templates/tests/evaluations/README.md +0 -80
  702. package/templates/tests/evaluations/classification_eval.md +0 -136
  703. package/templates/tests/evaluations/rag_eval.md +0 -116
  704. package/templates/tests/scenarios/README.md +0 -62
  705. package/templates/tests/scenarios/basic_authentication.test.md +0 -82
  706. package/templates/tests/scenarios/user_registration.test.md +0 -107
package/CHANGELOG.md ADDED
@@ -0,0 +1,1770 @@
1
+ # Changelog
2
+
3
+ ## [6.0.3]
4
+
5
+ ### 🎁 Features
6
+
7
+ * Add bmad-os-root-cause-analysis skill for analyzing bug-fix commits and producing structured root cause analysis reports with pyramid communication format (#1741)
8
+
9
+ ### 🐛 Bug Fixes
10
+
11
+ * Fix installer to refuse installation when ancestor directory has BMAD commands, preventing duplicate command autocompletion in nested directories (#1735)
12
+ * Fix OpenCode integration by replacing unsupported `name` frontmatter with `mode: all` and update directory names to plural form (#1764)
13
+ * Fix CSV manifest pipeline double-escaping of quotes that was corrupting output files; switch Gemini templates to single quotes (#1746)
14
+ * Fix workflow descriptions to use proper quotes so they format better in skill conversion and don't break yaml front matter
15
+ * Fix workflow help task chaining by removing ambiguous "with-argument" clause that caused LLMs to misinterpret help.md as skill calls (#1740)
16
+
17
+ ### ♻️ Refactoring
18
+
19
+ * Standardize all workflow descriptions to use proper quotes to prevent breaking command or skill front matter during skill conversion
20
+
21
+ ### 📚 Documentation
22
+
23
+ * Fix broken TEA hyperlinks to point to new repository URL (#1772)
24
+ * Rebrand BMAD acronym to "Build More Architect Dreams" across documentation (#1765)
25
+
26
+ ---
27
+
28
+ ## [6.0.2]
29
+
30
+ ### 🎁 Features
31
+
32
+ * Add CodeBuddy platform support with installer configuration (#1483)
33
+ * Add LLM audit prompt for file reference conventions - new audit tool using parallel subagents (#1720)
34
+ * Migrate Codex installer from `.codex/prompts` to `.agents/skills` format to align with Codex CLI changes (#1729)
35
+ * Convert review-pr and audit-file-refs tools to proper bmad-os skills with slash commands `/bmad-os-review-pr` and `/bmad-os-audit-file-refs` (#1732)
36
+
37
+ ### 🐛 Bug Fixes
38
+
39
+ * Fix 24 broken step references in create-architecture workflow after directory rename (#1734)
40
+ * Fix step file path references in check-implementation-readiness workflow (#1709, #1716)
41
+ * Fix 3 broken file references and enable strict file reference validation in CI (#1717)
42
+ * Fix Rovo Dev integration with custom installer that generates prompts.yml manifest (#1701)
43
+ * Fix 104 relative step file references to use standardized `{project-root}/_bmad/` paths across 68 files (#1722)
44
+ * Fix code fence imbalance in step-03-starter.md that caused rendering issues (#1724)
45
+ * Remove Windsurf from recommended/preferred IDEs list (#1727)
46
+ * Fix default Codex install location from global to project for better defaults (#1698)
47
+ * Add npx cache workaround to Quick Start for stale beta versions (#1685)
48
+ * Add language instructions to replace placeholder text in Research overview (#1703)
49
+ * Ignore `.junie/` IDE integration folder in git and prettier configs (#1719)
50
+
51
+ ### ♻️ Refactoring
52
+
53
+ * Update open source tool skills structure for future plugin migration
54
+ * Standardize all workflow descriptions for skill generation with concise format and explicit trigger phrases
55
+ * Remove `disable-model-invocation` flag from all IDE installer templates to enable workflow skill calls
56
+
57
+ ### 📚 Documentation
58
+
59
+ * Elevate `bmad-help` as primary on-ramp across all documentation
60
+ * Update workflow names with `bmad-bmm-` prefix and standardize table formatting
61
+ * Clarify phase routing and catalog path in help task
62
+
63
+ ---
64
+
65
+ ## [6.0.0]
66
+
67
+ V6 Stable Release! The End of Beta!
68
+
69
+ ### 🎁 Features
70
+
71
+ * Add PRD workflow steps 2b (vision/differentiators) and 2c (executive summary) for more complete product requirements documentation
72
+ * Add new `bmad uninstall` command with interactive and non-interactive modes for selective component removal
73
+ * Add dedicated GitHub Copilot installer that generates enriched `.agent.md`, `.prompt.md` files and project configuration
74
+ * Add TEA browser automation prerequisite prompts to guide Playwright CLI/MCP setup after configuration
75
+
76
+ ### 🐛 Bug Fixes
77
+
78
+ * Fix version comparison to use semantic versioning, preventing incorrect downgrade recommendations to older beta versions
79
+ * Fix `--custom-content` flag to properly populate sources and selected files in module config
80
+ * Fix module configuration UX messaging to show accurate completion status and improve feedback timing
81
+ * Fix changelog URL in installer start message for proper GitHub resolution
82
+ * Remove incorrect `mode: primary` from OpenCode agent template and restore `name` field across all templates
83
+ * Auto-discover PRD files in validate-prd workflow to reduce manual path input
84
+ * Fix installer non-interactive mode hanging and improve IDE configuration handling during updates
85
+ * Fix workflow-level config.yaml copying for custom content modules
86
+
87
+ ### ♻️ Refactoring
88
+
89
+ * Remove alias variables from Phase 4 workflows, use canonical `{implementation_artifacts}` and `{planning_artifacts}`
90
+ * Add missing `project_context` references to workflows for consistency
91
+
92
+ ### 📚 Documentation
93
+
94
+ * Add post-install notes documentation for modules
95
+ * Improve project-context documentation and fix folder structure
96
+ * Add BMad Builder link to index for extenders
97
+
98
+ ---
99
+
100
+ ## [6.0.0-Beta.8]
101
+
102
+ **Release: February 8, 2026**
103
+
104
+ ### 🌟 Key Highlights
105
+
106
+ 1. **Non-Interactive Installation** — Full CI/CD support with 10 new CLI flags for automated deployments
107
+ 2. **Complete @clack/prompts Migration** — Unified CLI experience with consolidated installer output
108
+ 3. **CSV File Reference Validation** — Extended Layer 1 validator to catch broken workflow references in CSV files
109
+ 4. **Kiro IDE Support** — Standardized config-driven installation, replacing custom installer
110
+
111
+ ### 🎁 Features
112
+
113
+ * **Non-Interactive Installation** — Added `--directory`, `--modules`, `--tools`, `--custom-content`, `--user-name`, `--communication-language`, `--document-output-language`, `--output-folder`, and `-y/--yes` flags for CI/CD automation (#1520)
114
+ * **CSV File Reference Validation** — Extended validator to scan `.csv` files for broken workflow references, checking 501 references across 212 files (#1573)
115
+ * **Kiro IDE Support** — Replaced broken custom installer with config-driven templates using `#[[file:...]]` syntax and `inclusion: manual` frontmatter (#1589)
116
+ * **OpenCode Template Consolidation** — Combined split templates with `mode: primary` frontmatter for Tab-switching support, fixing agent discovery (#1556)
117
+ * **Modules Reference Page** — Added official external modules reference documentation (#1540)
118
+
119
+ ### 🐛 Bug Fixes
120
+
121
+ * **Installer Streamlining** — Removed "None - Skip module installation" option, eliminated ~100 lines of dead code, and added ESM/.cjs support for module installers (#1590)
122
+ * **CodeRabbit Workflow** — Changed `pull_request` to `pull_request_target` to fix 403 errors and enable reviews on fork PRs (#1583)
123
+ * **Party Mode Return Protocol** — Added RETURN PROTOCOL to prevent lost-in-the-middle failures after Party Mode completes (#1569)
124
+ * **Spacebar Toggle** — Fixed SPACE key not working in autocomplete multiselect prompts for tool/IDE selection (#1557)
125
+ * **OpenCode Agent Routing** — Fixed agents installing to wrong directory by adding `targets` array for routing `.opencode/agent/` vs `.opencode/command/` (#1549)
126
+ * **Technical Research Workflow** — Fixed step-05 routing to step-06 and corrected `stepsCompleted` values (#1547)
127
+ * **Forbidden Variable Removal** — Removed `workflow_path` variable from 16 workflow step files (#1546)
128
+ * **Kilo Installer** — Fixed YAML formatting issues by trimming activation header and converting to yaml.parse/stringify (#1537)
129
+ * **bmad-help** — Now reads project-specific docs and respects `communication_language` setting (#1535)
130
+ * **Cache Errors** — Removed `--prefer-offline` npm flag to prevent stale cache errors during installation (#1531)
131
+
132
+ ### ♻️ Refactoring
133
+
134
+ * **Complete @clack/prompts Migration** — Migrated 24 files from legacy libraries (ora, chalk, boxen, figlet, etc.), replaced ~100 console.log+chalk calls, consolidated installer output to single spinner, and removed 5 dependencies (#1586)
135
+ * **Downloads Page Removal** — Removed downloads page, bundle generation, and archiver dependency in favor of GitHub's native archives (#1577)
136
+ * **Workflow Verb Standardization** — Replaced "invoke/run" with "load and follow/load" in review workflow prompts (#1570)
137
+ * **Documentation Language** — Renamed "brownfield" to "established projects" and flattened directory structure for accessibility (#1539)
138
+
139
+ ### 📚 Documentation
140
+
141
+ * **Comprehensive Site Review** — Fixed broken directory tree diagram, corrected grammar/capitalization, added SEO descriptions, and reordered how-to guides (#1578)
142
+ * **SEO Metadata** — Added description front matter to 9 documentation pages for search engine optimization (#1566)
143
+ * **PR Template** — Added pull request template for consistent PR descriptions (#1554)
144
+ * **Manual Release Cleanup** — Removed broken manual-release workflow and related scripts (#1576)
145
+
146
+ ### 🔧 Maintenance
147
+
148
+ * **Dual-Mode AI Code Review** — Configured Augment Code (audit mode) and CodeRabbit (adversarial mode) for improved code quality (#1511)
149
+ * **Package-Lock Sync** — Cleaned up 471 lines of orphaned dependencies after archiver removal (#1580)
150
+
151
+ ---
152
+
153
+ ## [6.0.0-Beta.7]
154
+
155
+ **Release: February 4, 2026**
156
+
157
+ ### 🌟 Key Highlights
158
+
159
+ 1. **Direct Workflow Invocation** — Agent workflows can now be run directly via slash commands instead of only through agent orchestration
160
+ 2. **Installer Workflow Support** — Installer now picks up `workflow-*.md` files, enabling multiple workflow files per directory
161
+
162
+ ### 🎁 Features
163
+
164
+ * **Slash Command Workflow Access** — Research and PRD workflows now accessible via direct slash commands: `/domain-research`, `/market-research`, `/technical-research`, `/create-prd`, `/edit-prd`, `/validate-prd` (bd620e38, 731bee26)
165
+ * **Version Checking** — CLI now checks npm for newer versions and displays a warning banner when updates are available (d37ee7f2)
166
+
167
+ ### ♻️ Refactoring
168
+
169
+ * **Workflow File Splitting** — Split monolithic `workflow.md` files into specific `workflow-*.md` files for individual workflow invocation (bd620e38)
170
+ * **Installer Multi-Workflow Support** — Installer manifest generator now supports `workflow-*.md` pattern, allowing multiple workflow files per directory (731bee26)
171
+ * **Internal Skill Renaming** — Renamed internal project skills to use `bmad-os-` prefix for consistent naming (5276d58b)
172
+
173
+ ---
174
+
175
+ ## [6.0.0-Beta.6]
176
+
177
+ **Release: February 4, 2026**
178
+
179
+ ### 🌟 Key Highlights
180
+
181
+ 1. **Cross-File Reference Validator**: Comprehensive tool to detect broken file references, preventing 59 known bugs (~25% of historical issues)
182
+ 2. **New AutocompleteMultiselect Prompt**: Searchable multi-select with improved tool/IDE selection UX
183
+ 3. **Critical Installer Fixes**: Windows CRLF parsing, Gemini CLI TOML support, file extension preservation
184
+ 4. **Codebase Cleanup**: Removed dead Excalidraw/flattener artifacts (-3,798 lines)
185
+
186
+ ### 🎁 Features
187
+
188
+ * **Cross-File Reference Validator** — Validates ~483 references across ~217 source files, detecting absolute path leaks and broken references (PR #1494)
189
+ * **AutocompleteMultiselect Prompt** — Upgraded `@clack/prompts` to v1.0.0 with custom searchable multiselect, Tab-to-fill-placeholder behavior, and improved tool/IDE selection UX (PR #1514)
190
+ * **OT Domains** — Added `process_control` and `building_automation` domains with high complexity ratings (PR #1510)
191
+ * **Documentation Reference Pages** — Added `docs/reference/agents.md`, `commands.md`, and `testing.md` (PR #1525)
192
+
193
+ ### 🐛 Bug Fixes
194
+
195
+ * **Critical Installer Fixes** — Fixed CRLF line ending parsing on Windows, Gemini CLI TOML support, file extension preservation, Codex task generation, Windows path handling, and CSV parsing (PR #1492)
196
+ * **Double Tool Questioning** — Removed redundant tool questioning during installation (df176d42)
197
+ * **QA Agent Rename** — Renamed Quinn agent to `qa` for naming consistency (PR #1508)
198
+ * **Documentation Organization** — Fixed documentation ordering and links, hide BMGD pages from main LLM docs (PR #1525)
199
+
200
+ ### ♻️ Refactoring
201
+
202
+ * **Excalidraw/Flattener Removal** — Removed dead artifacts no longer supported beyond beta: Excalidraw workflows, flattener tool, and 12+ diagram creation workflows (-3,798 lines) (f699a368)
203
+ * **Centralized Constants** — Centralized `BMAD_FOLDER_NAME` to reduce hardcoded strings (PR #1492)
204
+ * **Cross-Platform Paths** — Fixed path separator inconsistencies in agent IDs (PR #1492)
205
+
206
+ ### 📚 Documentation
207
+
208
+ * **BMGD Diataxis Refactor** — Refactored BMGD documentation using Diataxis principles for better organization (PR #1502)
209
+ * **Generate Project Context** — Restored `generate-project-context` workflow for brownfield project analysis (PR #1491)
210
+
211
+ ### 🔧 Maintenance
212
+
213
+ * **Dependency Updates** — Upgraded `@clack/prompts` from v0.11.0 to v1.0.0 and added `@clack/core` (PR #1514)
214
+ * **CI Integration** — Added `validate:refs` to CI quality workflow with warning annotations (PR #1494)
215
+
216
+ ---
217
+
218
+ ## [6.0.0-Beta.5]
219
+
220
+ ### 🎁 Features
221
+
222
+ * **Add generate-project-context workflow** — New 3-step workflow for project context generation, integrated with quick-flow-solo-dev agent
223
+ * **Shard market research customer analysis** — Refactor monolithic customer insights into 4-step detailed customer behavior analysis workflow
224
+
225
+ ### 🐛 Bug Fixes
226
+
227
+ * **Fix npm install peer dependency issues** — Add `.npmrc` with `legacy-peer-deps=true`, update Starlight to 0.37.5, and add `--legacy-peer-deps` flag to module installer (PR #1476)
228
+ * **Fix leaked source paths in PRD validation report** — Replace absolute `/src/core/` paths with `{project-root}/_bmad/core/` (#1481)
229
+ * **Fix orphaned market research customer analysis** — Connect step-01-init to step-02-customer-behavior to complete workflow sharding (#1486)
230
+ * **Fix duplicate 2-letter brainstorming code** — Change BS to BSP to resolve conflict with cis Brainstorming module
231
+ * **Fix tech writer sidecar functionality** — Enable proper sidecar operation (#1487)
232
+ * **Fix relative paths in workflow steps** — Correct paths in step-11-polish (#1497) and step-e-04-complete (#1498)
233
+ * **Fix party-mode workflow file extension** — Correct extension in workflow.xml (#1499)
234
+ * **Fix generated slash commands** — Add `disable-model-invocation` to all generated commands (#1501)
235
+ * **Fix agent scan and help CSV files** — Correct module-help.csv entries
236
+ * **Fix HELP_STEP placeholder replacement** — Fix placeholder not replaced in compiled agents, fix hardcoded path, fix single quote (#1437)
237
+
238
+ ### 📚 Documentation
239
+
240
+ * **Add exact slash commands to Getting Started guide** — Provide precise command examples for users (#1505)
241
+ * **Remove .claude/commands from version control** — Commands are generated, not tracked (#1506)
242
+
243
+ ### 🔧 Maintenance
244
+
245
+ * **Update Starlight to 0.37.5** — Latest version with peer dependency compatibility
246
+ * **Add GitHub issue templates** — New bug-report.yaml and documentation.yaml templates
247
+
248
+ ---
249
+
250
+ ## [6.0.0-Beta.4]
251
+
252
+ ### 🐛 Bug Fixes
253
+
254
+ - **Activation steps formatting fix**: Fixed missing opening quote that caused infrequent menu rendering issues
255
+ - **Custom module installation fix**: Added missing yaml require in manifest.js to fix custom module installation
256
+
257
+ ---
258
+
259
+ ## [6.0.0-Beta.3]
260
+
261
+ ### 🌟 Key Highlights
262
+
263
+ 1. **SDET Module Replaces TEA**: TEA module removed from core, SDET module added with "automate" workflow for test automation
264
+ 2. **Gemini CLI TOML Support**: IDE integration now supports the TOML config format used by Gemini CLI
265
+ 3. **File System Sprint Status**: Default project_key support for file-system based sprint status tracking
266
+
267
+ ### 🔧 Features & Improvements
268
+
269
+ **Module Changes:**
270
+ - **TEA Module Moved to External** (#1430, #1443): The TEA module is now external. SDET module added with a single "automate" workflow focused on test automation
271
+ - **SDET Module**: New module with streamlined test automation capabilities
272
+
273
+ **IDE Integration:**
274
+ - **Gemini CLI TOML Format** (#1431): Previous update accidentally switched Gemini to md instead of toml.
275
+
276
+ **Sprint Status:**
277
+ - **Default project_key** (#1446): File-system based sprint status now uses a default project_key so certain LLMs do not complain
278
+
279
+ ### 🐛 Bug Fixes
280
+
281
+ - **Quick-flow workflow path fix** (#1368): Fixed incorrect workflow_path in bmad-quick-flow/quick-spec steps (step-01, step-02, step-03) - changed from non-existent 'create-tech-spec' to correct 'quick-spec'
282
+ - **PRD edit flow paths**: Fixed path references in PRD editing workflow
283
+ - **Agent file handling**: Changes to prevent double agent files and use .agent.md file extensions
284
+ - **README link fix**: Corrected broken documentation links
285
+
286
+ ## [6.0.0-Beta.2]
287
+
288
+ - Fix installer so commands match what is installed, centralize most ide into a central file instead of separate files for each ide.
289
+ - Specific IDEs may still need udpates, but all is config driven now and should be easier to maintain
290
+ - Kiro still needs updates, but its been in this state since contributed, will investigate soon
291
+ - Any version older than Beta.0 will recommend removal and reinstall to project. From later alphas though its sufficient to quick update if still desired, but best is just start fresh with Beta.
292
+
293
+ ## [6.0.0-Beta.1]
294
+
295
+ **Release: January 2026 - Alpha to Beta Transition**
296
+
297
+ ### 🎉 Beta Release
298
+
299
+ - **Transition from Alpha to Beta**: BMad Method is now in Beta! This marks a significant milestone in the framework's development
300
+ - **NPM Default Tag**: Beta versions are now published with the `latest` tag, making `npx bmad-method` serve the beta version by default
301
+
302
+ ### 🌟 Key Highlights
303
+
304
+ 1. **bmad-help**: Revolutionary AI-powered guidance system replaces the alpha workflow-init and workflow tracking — introduces full AI intelligence to guide users through workflows, commands, and project context
305
+ 2. **Module Ecosystem Expansion**: bmad-builder, CIS (Creative Intelligence Suite), and Game Dev Studio moved to separate repositories for focused development
306
+ 3. **Installer Consolidation**: Unified installer architecture with standardized command naming (`bmad-dash-case.md` or `bmad-*-agent-*.md`)
307
+ 4. **Windows Compatibility**: Complete migration from Inquirer.js to @clack/prompts for reliable cross-platform support
308
+
309
+ ### 🚀 Major Features
310
+
311
+ **bmad-help - Intelligent Guidance System:**
312
+
313
+ - **Replaces**: workflow-init and legacy workflow tracking
314
+ - **AI-Powered**: Full context awareness of installed modules, workflows, agents, and commands
315
+ - **Dynamic Discovery**: Automatically catalogs all available workflows from installed modules
316
+ - **Intelligent Routing**: Guides users to the right workflow or agent based on their goal
317
+ - **IDE Integration**: Generates proper IDE command files for all discovered workflows
318
+
319
+ **Module Restructuring:**
320
+
321
+ | Module | Status | New Location |
322
+ | ------------------------------------- | ------------------------------------------------- | ------------------------------------------------------- |
323
+ | **bmad-builder** | Near beta, with docs and walkthroughs coming soon | `bmad-code-org/bmad-builder` |
324
+ | **CIS** (Creative Intelligence Suite) | Published as npm package | `bmad-code-org/bmad-module-creative-intelligence-suite` |
325
+ | **Game Dev Studio** | Published as npm package | `bmad-code-org/bmad-module-game-dev-studio` |
326
+
327
+ ### 🔧 Installer & CLI Improvements
328
+
329
+ **UnifiedInstaller Architecture:**
330
+
331
+ - All IDE installers now use a common `UnifiedInstaller` class
332
+ - Standardized command naming conventions:
333
+ - Workflows: `bmad-module-workflow-name.md`
334
+ - Agents: `bmad-module-agent-name.md`
335
+ - Tasks: `bmad-task-name.md`
336
+ - Tools: `bmad-tool-name.md`
337
+ - External module installation from npm with progress indicators
338
+ - Module removal on unselect with confirmation
339
+
340
+ **Windows Compatibility Fix:**
341
+
342
+ - Replaced Inquirer.js with @clack/prompts to fix arrow key navigation issues on Windows
343
+ - All 91 installer workflows migrated to new prompt system
344
+
345
+ ### 📚 Documentation Updates
346
+
347
+ **Significant docsite improvements:**
348
+
349
+ - Interactive workflow guide page (`/workflow-guide`) with track selector
350
+ - TEA documentation restructured using Diátaxis framework (25 docs)
351
+ - Style guide optimized for LLM readers (367 lines, down from 767)
352
+ - Glossary rewritten using table format (123 lines, down from 373)
353
+ - README overhaul with numbered command flows and prominent `/bmad-help` callout
354
+ - New workflow map diagram with interactive HTML
355
+ - New editorial review tasks for document quality
356
+ - E2E testing methodology for Game Dev Studio
357
+
358
+ More documentation updates coming soon.
359
+
360
+ ### 🐛 Bug Fixes
361
+
362
+ - Fixed TodoMVC URL references to include `/dist/` path
363
+ - Fixed glob pattern normalization for Windows compatibility
364
+ - Fixed YAML indentation in kilo.js customInstructions field
365
+ - Fixed stale path references in check-implementation-readiness workflow
366
+ - Fixed sprint-status.yaml sync in correct-course workflow
367
+ - Fixed web bundler entry point reference
368
+ - Fixed mergeModuleHelpCatalogs ordering after generateManifests
369
+
370
+ ### 📊 Statistics
371
+
372
+ - **91 commits** since alpha.23
373
+ - **969 files changed** (+23,716 / -91,509 lines)
374
+ - **Net reduction of ~67,793 lines** through cleanup and consolidation
375
+ - **3 major modules** moved to separate repositories
376
+ - **Complete installer refactor** for standardization
377
+
378
+ ---
379
+
380
+ ## [6.0.0-alpha.23]
381
+
382
+ **Release: January 11, 2026**
383
+
384
+ ### 🌟 Key Highlights
385
+
386
+ 1. **Astro/Starlight Documentation Platform**: Complete migration from Docusaurus to modern Astro+Starlight for superior performance and customization
387
+ 2. **Diataxis Framework Implementation**: Professional documentation restructuring with tutorials, how-to guides, explanations, and references
388
+ 3. **Workflow Creator & Validator**: Powerful new tools for workflow creation with subprocess support and PRD validation
389
+ 4. **TEA Documentation Expansion**: Comprehensive testing documentation with cheat sheets, MCP enhancements, and API testing patterns
390
+ 5. **Brainstorming Revolution**: Research-backed procedural rigor with 100+ idea goal and anti-bias protocols
391
+ 6. **Cursor IDE Modernization**: Refactored from rules-based to command-based architecture for better IDE integration
392
+
393
+ ### 📚 Documentation Platform Revolution
394
+
395
+ **Astro/Starlight Migration:**
396
+
397
+ - **From Docusaurus to Astro**: Complete platform migration for improved performance, better customization, and modern tooling
398
+ - **Starlight Theme**: Professional documentation theme with dark mode default and responsive design
399
+ - **Build Pipeline Overhaul**: New build-docs.js orchestrates link checking, artifact generation, and Astro build
400
+ - **LLM-Friendly Documentation**: Generated llms.txt and llms-full.txt for AI agent discoverability
401
+ - **Downloadable Source Bundles**: bmad-sources.zip and bmad-prompts.zip for offline use
402
+
403
+ **Diataxis Framework Implementation:**
404
+
405
+ - **Four Content Types**: Professional separation into tutorials, how-to guides, explanations, and references
406
+ - **21 Files Migrated**: Phase 1 migration of core documentation to Diataxis structure
407
+ - **42+ Focused Documents**: Phase 2 split of large legacy files into manageable pieces
408
+ - **FAQ Restructuring**: 7 topic-specific FAQ files with standardized format
409
+ - **Tutorial Style Guide**: Comprehensive documentation standards for consistent content creation
410
+
411
+ **Link Management & Quality:**
412
+
413
+ - **Site-Relative Links**: Converted 217 links to repo-relative format (/docs/path/file.md)
414
+ - **Link Validation Tools**: New validate-doc-links.js and fix-doc-links.js for maintaining link integrity
415
+ - **Broken Link Fixes**: Resolved ~50 broken internal links across documentation
416
+ - **BMad Acronym Standardization**: Consistent use of "BMad" (Breakthrough Method of Agile AI Driven Development)
417
+ - **SEO Optimization**: Absolute URLs in AI meta tags for better web crawler discoverability
418
+
419
+ ### 🔧 Workflow Creator & Validator (Major Feature)
420
+
421
+ **Workflow Creation Tool:**
422
+
423
+ - **Subprocess Support**: Advanced workflows can now spawn subprocesses for complex operations
424
+ - **PRD Validation Step**: New validation step ensures PRD quality before workflow execution
425
+ - **Trimodal Workflow Creation**: Three-mode workflow generation system
426
+ - **Quadrivariate Module Workflow**: Four-variable workflow architecture for enhanced flexibility
427
+ - **Path Violation Checks**: Validator ensures workflows don't violate path constraints
428
+ - **Max Parallel Mode POC**: Proof-of-concept for parallel workflow validation
429
+
430
+ **Workflow Quality Improvements:**
431
+
432
+ - **PRD Trimodal Compliance**: PRD workflow now follows trimodal standards
433
+ - **Standardized Step Formatting**: Consistent markdown formatting across workflow and PRD steps
434
+ - **Better Suggested Next Steps**: Improved workflow completion guidance
435
+ - **Variable Naming Standardization**: {project_root} → {project-root} across all workflows
436
+
437
+ ### 🧪 TEA Documentation Expansion
438
+
439
+ **Comprehensive Testing Guides:**
440
+
441
+ - **Cheat Sheets**: Quick reference guides for common testing scenarios
442
+ - **MCP Enhancements**: Model Context Protocol improvements for testing workflows
443
+ - **API Testing Patterns**: Best practices for API testing documentation
444
+ - **Design Philosophy Callout**: Clear explanation of TEA's design principles
445
+ - **Context Engineering Glossary**: New glossary entry defining context engineering concepts
446
+ - **Fragment Count Updates**: Accurate documentation of TEA workflow components
447
+ - **Playwright Utils Examples**: Updated code examples for playwright-utils integration
448
+
449
+ ### 💡 Brainstorming Workflow Overhaul
450
+
451
+ **Research-Backed Procedural Rigor:**
452
+
453
+ - **100+ Idea Goal**: Emphasis on quantity-first approach to unlock better quality ideas
454
+ - **Anti-Bias Protocol**: Domain pivot every 10 ideas to reduce cognitive biases
455
+ - **Chain-of-Thought Requirements**: Reasoning before idea generation
456
+ - **Simulated Temperature**: Prompts for higher divergence in ideation
457
+ - **Standardized Idea Format**: Quality control template for consistent output
458
+ - **Energy Checkpoints**: Multiple continuation options to maintain creative flow
459
+
460
+ **Exploration Menu Improvements:**
461
+
462
+ - **Letter-Based Navigation**: [K/T/A/B/C] options instead of numbers for clarity
463
+ - **Keep/Try/Advanced/Break/Continue**: Clear action options for idea refinement
464
+ - **Universal Facilitation Rules**: Consistent guidelines across all brainstorming steps
465
+ - **Quality Growth Enforcement**: Balance between quantity and quality metrics
466
+
467
+ ### 🖥️ Cursor IDE Modernization
468
+
469
+ **Command-Based Architecture:**
470
+
471
+ - **From Rules to Commands**: Complete refactor from rules-based to command-based system
472
+ - **Command Generation**: Automatic generation of task and tool commands
473
+ - **Commands Directory**: New `.cursor/commands/bmad/` structure for generated commands
474
+ - **Cleanup Integration**: Automatic cleanup of old BMAD commands alongside rules
475
+ - **Enhanced Logging**: Better feedback on agents, tasks, tools, and workflow commands generated
476
+
477
+ ### 🤖 Agent System Improvements
478
+
479
+ **Agent Builder & Validation:**
480
+
481
+ - **hasSidecar Field**: All agents now indicate sidecar support (true/false)
482
+ - **Validation Enforcement**: hasSidecar now required in agent validation
483
+ - **Better Brownfield Documentation**: Improved brownfield project documentation
484
+ - **Agent Builder Updates**: Agent builder now uses hasSidecar field
485
+ - **Agent Editor Integration**: Editor workflow respects hasSidecar configuration
486
+
487
+ ### 🐛 Bug Fixes & Quality Improvements
488
+
489
+ **Critical Fixes:**
490
+
491
+ - **Windows Line Endings**: Resolved CRLF issues causing cross-platform problems
492
+ - **Code-Review File Filtering**: Fixed code-review picking up non-application files
493
+ - **ERR_REQUIRE_ESM Resolution**: Dynamic import for inquirer v9+ compatibility
494
+ - **Project-Context Conflicts**: Allow full project-context usage with conflict precedence
495
+ - **Workflow Paths**: Fixed paths for workflow and sprint status files
496
+ - **Missing Scripts**: Fixed missing scripts from installation
497
+
498
+ **Workflow & Variable Fixes:**
499
+
500
+ - **Variable Naming**: Standardized from {project_root} to {project-root} across CIS, BMGD, and BMM modules
501
+ - **Workflow References**: Fixed broken .yaml → .md workflow references
502
+ - **Advanced Elicitation Variables**: Fixed undefined variables in brainstorming
503
+ - **Dependency Format**: Corrected dependency format and added missing frontmatter
504
+
505
+ **Code Quality:**
506
+
507
+ - **Dependency Updates**: Bumped qs from 6.14.0 to 6.14.1
508
+ - **CodeRabbit Integration**: Enabled auto-review on new PRs
509
+ - **TEA Fragment Counts**: Updated fragment counts for accuracy
510
+ - **Documentation Links**: Fixed Discord channel references (#general-dev → #bmad-development)
511
+
512
+ ### 🚀 Installation & CLI Improvements
513
+
514
+ **Installation Enhancements:**
515
+
516
+ - **Workflow Exclusion**: Ability to exclude workflows from being added as commands
517
+ - **Example Workflow Protection**: Example workflow in workflow builder now excluded from tools
518
+ - **CNAME Configuration**: Added CNAME file for custom domain support
519
+ - **Script Fixes**: All scripts now properly included in installation
520
+
521
+ ### 📊 Statistics
522
+
523
+ - **27 commits** since alpha.22
524
+ - **217 documentation links** converted to site-relative format
525
+ - **42+ focused documents** created from large legacy files
526
+ - **7 topic-specific FAQ files** with standardized formatting
527
+ - **Complete documentation platform** migrated from Docusaurus to Astro/Starlight
528
+ - **Major workflow tools** added: Creator, Validator with subprocess support
529
+ - **Brainstorming workflow** overhauled with research-backed rigor
530
+
531
+ ---
532
+
533
+ ## [6.0.0-alpha.22]
534
+
535
+ **Release: December 31, 2025**
536
+
537
+ ### 🌟 Key Highlights
538
+
539
+ 1. **Unified Agent Workflow**: Create, Edit, and Validate workflows consolidated into single powerful agent workflow with separate step paths
540
+ 2. **Agent Knowledge System**: Comprehensive data file architecture with persona properties, validation patterns, and crafting principles
541
+ 3. **Deep Language Integration**: All sharded progressive workflows now support language choice at every step
542
+ 4. **Core Module Documentation**: Extensive docs for core workflows (brainstorming, party mode, advanced elicitation)
543
+ 5. **BMAD Core Concepts**: New documentation structure explaining agents, workflows, modules, and installation
544
+ 6. **Tech Spec Sharded**: create-tech-spec workflow converted to sharded format with orient-first pattern
545
+
546
+ ### 🤖 Unified Agent Workflow (Major Feature)
547
+
548
+ **Consolidated Architecture:**
549
+
550
+ - **Single Workflow, Three Paths**: Create, Edit, and Validate operations unified under `src/modules/bmb/workflows/agent/`
551
+ - **steps-c/**: Create path with 9 comprehensive steps for building new agents
552
+ - **steps-e/**: Edit path with 10 steps for modifying existing agents
553
+ - **steps-v/**: Validate path for standalone agent validation review
554
+ - **data/**: Centralized knowledge base for all agent-building intel
555
+
556
+ ### 📚 Agent Knowledge System
557
+
558
+ **Data File Architecture:**
559
+
560
+ Located in `src/modules/bmb/workflows/agent/data/`:
561
+
562
+ - **agent-metadata.md** (208 lines) - Complete metadata field reference
563
+ - **agent-menu-patterns.md** (233 lines) - Menu design patterns and best practices
564
+ - **agent-compilation.md** (273 lines) - Compilation process documentation
565
+ - **persona-properties.md** (266 lines) - Persona crafting properties and examples
566
+ - **principles-crafting.md** (292 lines) - Core principles for agent design
567
+ - **critical-actions.md** (120 lines) - Critical action patterns
568
+ - **expert-agent-architecture.md** (236 lines) - Expert agent structure
569
+ - **expert-agent-validation.md** (173 lines) - Expert-specific validation
570
+ - **module-agent-validation.md** (124 lines) - Module-specific validation
571
+ - **simple-agent-architecture.md** (204 lines) - Simple agent structure
572
+ - **simple-agent-validation.md** (132 lines) - Simple agent validation
573
+ - **understanding-agent-types.md** (222 lines) - Agent type comparison
574
+ - **brainstorm-context.md** - Brainstorming guidance
575
+ - **communication-presets.csv** - Communication style presets
576
+
577
+ **Reference Examples:**
578
+
579
+ - **reference/module-examples/architect.agent.yaml** - Module agent example
580
+ - **reference/simple-examples/commit-poet.agent.yaml** - Simple agent example
581
+ - **journal-keeper/** - Complete sidecar pattern example
582
+
583
+ **Templates:**
584
+
585
+ - **templates/simple-agent.template.md** - Simple agent template
586
+ - **templates/expert-agent-template/expert-agent.template.md** - Expert agent template
587
+ - **templates/expert-agent-sidecar/** - Sidecar templates (instructions, memories)
588
+
589
+ ### 🌍 Deep Language Integration
590
+
591
+ **Progressive Workflow Language Support:**
592
+
593
+ - **Every Step Biased**: All sharded progressive workflow steps now include language preference context
594
+ - **260+ Files Updated**: Comprehensive language integration across:
595
+ - Core workflows (brainstorming, party mode, advanced elicitation)
596
+ - BMB workflows (create-agent, create-module, create-workflow, edit-workflow, etc.)
597
+ - BMGD workflows (game-brief, gdd, narrative, game-architecture, etc.)
598
+ - BMM workflows (research, create-ux-design, prd, create-architecture, etc.)
599
+ - **Tested Languages**: Verified working with Spanish and Pirate Speak
600
+ - **Natural Conversations**: AI agents respond in configured language throughout workflow
601
+
602
+ ### 📖 Core Module Documentation
603
+
604
+ **New Core Documentation Structure:**
605
+
606
+ `docs/modules/core/`:
607
+
608
+ - **index.md** - Core module overview
609
+ - **core-workflows.md** - Core workflow documentation
610
+ - **core-tasks.md** - Core task reference
611
+ - **brainstorming.md** (100 lines) - Brainstorming workflow guide
612
+ - **party-mode.md** (50 lines) - Party mode guide
613
+ - **advanced-elicitation.md** (105 lines) - Advanced elicitation techniques
614
+ - **document-sharding-guide.md** (133 lines) - Sharded workflow format guide
615
+ - **global-core-config.md** - Global core configuration reference
616
+
617
+ **Advanced Elicitation Moved:**
618
+
619
+ - **From**: `docs/` root
620
+ - **To**: `src/core/workflows/advanced-elicitation/`
621
+ - **Status**: Now a proper core workflow with methods.csv
622
+
623
+ ### 📚 BMAD Core Concepts Documentation
624
+
625
+ **New Documentation Structure:**
626
+
627
+ `docs/bmad-core-concepts/`:
628
+
629
+ - **index.md** - Core concepts introduction
630
+ - **agents.md** (93 lines) - Understanding agents in BMAD
631
+ - **workflows.md** (89 lines) - Understanding workflows in BMAD
632
+ - **modules.md** (76 lines) - Understanding modules (BMM, BMGD, CIS, BMB, Core)
633
+ - **installing/index.md** (77 lines) - Installation guide
634
+ - **installing/upgrading.md** (144 lines) - Upgrading guide
635
+ - **bmad-customization/index.md** - Customization overview
636
+ - **bmad-customization/agents.md** - Agent customization guide
637
+ - **bmad-customization/workflows.md** (30 lines) - Workflow customization guide
638
+ - **web-bundles/index.md** (34 lines) - Web bundle distribution guide
639
+
640
+ **Documentation Cleanup:**
641
+
642
+ - **Removed v4-to-v6-upgrade.md** - Outdated upgrade guide
643
+ - **Removed document-sharding-guide.md** from docs root (moved to core)
644
+ - **Removed web-bundles-gemini-gpt-guide.md** - Consolidated into web-bundles/index.md
645
+ - **Removed getting-started/installation.md** - Migrated to bmad-core-concepts
646
+ - **Removed all ide-info/*.md files** - Consolidated into web-bundles documentation
647
+
648
+ ### 🔧 Create-Tech-Spec Sharded Conversion
649
+
650
+ **Monolithic to Sharded:**
651
+
652
+ - **From**: Single `workflow.yaml` with `instructions.md`
653
+ - **To**: Sharded `workflow.md` with individual step files
654
+ - **Pattern**: Orient-first approach (understand before investigating)
655
+
656
+ ### 🔨 Additional Improvements
657
+
658
+ **Workflow Status Path Fixes:**
659
+
660
+ - **Corrected Discovery Paths**: workflow-status workflows now properly use planning_artifacts and implementation_artifacts
661
+ - **Updated All Path Files**: enterprise-brownfield, enterprise-greenfield, method-brownfield, method-greenfield
662
+
663
+ **Documentation Updates:**
664
+
665
+ - **BMB Agent Creation Guide**: Comprehensive 166-line guide for agent creation
666
+ - **Workflow Vendoring Doc**: New 42-line guide on workflow customization and inheritance
667
+ - **Document Project Reference**: Moved from BMM docs to shared location
668
+ - **Workflows Planning Guide**: New 89-line guide for planning workflows
669
+
670
+ **BMB Documentation Streamlining:**
671
+
672
+ - **Removed Redundant Docs**: Eliminated duplicate documentation in `src/modules/bmb/docs/`
673
+ - **Step File Rules**: New 469-line comprehensive guide for step file creation
674
+ - **Agent Docs Moved**: Agent architecture and validation docs moved to workflow data/
675
+
676
+ **Windows Inquirer Fix:**
677
+
678
+ - **Another Default Addition**: Additional inquirer default value setting for better Windows multiselection support
679
+
680
+ **Code Quality:**
681
+
682
+ - **Removed Old BMM README**: Consolidated module documentation
683
+ - **Removed BMM Troubleshooting**: 661-line doc moved to shared location
684
+ - **Removed Enterprise Agentic Development**: 686-line doc consolidated
685
+ - **Removed Scale Adaptive System**: 618-line doc consolidated
686
+
687
+ ---
688
+
689
+ ## [6.0.0-alpha.21]
690
+
691
+ **Release: December 27, 2025**
692
+
693
+ ### 🌟 Key Highlights
694
+
695
+ 1. **Consistent Menu System**: All agents now use standardized 2-letter menu codes (e.g., "rd" for research, "ca" for create-architecture)
696
+ 2. **Planning Artifacts Architecture**: Phase 1-3 workflows now properly segregate planning artifacts from documentation
697
+ 3. **Windows Installer Fixed Again**: Updated inquirer to resolve multiselection tool issues
698
+ 4. **Auto-Injected Features**: Chat and party mode automatically injected into all agents
699
+ 5. **Validation System**: All agents now pass comprehensive new validation checks
700
+
701
+ ### 🎯 Consistent Menu System (Major Feature)
702
+
703
+ **Standardized 2-Letter Codes:**
704
+
705
+ - **Compound Menu Triggers**: All agents now use consistent 2-letter compound trigger format (e.g., `bmm-rd`, `bmm-ca`)
706
+ - **Improved UX**: Shorter, more memorable command shortcuts across all modules
707
+ - **Module Prefixing**: Menu items properly scoped by module prefix (bmm-, bmgd-, cis-, bmb-)
708
+ - **Universal Pattern**: All 22 agents updated to follow the same menu structure
709
+
710
+ **Agent Updates:**
711
+
712
+ - **BMM Module**: 9 agents with standardized menus (pm, analyst, architect, dev, ux-designer, tech-writer, sm, tea, quick-flow-solo-dev)
713
+ - **BMGD Module**: 6 agents with standardized menus (game-architect, game-designer, game-dev, game-qa, game-scrum-master, game-solo-dev)
714
+ - **CIS Module**: 6 agents with standardized menus (innovation-strategist, design-thinking-coach, creative-problem-solver, brainstorming-coach, presentation-master, storyteller)
715
+ - **BMB Module**: 3 agents with standardized menus (bmad-builder, agent-builder, module-builder, workflow-builder)
716
+ - **Core Module**: BMAD Master agent updated with consistent menu patterns
717
+
718
+ ### 📁 Planning Artifacts Architecture
719
+
720
+ **Content Segregation Implementation:**
721
+
722
+ - **Phase 1-3 Workflows**: All planning workflows now use `planning_artifacts` folder (default changed from `docs`)
723
+ - **Proper Input Discovery**: Workflows follow consistent input discovery patterns from planning artifacts
724
+ - **Output Management**: Planning artifacts properly separated from long-term documentation
725
+ - **Affected Workflows**:
726
+ - Product Brief: Updated discovery and output to planning artifacts
727
+ - PRD: Fixed discovery and output to planning artifacts
728
+ - UX Design: Updated all steps for proper artifact handling
729
+ - Architecture: Updated discovery and output flow
730
+ - Game Architecture: Updated for planning artifacts
731
+ - Story Creation: Updated workflow output paths
732
+
733
+ **File Organization:**
734
+
735
+ - **Planning Artifacts**: Ephemeral planning documents (prd.md, product-brief.md, ux-design.md, architecture.md)
736
+ - **Documentation**: Long-term project documentation (separate from planning)
737
+ - **Module Configuration**: BMM and BMGD modules updated with proper default paths
738
+
739
+ ### 🪟 Windows Installer Fixes
740
+
741
+ **Inquirer Multiselection Fix:**
742
+
743
+ - **Updated Inquirer Version**: Resolved tool multiselection issues that were causing Windows installer failures
744
+ - **Better Compatibility**: Improved handling of checkbox and multi-select prompts on Windows(?)
745
+
746
+ ### 🤖 Agent System Improvements
747
+
748
+ **Auto-Injected Features:**
749
+
750
+ - **Chat Mode**: Automatically injected into all agents during compilation
751
+ - **Party Mode**: Automatically injected into all agents during compilation
752
+ - **Reduced Manual Configuration**: No need to manually add these features to agent definitions
753
+ - **Consistent Behavior**: All agents now have uniform access to chat and party mode capabilities
754
+
755
+ **Agent Normalization:**
756
+
757
+ - **All Agents Validated**: All 22 agents pass comprehensive validation checks
758
+ - **Schema Enforcement**: Proper compound trigger validation implemented
759
+ - **Metadata Cleanup**: Removed obsolete and inconsistent metadata patterns
760
+ - **Test Fixtures Updated**: Validation test fixtures aligned with new requirements
761
+
762
+ ### 🔧 Bug Fixes & Cleanup
763
+
764
+ **Docusaurus Merge Recovery:**
765
+
766
+ - **Restored Agent Files**: Fixed agent files accidentally modified in Docusaurus merge (PR #1191)
767
+ - **Reference Cleanup**: Removed obsolete agent reference examples (journal-keeper, security-engineer, trend-analyst)
768
+ - **Test Fixture Updates**: Aligned test fixtures with current validation requirements
769
+
770
+ **Code Quality:**
771
+
772
+ - **Schema Improvements**: Enhanced agent schema validation with better error messages
773
+ - **Removed Redundancy**: Cleaned up duplicate and obsolete agent definitions
774
+ - **Installer Cleanup**: Removed unused configuration code from BMM installer
775
+
776
+ **Planning Artifacts Path:**
777
+ - Default: `planning_artifacts/` (configurable in module.yaml)
778
+ - Previous: `docs/`
779
+ - Benefit: Clear separation between planning work and permanent documentation
780
+
781
+ ---
782
+
783
+ ## [6.0.0-alpha.20]
784
+
785
+ **Release: December 23, 2025**
786
+
787
+ ### 🌟 Key Highlights
788
+
789
+ 1. **Windows Installer Fixed**: Better compatibility with inquirer v9.x upgrade
790
+ 2. **Path Segregation**: Revolutionary content organization separating ephemeral artifacts from permanent documentation
791
+ 3. **Custom Installation Messages**: Configurable intro/outro messages for professional installation experience
792
+ 4. **Enhanced Upgrade Logic**: Two-version auto upgrades with proper config preservation
793
+ 5. **Quick-Dev Refactor**: Sharded format with comprehensive adversarial review
794
+ 6. **Improved Quality**: Streamlined personas, fixed workflows, and cleaned up documentation
795
+ 7. **Doc Site Auto Generation**; Auto Generate a docusaurus site update on merge
796
+
797
+ ### 🪟 Windows Installer (hopefully) Fixed
798
+
799
+ **Inquirer Upgrade:**
800
+
801
+ - **Updated to v9.x**: Upgraded inquirer package for better Windows support
802
+ - **Improved Compatibility**: Better handling of Windows terminal environments
803
+ - **Enhanced UX**: More reliable interactive prompts across platforms
804
+
805
+ ### 🎯 Path Segregation Implementation (Major Feature)
806
+
807
+ **Revolutionary Content Organization:**
808
+
809
+ - **Phase 1-4 Path Segregation**: Implemented new BM paths across all BMM and BMGD workflows
810
+ - **Planning vs Implementation Artifacts**: Separated ephemeral Phase 4 artifacts from permanent documentation
811
+ - **Optimized File Organization**: Better structure differentiating planning artifacts from long-term project documentation
812
+ - **Backward Compatible**: Existing installations continue working while preparing for optimized content organization
813
+ - **Module Configuration Updates**: Enhanced module.yaml with new path configurations for all phases
814
+ - **Workflow Path Updates**: All 90+ workflow files updated with proper path configurations
815
+
816
+ **Documentation Cleanup:**
817
+
818
+ - **Removed Obsolete Documentation**: Cleaned up 3,100+ lines of outdated documentation
819
+ - **Streamlined README Files**: Consolidated and improved module documentation
820
+ - **Enhanced Clarity**: Removed redundant content and improved information architecture
821
+
822
+ ### 💬 Installation Experience Enhancements
823
+
824
+ **Custom Installation Messages:**
825
+
826
+ - **Configurable Intro/Outro Messages**: New install-messages.yaml file for customizable installation messages
827
+ - **Professional Installation Flow**: Custom welcome messages and completion notifications
828
+ - **Module-Specific Messaging**: Tailored messages for different installation contexts
829
+ - **Enhanced User Experience**: More informative and personalized installation process
830
+
831
+ **Core Module Improvements:**
832
+
833
+ - **Always Ask Questions**: Core module now always prompts for configuration (no accept defaults)
834
+ - **Better User Engagement**: Ensures users actively configure their installation
835
+ - **Improved Configuration Accuracy**: Reduces accidental acceptance of defaults
836
+
837
+ ### 🔧 Upgrade & Configuration Management
838
+
839
+ **Two-Version Auto Upgrade:**
840
+
841
+ - **Smarter Upgrade Logic**: Automatic upgrades now span 2 versions (e.g., .16 → .18)
842
+ - **Config Variable Preservation**: Ensures all configuration variables are retained during quick updates
843
+ - **Seamless Updates**: Quick updates now preserve custom settings properly
844
+ - **Enhanced Upgrade Safety**: Better handling of configuration across version boundaries
845
+
846
+ ### 🤖 Workflow Improvements
847
+
848
+ **Quick-Dev Workflow Refactor (PR #1182):**
849
+
850
+ - **Sharded Format Conversion**: Converted quick-dev workflow to modern step-file format
851
+ - **Adversarial Review Integration**: Added comprehensive self-check and adversarial review steps
852
+ - **Enhanced Quality Assurance**: 6-step process with mode detection, context gathering, execution, self-check, review, and resolution
853
+ - **578 New Lines Added**: Significant expansion of quick-dev capabilities
854
+
855
+ **BMGD Workflow Fixes:**
856
+
857
+ - **workflow-status Filename Correction**: Fixed incorrect filename references (PR #1172)
858
+ - **sprint-planning Update**: Added workflow-status update to game-architecture completion
859
+ - **Path Corrections**: Resolved dead references and syntax errors (PR #1164)
860
+
861
+ ### 🎨 Code Quality & Refactoring
862
+
863
+ **Persona Streamlining (PR #1167):**
864
+
865
+ - **Quick-Flow-Solo-Dev Persona**: Streamlined for clarity and accuracy
866
+ - **Improved Agent Behavior**: More focused and efficient solo development support
867
+
868
+ **Package Management:**
869
+
870
+ - **package-lock.json Sync**: Ensured version consistency (PR #1168)
871
+ - **Dependency Cleanup**: Reduced package-lock bloat significantly
872
+
873
+ **Prettier Configuration:**
874
+
875
+ - **Markdown Underscore Protection**: Prettier will no longer mess up underscores in markdown files
876
+ - **Disabled Auto-Fix**: Markdown formatting issues now handled more intelligently
877
+ - **Better Code Formatting**: Improved handling of special characters in documentation
878
+
879
+ ### 📚 Documentation Updates
880
+
881
+ **Sponsor Attribution:**
882
+
883
+ - **DigitalOcean Sponsorship**: Added attribution for DigitalOcean support (PR #1162)
884
+
885
+ **Content Reorganization:**
886
+
887
+ - **Removed Unused Docs**: Eliminated obsolete documentation files
888
+ - **Consolidated References**: Merged and reorganized technical references
889
+ - **Enhanced README Files**: Improved module and workflow documentation
890
+
891
+ ### 🧹 Cleanup & Optimization
892
+
893
+ **File Organization:**
894
+
895
+ - **Removed Asterisk Insertion**: Eliminated unwanted asterisk insertions into agent files
896
+ - **Removed Unused Commands**: Cleaned up deprecated command references
897
+ - **Consolidated Duplication**: Reduced code duplication across multiple files
898
+ - **Removed Unneeded Folders**: Cleaned up temporary and obsolete directory structures
899
+
900
+ ### 📊 Statistics
901
+
902
+ - **23 commits** since alpha.19
903
+ - **90+ workflow files** updated with new path configurations
904
+ - **3,100+ lines of documentation** removed and reorganized
905
+ - **578 lines added** to quick-dev workflow with adversarial review
906
+ - **Major architectural improvement** to content organization
907
+
908
+ ## [6.0.0-alpha.19]
909
+
910
+ **Release: December 18, 2025**
911
+
912
+ ### 🐛 Bug Fixes
913
+
914
+ **Installer Stability:**
915
+
916
+ - **Fixed \_bmad Folder Stutter**: Resolved issue with duplicate \_bmad folder creation when applying agent custom files
917
+ - **Cleaner Installation**: Removed unnecessary backup file that was causing bloat in the installer
918
+ - **Streamlined Agent Customization**: Fixed path handling for agent custom files to prevent folder duplication
919
+
920
+ ### 📊 Statistics
921
+
922
+ - **3 files changed** with critical fix
923
+ - **3,688 lines removed** by eliminating backup files
924
+ - **Improved installer performance** and stability
925
+
926
+ ---
927
+
928
+ ## [6.0.0-alpha.18]
929
+
930
+ **Release: December 18, 2025**
931
+
932
+ ### 🎮 BMGD Module - Complete Game Development Module Updated
933
+
934
+ **Massive BMGD Overhaul:**
935
+
936
+ - **New Game QA Agent (GLaDOS)**: Elite Game QA Architect with test automation specialization
937
+ - Engine-specific expertise: Unity, Unreal, Godot testing frameworks
938
+ - Comprehensive knowledge base with 15+ testing topics
939
+ - Complete testing workflows: test-framework, test-design, automate, playtest-plan, performance-test, test-review
940
+
941
+ - **New Game Solo Dev Agent (Indie)**: Rapid prototyping and iteration specialist
942
+ - Quick-flow workflows optimized for solo/small team development
943
+ - Streamlined development process for indie game creators
944
+
945
+ - **Production Workflow Alignment**: BMGD 4-production now fully aligned with BMM 4-implementation
946
+ - Removed obsolete workflows: story-done, story-ready, story-context, epic-tech-context
947
+ - Added sprint-status workflow for project tracking
948
+ - All workflows updated as standalone with proper XML instructions
949
+
950
+ **Game Testing Architecture:**
951
+
952
+ - **Complete Testing Knowledge Base**: 15 comprehensive testing guides covering:
953
+ - Engine-specific: Unity (TF 1.6.0), Unreal, Godot testing
954
+ - Game-specific: Playtesting, balance, save systems, multiplayer
955
+ - Platform: Certification (TRC/XR), localization, input systems
956
+ - QA Fundamentals: Automation, performance, regression, smoke testing
957
+
958
+ **New Workflows & Features:**
959
+
960
+ - **workflow-status**: Multi-mode status checker for game projects
961
+ - Game-specific project levels (Game Jam → AAA)
962
+ - Support for gamedev and quickflow paths
963
+ - Project initialization workflow
964
+
965
+ - **create-tech-spec**: Game-focused technical specification workflow
966
+ - Engine-aware (Unity/Unreal/Godot) specifications
967
+ - Performance and gameplay feel considerations
968
+
969
+ - **Enhanced Documentation**: Complete documentation suite with 9 guides
970
+ - agents-guide.md: Reference for all 6 agents
971
+ - workflows-guide.md: Complete workflow documentation
972
+ - game-types-guide.md: 24 game type templates
973
+ - quick-flow-guide.md: Rapid development guide
974
+ - Comprehensive troubleshooting and glossary
975
+
976
+ ### 🤖 Agent Management Improved
977
+
978
+ **Agent Recompile Feature:**
979
+
980
+ - **New Menu Item**: Added "Recompile Agents" option to the installer menu
981
+ - **Selective Compilation**: Recompile only agents without full module upgrade
982
+ - **Faster Updates**: Quick agent updates without complete reinstallation
983
+ - **Customization Integration**: Automatically applies customizations during recompile
984
+
985
+ **Agent Customization Enhancement:**
986
+
987
+ - **Complete Field Support**: ALL fields from agent customization YAML are now properly injected
988
+ - **Deep Merge Implementation**: Customizations now properly override all agent properties
989
+ - **Persistent Customizations**: Custom settings survive updates and recompiles
990
+ - **Enhanced Flexibility**: Support for customizing metadata, persona, menu items, and workflows
991
+
992
+ ### 🔧 Installation & Module Management
993
+
994
+ **Custom Module Installation:**
995
+
996
+ - **Enhanced Module Addition**: Modify install now supports adding custom modules even if none were originally installed
997
+ - **Flexible Module Management**: Easy addition and removal of custom modules post-installation
998
+ - **Improved Manifest Tracking**: Better tracking of custom vs core modules
999
+
1000
+ **Quality Improvements:**
1001
+
1002
+ - **Comprehensive Code Review**: Fixed 20+ issues identified in PR review
1003
+ - **Type Validation**: Added proper type checking for configuration values
1004
+ - **Path Security**: Enhanced path traversal validation for better security
1005
+ - **Documentation Updates**: All documentation updated to reflect new features
1006
+
1007
+ ### 📊 Statistics
1008
+
1009
+ - **178 files changed** with massive BMGD expansion
1010
+ - **28,350+ lines added** across testing documentation and workflows
1011
+ - **2 new agents** added to BMGD module
1012
+ - **15 comprehensive testing guides** created
1013
+ - **Complete alignment** between BMGD and BMM production workflows
1014
+
1015
+ ### 🌟 Key Highlights
1016
+
1017
+ 1. **BMGD Module Revolution**: Complete overhaul with professional game development workflows
1018
+ 2. **Game Testing Excellence**: Comprehensive testing architecture for all major game engines
1019
+ 3. **Agent Management**: New recompile feature allows quick agent updates without full reinstall
1020
+ 4. **Full Customization Support**: All agent fields now customizable via YAML
1021
+ 5. **Industry-Ready Documentation**: Professional-grade guides for game development teams
1022
+
1023
+ ---
1024
+
1025
+ ## [6.0.0-alpha.17]
1026
+
1027
+ **Release: December 16, 2025**
1028
+
1029
+ ### 🚀 Revolutionary Installer Overhaul
1030
+
1031
+ **Unified Installation Experience:**
1032
+
1033
+ - **Streamlined Module Installation**: Completely redesigned installer with unified flow for both core and custom content
1034
+ - **Single Install Panel**: Eliminated disjointed clearing between modules for smoother, more intuitive installation
1035
+ - **Quick Default Selection**: New quick install feature with default selections for faster setup of selected modules
1036
+ - **Enhanced UI/UX**: Improved question order, reduced verbose output, and cleaner installation interface
1037
+ - **Logical Question Flow**: Reorganized installer questions to follow natural progression and user expectations
1038
+
1039
+ **Custom Content Installation Revolution:**
1040
+
1041
+ - **Full Custom Content Support**: Re-enabled complete custom content generation and sharing through the installer
1042
+ - **Custom Module Tracking**: Manifest now tracks custom modules separately to ensure they're always installed from the custom cache
1043
+ - **Custom Installation Order**: Custom modules now install after core modules for better dependency management
1044
+ - **Quick Update with Custom Content**: Quick update now properly retains and updates custom content
1045
+ - **Agent Customization Integration**: Customizations are now applied during quick updates and agent compilation
1046
+
1047
+ ### 🧠 Revolutionary Agent Memory & Visibility System
1048
+
1049
+ **Breaking Through Dot-Folder Limitations:**
1050
+
1051
+ - **Dot-Folder to Underscore Migration**: Critical change from `.bmad` to `_bmad` ensures LLMs (Codex, Claude, and others) can no longer ignore or skip BMAD content - dot folders are commonly filtered out by AI systems
1052
+ - **Universal Content Visibility**: Underscore folders are treated as regular content, ensuring full AI agent access to all BMAD resources and configurations
1053
+ - **Agent Memory Architecture**: Rolled out comprehensive agent memory support for installed agents with `-sidecar` folders
1054
+ - **Persistent Agent Learning**: Sidecar content installs to `_bmad/_memory`, giving each agent the ability to learn and remember important information specific to its role
1055
+
1056
+ **Content Location Strategy:**
1057
+
1058
+ - **Standardized Memory Location**: All sidecar content now uses `_bmad/_memory` as the unified location for agent memories
1059
+ - **Segregated Output System**: New architecture supports differentiating between ephemeral Phase 4 artifacts and long-term documentation
1060
+ - **Forward Compatibility**: Existing installations continue working with content in docs folder, with optimization coming in next release
1061
+ - **Configuration Cleanup**: Renamed `_cfg` to `_config` for clearer naming conventions
1062
+ - **YAML Library Consolidation**: Reduced dependency to use only one YAML library for better stability
1063
+
1064
+ ### 🎯 Future-Ready Architecture
1065
+
1066
+ **Content Organization Preview:**
1067
+
1068
+ - **Phase 4 Artifact Segregation**: Infrastructure ready for separating ephemeral workflow artifacts from permanent documentation
1069
+ - **Planning vs Implementation Docs**: New system will differentiate between planning artifacts and long-term project documentation
1070
+ - **Backward Compatibility**: Current installs maintain full functionality while preparing for optimized content organization
1071
+ - **Quick Update Path**: Tomorrow's quick update will fully optimize all BMM workflows to use new segregated output locations
1072
+
1073
+ ### 🎯 Sample Modules & Documentation
1074
+
1075
+ **Comprehensive Examples:**
1076
+
1077
+ - **Sample Unitary Module**: Complete example with commit-poet agent and quiz-master workflow
1078
+ - **Sample Wellness Module**: Meditation guide and wellness companion agents demonstrating advanced patterns
1079
+ - **Enhanced Documentation**: Updated README files and comprehensive installation guides
1080
+ - **Custom Content Creation Guides**: Step-by-step documentation for creating and sharing custom modules
1081
+
1082
+ ### 🔧 Bug Fixes & Optimizations
1083
+
1084
+ **Installer Improvements:**
1085
+
1086
+ - **Fixed Duplicate Entry Issue**: Resolved duplicate entries in files manifest
1087
+ - **Reduced Log Noise**: Less verbose logging during installation for cleaner user experience
1088
+ - **Menu Wording Updates**: Improved menu text for better clarity and understanding
1089
+ - **Fixed Quick Install**: Resolved issues with quick installation functionality
1090
+
1091
+ **Code Quality:**
1092
+
1093
+ - **Minor Code Cleanup**: General cleanup and refactoring throughout the codebase
1094
+ - **Removed Unused Code**: Cleaned up deprecated and unused functionality
1095
+ - **Release Workflow Restoration**: Fixed automated release workflow for v6
1096
+
1097
+ **BMM Phase 4 Workflow Improvements:**
1098
+
1099
+ - **Sprint Status Enhancement**: Improved sprint-status validation with interactive correction for unknown values and better epic status handling
1100
+ - **Story Status Standardization**: Normalized all story status references to lowercase kebab-case (ready-for-dev, in-progress, review, done)
1101
+ - **Removed Stale Story State**: Eliminated deprecated 'drafted' story state - stories now go directly from creation to ready-for-dev
1102
+ - **Code Review Clarity**: Improved code review completion message from "Story is ready for next work!" to "Code review complete!" for better clarity
1103
+ - **Risk Detection Rules**: Rewrote risk detection rules for better LLM clarity and fixed warnings vs risks naming inconsistency
1104
+
1105
+ ### 📊 Statistics
1106
+
1107
+ - **40+ commits** since alpha.16
1108
+ - **Major installer refactoring** with complete UX overhaul
1109
+ - **2 new sample modules** with comprehensive examples
1110
+ - **Full custom content support** re-enabled and improved
1111
+
1112
+ ### 🌟 Key Highlights
1113
+
1114
+ 1. **Installer Revolution**: The installation system has been completely overhauled for better user experience, reliability, and speed
1115
+ 2. **Custom Content Freedom**: Users can now easily create, share, and install custom content through the streamlined installer
1116
+ 3. **AI Visibility Breakthrough**: Migration from `.bmad` to `_bmad` ensures LLMs can access all BMAD content (dot folders are commonly ignored by AI systems)
1117
+ 4. **Agent Memory System**: Rolled out persistent agent memory support - agents with `-sidecar` folders can now learn and remember important information in `_bmad/_memory`
1118
+ 5. **Quick Default Selection**: Installation is now faster with smart default selections for popular configurations
1119
+ 6. **Future-Ready Architecture**: Infrastructure in place for segregating ephemeral artifacts from permanent documentation (full optimization coming in next release)
1120
+
1121
+ ## [6.0.0-alpha.16]
1122
+
1123
+ **Release: December 10, 2025**
1124
+
1125
+ ### 🔧 Temporary Changes & Fixes
1126
+
1127
+ **Installation Improvements:**
1128
+
1129
+ - **Temporary Custom Content Installation Disable**: Custom content installation temporarily disabled to improve stability
1130
+ - **BMB Workflow Path Fixes**: Fixed numerous path references in BMB workflows to ensure proper step file resolution
1131
+ - **Package Updates**: Updated dependencies for improved security and performance
1132
+
1133
+ **Path Resolution Improvements:**
1134
+
1135
+ - **BMB Agent Builder Fixes**: Corrected path references in step files and documentation
1136
+ - **Workflow Path Standardization**: Ensured consistent path handling across all BMB workflows
1137
+ - **Documentation References**: Updated internal documentation links and references
1138
+
1139
+ **Cleanup Changes:**
1140
+
1141
+ - **Example Modules Removal**: Temporarily removed example modules to prevent accidental installation
1142
+ - **Memory Management**: Improved sidecar file handling for custom modules
1143
+
1144
+ ### 📊 Statistics
1145
+
1146
+ - **336 files changed** with path fixes and improvements
1147
+ - **4 commits** since alpha.15
1148
+
1149
+ ---
1150
+
1151
+ ## [6.0.0-alpha.15]
1152
+
1153
+ **Release: December 7, 2025**
1154
+
1155
+ ### 🔧 Module Installation Standardization
1156
+
1157
+ **Unified Module Configuration:**
1158
+
1159
+ - **module.yaml Standard**: All modules now use `module.yaml` instead of `_module-installer/install-config.yaml` for consistent configuration (BREAKING CHANGE)
1160
+ - **Universal Installer**: Both core and custom modules now use the same installer with consistent behavior
1161
+ - **Streamlined Module Creation**: Module builder templates updated to use new module.yaml standard
1162
+ - **Enhanced Module Discovery**: Improved module caching and discovery mechanisms
1163
+
1164
+ **Custom Content Installation Revolution:**
1165
+
1166
+ - **Interactive Custom Content Search**: Installer now proactively asks if you have custom content to install
1167
+ - **Flexible Location Specification**: Users can indicate custom content location during installation
1168
+ - **Improved Custom Module Handler**: Enhanced error handling and debug output for custom installations
1169
+ - **Comprehensive Documentation**: New custom-content-installation.md guide (245 lines) replacing custom-agent-installation.md
1170
+
1171
+ ### 🤖 Code Review Integration Expansion
1172
+
1173
+ **AI Review Tools:**
1174
+
1175
+ - **CodeRabbit AI Integration**: Added .coderabbit.yaml configuration for automated code review
1176
+ - **Raven's Verdict PR Review Tool**: New PR review automation tool (297 lines of documentation)
1177
+ - **Review Path Configuration**: Proper exclusion patterns for node_modules and generated files
1178
+ - **Review Documentation**: Comprehensive usage guidance and skip conditions for PRs
1179
+
1180
+ ### 📚 Documentation Improvements
1181
+
1182
+ **Documentation Restructuring:**
1183
+
1184
+ - **Code of Conduct**: Moved to .github/ folder following GitHub standards
1185
+ - **Gem Creation Link**: Updated to point to Gemini Gem manager instead of deprecated interface
1186
+ - **Example Custom Content**: Improved README files and disabled example modules to prevent accidental installation
1187
+ - **Custom Module Documentation**: Enhanced module installation guides with new YAML structure
1188
+
1189
+ ### 🧹 Cleanup & Optimization
1190
+
1191
+ **Memory Management:**
1192
+
1193
+ - **Removed Hardcoded .bmad Folders**: Cleaned up demo content to use configurable paths
1194
+ - **Sidecar File Cleanup**: Removed old .bmad-user-memory folders from wellness modules
1195
+ - **Example Content Organization**: Better organization of example-custom-content directory
1196
+
1197
+ **Installer Improvements:**
1198
+
1199
+ - **Debug Output Enhancement**: Added informative debug output when installer encounters errors
1200
+ - **Custom Module Caching**: Improved caching mechanism for custom module installations
1201
+ - **Consistent Behavior**: All modules now behave consistently regardless of custom or core status
1202
+
1203
+ ### 📊 Statistics
1204
+
1205
+ - **77 files changed** with 2,852 additions and 607 deletions
1206
+ - **15 commits** since alpha.14
1207
+
1208
+ ### ⚠️ Breaking Changes
1209
+
1210
+ 1. **module.yaml Configuration**: All modules must now use `module.yaml` instead of `_module-installer/install-config.yaml`
1211
+ - Core modules updated automatically
1212
+ - Custom modules will need to rename their configuration file
1213
+ - Module builder templates generate new format
1214
+
1215
+ ### 📦 New Dependencies
1216
+
1217
+ - No new dependencies added in this release
1218
+
1219
+ ---
1220
+
1221
+ ## [6.0.0-alpha.14]
1222
+
1223
+ **Release: December 7, 2025**
1224
+
1225
+ ### 🔧 Installation & Configuration Revolution
1226
+
1227
+ **Custom Module Installation Overhaul:**
1228
+
1229
+ - **Simple custom.yaml Installation**: Custom agents and workflows can now be installed with a single YAML file
1230
+ - **IDE Configuration Preservation**: Upgrades will no longer delete custom modules, agents, and workflows from IDE configuration
1231
+ - **Removed Legacy agent-install Command**: Streamlined installation process (BREAKING CHANGE)
1232
+ - **Sidecar File Retention**: Custom sidecar files are preserved during updates
1233
+ - **Flexible Agent Sidecar Locations**: Fully configurable via config options instead of hardcoded paths
1234
+
1235
+ **Module Discovery System Transformation:**
1236
+
1237
+ - **Recursive Agent Discovery**: Deep scanning for agents across entire project structure
1238
+ - **Enhanced Manifest Generation**: Comprehensive scanning of all installed modules
1239
+ - **Nested Agent Support**: Fixed nested agents appearing in CLI commands
1240
+ - **Module Reinstall Fix**: Prevented modules from showing as obsolete during reinstall
1241
+
1242
+ ### 🏗️ Advanced Builder Features
1243
+
1244
+ **Workflow Builder Evolution:**
1245
+
1246
+ - **Continuable Workflows**: Create workflows with sophisticated branching and continuation logic
1247
+ - **Template LOD Options**: Level of Detail output options for flexible workflow generation
1248
+ - **Step-Based Architecture**: Complete conversion to granular step-file system
1249
+ - **Enhanced Creation Process**: Improved workflow creation with better template handling
1250
+
1251
+ **Module Builder Revolution:**
1252
+
1253
+ - **11-Step Module Creation**: Comprehensive step-by-step module generation process
1254
+ - **Production-Ready Templates**: Complete templates for agents, installers, and workflow plans
1255
+ - **Built-in Validation System**: Ensures module quality and BMad Core compliance
1256
+ - **Professional Documentation**: Auto-generated module documentation and structure
1257
+
1258
+ ### 🚀 BMad Method (BMM) Enhancements
1259
+
1260
+ **Workflow Improvements:**
1261
+
1262
+ - **Brownfield PRD Support**: Enhanced PRD workflow for existing project integration
1263
+ - **Sprint Status Command**: New workflow for tracking development progress
1264
+ - **Step-Based Format**: Improved continue functionality across all workflows
1265
+ - **Quick-Spec-Flow Documentation**: Rapid development specification flows
1266
+
1267
+ **Documentation Revolution:**
1268
+
1269
+ - **Comprehensive Troubleshooting Guide**: 680-line detailed troubleshooting documentation
1270
+ - **Quality Check Integration**: Added markdownlint-cli2 for markdown quality assurance
1271
+ - **Enhanced Test Architecture**: Improved CI/CD templates and testing workflows
1272
+
1273
+ ### 🌟 New Features & Integrations
1274
+
1275
+ **Kiro-Cli Installer:**
1276
+
1277
+ - **Intelligent Routing**: Smart routing to quick-dev workflow
1278
+ - **BMad Core Compliance**: Full compliance with BMad standards
1279
+
1280
+ **Discord Notifications:**
1281
+
1282
+ - **Compact Format**: Streamlined plain-text notifications
1283
+ - **Bug Fixes**: Resolved notification delivery issues
1284
+
1285
+ **Example Mental Wellness Module (MWM):**
1286
+
1287
+ - **Complete Module Example**: Demonstrates advanced module patterns
1288
+ - **Multiple Agents**: CBT Coach, Crisis Navigator, Meditation Guide, Wellness Companion
1289
+ - **Workflow Showcase**: Crisis support, daily check-in, meditation, journaling workflows
1290
+
1291
+ ### 🐛 Bug Fixes & Optimizations
1292
+
1293
+ - Fixed version reading from package.json instead of hardcoded fallback
1294
+ - Removed hardcoded years from WebSearch queries
1295
+ - Removed broken build caching mechanism
1296
+ - Enhanced TTS injection summary with tracking and documentation
1297
+ - Fixed CI nvmrc configuration issues
1298
+
1299
+ ### 📊 Statistics
1300
+
1301
+ - **335 files changed** with 17,161 additions and 8,204 deletions
1302
+ - **46 commits** since alpha.13
1303
+
1304
+ ### ⚠️ Breaking Changes
1305
+
1306
+ 1. **Removed agent-install Command**: Migrate to new custom.yaml installation system
1307
+ 2. **Agent Sidecar Configuration**: Now requires explicit config instead of hardcoded paths
1308
+
1309
+ ### 📦 New Dependencies
1310
+
1311
+ - `markdownlint-cli2: ^0.19.1` - Professional markdown linting
1312
+
1313
+ ---
1314
+
1315
+ ## [6.0.0-alpha.13]
1316
+
1317
+ **Release: November 30, 2025**
1318
+
1319
+ ### 🏗️ Revolutionary Workflow Architecture
1320
+
1321
+ - **Step-File System**: Complete conversion to granular step-file architecture with dynamic menu generation
1322
+ - **Phase 4 Transformation**: Simplified architecture with sprint planning integration (Jira, Linear, Trello)
1323
+ - **Performance Improvements**: Eliminated time-based estimates, reduced file loading times
1324
+ - **Legacy Cleanup**: Removed all deprecated workflows for cleaner system
1325
+
1326
+ ### 🤖 Agent System Revolution
1327
+
1328
+ - **Universal Custom Agent Support**: Extended to ALL IDEs including Antigravity and Rovo Dev
1329
+ - **Agent Creation Workflow**: Enhanced with better documentation and parameter clarity
1330
+ - **Multi-Source Discovery**: Agents now check multiple source locations for better discovery
1331
+ - **GitHub Migration**: Integration moved from chatmodes to agents folder
1332
+
1333
+ ### 🧪 Testing Infrastructure
1334
+
1335
+ - **Playwright Utils Integration**: @seontechnologies/playwright-utils across all testing workflows
1336
+ - **TTS Injection System**: Complete text-to-speech integration for voice feedback
1337
+ - **Web Bundle Test Support**: Enabled web bundles for test environments
1338
+
1339
+ ### ⚠️ Breaking Changes
1340
+
1341
+ 1. **Legacy Workflows Removed**: Migrate to new stepwise sharded workflows
1342
+ 2. **Phase 4 Restructured**: Update automation expecting old Phase 4 structure
1343
+ 3. **Agent Compilation Required**: Custom agents must use new creation workflow
1344
+
1345
+ ## [6.0.0-alpha.12]
1346
+
1347
+ **Release: November 19, 2025**
1348
+
1349
+ ### 🐛 Bug Fixes
1350
+
1351
+ - Added missing `yaml` dependency to fix `MODULE_NOT_FOUND` error when running `npx bmad-method install`
1352
+
1353
+ ## [6.0.0-alpha.11]
1354
+
1355
+ **Release: November 18, 2025**
1356
+
1357
+ ### 🚀 Agent Installation Revolution
1358
+
1359
+ - **bmad agent-install CLI**: Interactive agent installation with persona customization
1360
+ - **4 Reference Agents**: commit-poet, journal-keeper, security-engineer, trend-analyst
1361
+ - **Agent Compilation Engine**: YAML → XML with smart handler injection
1362
+ - **60 Communication Presets**: Pure communication styles for agent personas
1363
+
1364
+ ### 📚 BMB Agent Builder Enhancement
1365
+
1366
+ - **Complete Documentation Suite**: 7 new guides for agent architecture and creation
1367
+ - **Expert Agent Sidecar Support**: Multi-file agents with templates and knowledge bases
1368
+ - **Unified Validation**: 160-line checklist shared across workflows
1369
+ - **BMM Agent Voices**: All 9 agents enhanced with distinct communication styles
1370
+
1371
+ ### 🎯 Workflow Architecture Change
1372
+
1373
+ - **Epic Creation Moved**: Now in Phase 3 after Architecture for technical context
1374
+ - **Excalidraw Distribution**: Diagram capabilities moved to role-appropriate agents
1375
+ - **Google Antigravity IDE**: New installer with flattened file naming
1376
+
1377
+ ### ⚠️ Breaking Changes
1378
+
1379
+ 1. **Frame Expert Retired**: Use role-appropriate agents for diagrams
1380
+ 2. **Agent Installation**: New bmad agent-install command replaces manual installation
1381
+ 3. **Epic Creation Phase**: Moved from Phase 2 to Phase 3
1382
+
1383
+ ## [6.0.0-alpha.10]
1384
+
1385
+ **Release: November 16, 2025**
1386
+
1387
+ - **Epics After Architecture**: Major milestone - technically-informed user stories created post-architecture
1388
+ - **Frame Expert Agent**: New Excalidraw specialist with 4 diagram workflows
1389
+ - **Time Estimate Prohibition**: Warnings across 33 workflows acknowledging AI's impact on development speed
1390
+ - **Platform-Specific Commands**: ide-only/web-only fields filter menu items by environment
1391
+ - **Agent Customization**: Enhanced memory/prompts merging via \*.customize.yaml files
1392
+
1393
+ ## [6.0.0-alpha.9]
1394
+
1395
+ **Release: November 12, 2025**
1396
+
1397
+ - **Intelligent File Discovery**: discover_inputs with FULL_LOAD, SELECTIVE_LOAD, INDEX_GUIDED strategies
1398
+ - **3-Track System**: Simplified from 5 levels to 3 intuitive tracks
1399
+ - **Web Bundles Guide**: Comprehensive documentation with 60-80% cost savings strategies
1400
+ - **Unified Output Structure**: Eliminated .ephemeral/ folders - single configurable output folder
1401
+ - **BMGD Phase 4**: Added 10 game development workflows with BMM patterns
1402
+
1403
+ ## [6.0.0-alpha.8]
1404
+
1405
+ **Release: November 9, 2025**
1406
+
1407
+ - **Configurable Installation**: Custom directories with .bmad hidden folder default
1408
+ - **Optimized Agent Loading**: CLI loads from installed files, eliminating duplication
1409
+ - **Party Mode Everywhere**: All web bundles include multi-agent collaboration
1410
+ - **Phase 4 Artifact Separation**: Stories, code reviews, sprint plans configurable outside docs
1411
+ - **Expanded Web Bundles**: All BMM, BMGD, CIS agents bundled with elicitation integration
1412
+
1413
+ ## [6.0.0-alpha.7]
1414
+
1415
+ **Release: November 7, 2025**
1416
+
1417
+ - **Workflow Vendoring**: Web bundler performs automatic cross-module dependency vendoring
1418
+ - **BMGD Module Extraction**: Game development split into standalone 4-phase structure
1419
+ - **Advanced Elicitation Fix**: Added missing CSV files to workflow bundles
1420
+ - **Claude Code Fix**: Resolved README slash command installation regression
1421
+
1422
+ ## [6.0.0-alpha.6]
1423
+
1424
+ **Release: November 4, 2025**
1425
+
1426
+ - **Critical Installer Fixes**: Fixed manifestPath error and option display issues
1427
+ - **Conditional Docs Installation**: Optional documentation to reduce production footprint
1428
+ - **Improved Installer UX**: Better formatting with descriptive labels and clearer feedback
1429
+ - **Issue Tracker Cleanup**: Closed 54 legacy v4 issues for focused v6 development
1430
+ - **Contributing Updates**: Removed references to non-existent branches
1431
+
1432
+ ## [6.0.0-alpha.5]
1433
+
1434
+ **Release: November 4, 2025**
1435
+
1436
+ - **3-Track Scale System**: Simplified from 5 levels to 3 intuitive preference-driven tracks
1437
+ - **Elicitation Modernization**: Replaced legacy XML tags with explicit invoke-task pattern
1438
+ - **PM/UX Evolution**: Added November 2025 industry research on AI Agent PMs
1439
+ - **Brownfield Reality Check**: Rewrote Phase 0 with 4 real-world scenarios
1440
+ - **Documentation Accuracy**: All agent capabilities now match YAML source of truth
1441
+
1442
+ ## [6.0.0-alpha.4]
1443
+
1444
+ **Release: November 2, 2025**
1445
+
1446
+ - **Documentation Hub**: Created 18 comprehensive guides (7000+ lines) with professional standards
1447
+ - **Paige Agent**: New technical documentation specialist across all BMM phases
1448
+ - **Quick Spec Flow**: Intelligent Level 0-1 planning with auto-stack detection
1449
+ - **Universal Shard-Doc**: Split large markdown documents with dual-strategy loading
1450
+ - **Intent-Driven Planning**: PRD and Product Brief transformed from template-filling to conversation
1451
+
1452
+ ## [6.0.0-alpha.3]
1453
+
1454
+ **Release: October 2025**
1455
+
1456
+ - **Codex Installer**: Custom prompts in `.codex/prompts/` directory structure
1457
+ - **Bug Fixes**: Various installer and workflow improvements
1458
+ - **Documentation**: Initial documentation structure established
1459
+
1460
+ ## [6.0.0-alpha.0]
1461
+
1462
+ **Release: September 28, 2025**
1463
+
1464
+ - **Lean Core**: Simple common tasks and agents (bmad-web-orchestrator, bmad-master)
1465
+ - **BMad Method (BMM)**: Complete scale-adaptive rewrite supporting projects from small enhancements to massive undertakings
1466
+ - **BoMB**: BMad Builder for creating and converting modules, workflows, and agents
1467
+ - **CIS**: Creative Intelligence Suite for ideation and creative workflows
1468
+ - **Game Development**: Full subclass of game-specific development patterns**Note**: Version 5.0.0 was skipped due to NPX registry issues that corrupted the version. Development continues with v6.0.0-alpha.0.
1469
+
1470
+ ## [v4.43.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.43.0)
1471
+
1472
+ **Release: August-September 2025 (v4.31.0 - v4.43.1)**
1473
+
1474
+ Focus on stability, ecosystem growth, and professional tooling.
1475
+
1476
+ ### Major Integrations
1477
+
1478
+ - **Codex CLI & Web**: Full Codex integration with web and CLI modes
1479
+ - **Auggie CLI**: Augment Code integration
1480
+ - **iFlow CLI**: iFlow support in installer
1481
+ - **Gemini CLI Custom Commands**: Enhanced Gemini CLI capabilities
1482
+
1483
+ ### Expansion Packs
1484
+
1485
+ - **Godot Game Development**: Complete game dev workflow
1486
+ - **Creative Writing**: Professional writing agent system
1487
+ - **Agent System Templates**: Template expansion pack (Part 2)
1488
+
1489
+ ### Advanced Features
1490
+
1491
+ - **AGENTS.md Generation**: Auto-generated agent documentation
1492
+ - **NPM Script Injection**: Automatic package.json updates
1493
+ - **File Exclusion**: `.bmad-flattenignore` support for flattener
1494
+ - **JSON-only Integration**: Compact integration mode
1495
+
1496
+ ### Quality & Stability
1497
+
1498
+ - **PR Validation Workflow**: Automated contribution checks
1499
+ - **Fork-Friendly CI/CD**: Opt-in mechanism for forks
1500
+ - **Code Formatting**: Prettier integration with pre-commit hooks
1501
+ - **Update Checker**: `npx bmad-method update-check` command
1502
+
1503
+ ### Flattener Improvements
1504
+
1505
+ - Detailed statistics with emoji-enhanced `.stats.md`
1506
+ - Improved project root detection
1507
+ - Modular component architecture
1508
+ - Binary directory exclusions (venv, node_modules, etc.)
1509
+
1510
+ ### Documentation & Community
1511
+
1512
+ - Brownfield document naming consistency fixes
1513
+ - Architecture template improvements
1514
+ - Trademark and licensing clarity
1515
+ - Contributing guidelines refinement
1516
+
1517
+ ### Developer Experience
1518
+
1519
+ - Version synchronization scripts
1520
+ - Manual release workflow enhancements
1521
+ - Automatic release notes generation
1522
+ - Changelog file path configuration
1523
+
1524
+ [View v4.43.1 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.43.1)
1525
+
1526
+ ## [v4.30.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.30.0)
1527
+
1528
+ **Release: July 2025 (v4.21.0 - v4.30.4)**
1529
+
1530
+ Introduction of advanced IDE integrations and command systems.
1531
+
1532
+ ### Claude Code Integration
1533
+
1534
+ - **Slash Commands**: Native Claude Code slash command support for agents
1535
+ - **Task Commands**: Direct task invocation via slash commands
1536
+ - **BMad Subdirectory**: Organized command structure
1537
+ - **Nested Organization**: Clean command hierarchy
1538
+
1539
+ ### Agent Enhancements
1540
+
1541
+ - BMad-master knowledge base loading
1542
+ - Improved brainstorming facilitation
1543
+ - Better agent task following with cost-saving model combinations
1544
+ - Direct commands in agent definitions
1545
+
1546
+ ### Installer Improvements
1547
+
1548
+ - Memory-efficient processing
1549
+ - Clear multi-select IDE prompts
1550
+ - GitHub Copilot support with improved UX
1551
+ - ASCII logo (because why not)
1552
+
1553
+ ### Platform Support
1554
+
1555
+ - Windows compatibility improvements (regex fixes, newline handling)
1556
+ - Roo modes configuration
1557
+ - Support for multiple CLI tools simultaneously
1558
+
1559
+ ### Expansion Ecosystem
1560
+
1561
+ - 2D Unity Game Development expansion pack
1562
+ - Improved expansion pack documentation
1563
+ - Better isolated expansion pack installations
1564
+
1565
+ [View v4.30.4 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.30.4)
1566
+
1567
+ ## [v4.20.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.20.0)
1568
+
1569
+ **Release: June 2025 (v4.11.0 - v4.20.0)**
1570
+
1571
+ Major focus on documentation quality and expanding QA agent capabilities.
1572
+
1573
+ ### Documentation Overhaul
1574
+
1575
+ - **Workflow Diagrams**: Visual explanations of planning and development cycles
1576
+ - **QA Role Expansion**: QA agent transformed into senior code reviewer
1577
+ - **User Guide Refresh**: Complete rewrite with clearer explanations
1578
+ - **Contributing Guidelines**: Clarified principles and contribution process
1579
+
1580
+ ### QA Agent Transformation
1581
+
1582
+ - Elevated from simple tester to senior developer/code reviewer
1583
+ - Code quality analysis and architectural feedback
1584
+ - Pre-implementation review capabilities
1585
+ - Integration with dev cycle for quality gates
1586
+
1587
+ ### IDE Ecosystem Growth
1588
+
1589
+ - **Cline IDE Support**: Added configuration for Cline
1590
+ - **Gemini CLI Integration**: Native Gemini CLI support
1591
+ - **Expansion Pack Installation**: Automated expansion agent setup across IDEs
1592
+
1593
+ ### New Capabilities
1594
+
1595
+ - Markdown-tree integration for document sharding
1596
+ - Quality gates to prevent task completion with failures
1597
+ - Enhanced brownfield workflow documentation
1598
+ - Team-based agent bundling improvements
1599
+
1600
+ ### Developer Tools
1601
+
1602
+ - Better expansion pack isolation
1603
+ - Automatic rule generation for all supported IDEs
1604
+ - Common files moved to shared locations
1605
+ - Hardcoded dependencies removed from installer
1606
+
1607
+ [View v4.20.0 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.20.0)
1608
+
1609
+ ## [v4.10.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.10.0)
1610
+
1611
+ **Release: June 2025 (v4.3.0 - v4.10.3)**
1612
+
1613
+ This release focused on making BMAD more configurable and adaptable to different project structures.
1614
+
1615
+ ### Configuration System
1616
+
1617
+ - **Optional Core Config**: Document sharding and core configuration made optional
1618
+ - **Flexible File Resolution**: Support for non-standard document structures
1619
+ - **Debug Logging**: Configurable debug mode for agent troubleshooting
1620
+ - **Fast Update Mode**: Quick updates without breaking customizations
1621
+
1622
+ ### Agent Improvements
1623
+
1624
+ - Clearer file resolution instructions for all agents
1625
+ - Fuzzy task resolution for better agent autonomy
1626
+ - Web orchestrator knowledge base expansion
1627
+ - Better handling of deviant PRD/Architecture structures
1628
+
1629
+ ### Installation Enhancements
1630
+
1631
+ - V4 early detection for improved update flow
1632
+ - Prevented double installation during updates
1633
+ - Better handling of YAML manifest files
1634
+ - Expansion pack dependencies properly included
1635
+
1636
+ ### Bug Fixes
1637
+
1638
+ - SM agent file resolution issues
1639
+ - Installer upgrade path corrections
1640
+ - Bundle build improvements
1641
+ - Template formatting fixes
1642
+
1643
+ [View v4.10.3 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.10.3)
1644
+
1645
+ ## [v4.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.0.0)
1646
+
1647
+ **Release: June 20, 2025 (v4.0.0 - v4.2.0)**
1648
+
1649
+ Version 4 represented a complete architectural overhaul, transforming BMAD from a collection of prompts into a professional, distributable framework.
1650
+
1651
+ ### Framework Transformation
1652
+
1653
+ - **NPM Package**: Professional distribution and simple installation via `npx bmad-method install`
1654
+ - **Modular Architecture**: Move to `.bmad-core` hidden folder structure
1655
+ - **Multi-IDE Support**: Unified support for Claude Code, Cursor, Roo, Windsurf, and many more
1656
+ - **Schema Standardization**: YAML-based agent and team definitions
1657
+ - **Automated Installation**: One-command setup with upgrade detection
1658
+
1659
+ ### Agent System Overhaul
1660
+
1661
+ - Agent team workflows (fullstack, no-ui, all agents)
1662
+ - Web bundle generation for platform-agnostic deployment
1663
+ - Task-based architecture (separate task definitions from agents)
1664
+ - IDE-specific agent activation (slash commands for Claude Code, rules for Cursor, etc.)
1665
+
1666
+ ### New Capabilities
1667
+
1668
+ - Brownfield project support (existing codebases)
1669
+ - Greenfield project workflows (new projects)
1670
+ - Expansion pack architecture for domain specialization
1671
+ - Document sharding for better context management
1672
+ - Automatic semantic versioning and releases
1673
+
1674
+ ### Developer Experience
1675
+
1676
+ - Automatic upgrade path from v3 to v4
1677
+ - Backup creation for user customizations
1678
+ - VSCode settings and markdown linting
1679
+ - Comprehensive documentation restructure
1680
+
1681
+ [View v4.2.0 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.2.0)
1682
+
1683
+ ## [v3.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v3.0.0)
1684
+
1685
+ **Release: May 20, 2025**
1686
+
1687
+ Version 3 introduced the revolutionary orchestrator concept, creating a unified agent experience.
1688
+
1689
+ ### Major Features
1690
+
1691
+ - **BMad Orchestrator**: Uber-agent that orchestrates all specialized agents
1692
+ - **Web-First Approach**: Streamlined web setup with pre-compiled agent bundles
1693
+ - **Simplified Onboarding**: Complete setup in minutes with clear quick-start guide
1694
+ - **Build System**: Scripts to compile web agents from modular components
1695
+
1696
+ ### Architecture Changes
1697
+
1698
+ - Consolidated agent system with centralized orchestration
1699
+ - Web build sample folder with ready-to-deploy configurations
1700
+ - Improved documentation structure with visual setup guides
1701
+ - Better separation between web and IDE workflows
1702
+
1703
+ ### New Capabilities
1704
+
1705
+ - Single agent interface (`/help` command system)
1706
+ - Brainstorming and ideation support
1707
+ - Integrated method explanation within the agent itself
1708
+ - Cross-platform consistency (Gemini Gems, Custom GPTs)
1709
+
1710
+ [View V3 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V3)
1711
+
1712
+ ## [v2.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v2.0.0)
1713
+
1714
+ **Release: April 17, 2025**
1715
+
1716
+ Version 2 addressed the major shortcomings of V1 by introducing separation of concerns and quality validation mechanisms.
1717
+
1718
+ ### Major Improvements
1719
+
1720
+ - **Template Separation**: Templates decoupled from agent definitions for greater flexibility
1721
+ - **Quality Checklists**: Advanced elicitation checklists to validate document quality
1722
+ - **Web Agent Discovery**: Recognition of Gemini Gems and Custom GPTs power for structured planning
1723
+ - **Granular Web Agents**: Simplified, clearly-defined agent roles optimized for web platforms
1724
+ - **Installer**: A project installer that copied the correct files to a folder at the destination
1725
+
1726
+ ### Key Features
1727
+
1728
+ - Separated template files from agent personas
1729
+ - Introduced forced validation rounds through checklists
1730
+ - Cost-effective structured planning workflow using web platforms
1731
+ - Self-contained agent personas with external template references
1732
+
1733
+ ### Known Issues
1734
+
1735
+ - Duplicate templates/checklists for web vs IDE versions
1736
+ - Manual export/import workflow between agents
1737
+ - Creating each web agent separately was tedious
1738
+
1739
+ [View V2 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V2)
1740
+
1741
+ ## [v1.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v1.0.0)
1742
+
1743
+ **Initial Release: April 6, 2025**
1744
+
1745
+ The original BMAD Method was a tech demo showcasing how different custom agile personas could be used to build out artifacts for planning and executing complex applications from scratch. This initial version established the foundation of the AI-driven agile development approach.
1746
+
1747
+ ### Key Features
1748
+
1749
+ - Introduction of specialized AI agent personas (PM, Architect, Developer, etc.)
1750
+ - Template-based document generation for planning artifacts
1751
+ - Emphasis on planning MVP scope with sufficient detail to guide developer agents
1752
+ - Hard-coded custom mode prompts integrated directly into agent configurations
1753
+ - The OG of Context Engineering in a structured way
1754
+
1755
+ ### Limitations
1756
+
1757
+ - Limited customization options
1758
+ - Web usage was complicated and not well-documented
1759
+ - Rigid scope and purpose with templates coupled to agents
1760
+ - Not optimized for IDE integration
1761
+
1762
+ [View V1 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V1)
1763
+
1764
+ ## Installation
1765
+
1766
+ ```bash
1767
+ npx bmad-method
1768
+ ```
1769
+
1770
+ For detailed release notes, see the [GitHub releases page](https://github.com/bmad-code-org/BMAD-METHOD/releases).