bmad-method 5.1.3 → 6.0.0-Beta.1

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 (739) hide show
  1. package/.coderabbit.yaml +40 -0
  2. package/.github/CODE_OF_CONDUCT.md +128 -0
  3. package/.github/FUNDING.yaml +2 -2
  4. package/.github/ISSUE_TEMPLATE/config.yaml +8 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +11 -11
  6. package/.github/ISSUE_TEMPLATE/issue.md +32 -0
  7. package/.github/scripts/discord-helpers.sh +34 -0
  8. package/.github/workflows/discord.yaml +82 -17
  9. package/.github/workflows/docs.yaml +63 -0
  10. package/.github/workflows/manual-release.yaml +40 -20
  11. package/.github/workflows/quality.yaml +115 -0
  12. package/.husky/pre-commit +17 -0
  13. package/.markdownlint-cli2.yaml +41 -0
  14. package/.nvmrc +1 -0
  15. package/.prettierignore +9 -0
  16. package/.vscode/settings.json +38 -10
  17. package/CHANGELOG.md +1167 -372
  18. package/CNAME +1 -0
  19. package/CONTRIBUTING.md +100 -142
  20. package/CONTRIBUTORS.md +32 -0
  21. package/LICENSE +10 -1
  22. package/README.md +67 -170
  23. package/SECURITY.md +85 -0
  24. package/TRADEMARK.md +55 -0
  25. package/Wordmark.png +0 -0
  26. package/banner-bmad-method.png +0 -0
  27. package/docs/404.md +9 -0
  28. package/docs/_STYLE_GUIDE.md +367 -0
  29. package/docs/downloads.md +74 -0
  30. package/docs/explanation/advanced-elicitation.md +24 -0
  31. package/docs/explanation/adversarial-review.md +57 -0
  32. package/docs/explanation/brainstorming.md +31 -0
  33. package/docs/explanation/brownfield-faq.md +55 -0
  34. package/docs/explanation/party-mode.md +57 -0
  35. package/docs/explanation/preventing-agent-conflicts.md +110 -0
  36. package/docs/explanation/quick-flow.md +27 -0
  37. package/docs/explanation/why-solutioning-matters.md +75 -0
  38. package/docs/how-to/brownfield/index.md +84 -0
  39. package/docs/how-to/brownfield/quick-fix-in-brownfield.md +76 -0
  40. package/docs/how-to/customize-bmad.md +158 -0
  41. package/docs/how-to/get-answers-about-bmad.md +102 -0
  42. package/docs/how-to/install-bmad.md +82 -0
  43. package/docs/how-to/shard-large-documents.md +101 -0
  44. package/docs/how-to/upgrade-to-v6.md +131 -0
  45. package/docs/index.md +56 -0
  46. package/docs/reference/workflow-map.md +83 -0
  47. package/docs/tea/explanation/engagement-models.md +710 -0
  48. package/docs/tea/explanation/fixture-architecture.md +457 -0
  49. package/docs/tea/explanation/knowledge-base-system.md +554 -0
  50. package/docs/tea/explanation/network-first-patterns.md +853 -0
  51. package/docs/tea/explanation/risk-based-testing.md +586 -0
  52. package/docs/tea/explanation/tea-overview.md +410 -0
  53. package/docs/tea/explanation/test-quality-standards.md +907 -0
  54. package/docs/tea/explanation/testing-as-engineering.md +112 -0
  55. package/docs/tea/glossary/index.md +159 -0
  56. package/docs/tea/how-to/brownfield/use-tea-for-enterprise.md +525 -0
  57. package/docs/tea/how-to/brownfield/use-tea-with-existing-tests.md +577 -0
  58. package/docs/tea/how-to/customization/enable-tea-mcp-enhancements.md +424 -0
  59. package/docs/tea/how-to/customization/integrate-playwright-utils.md +813 -0
  60. package/docs/tea/how-to/workflows/run-atdd.md +436 -0
  61. package/docs/tea/how-to/workflows/run-automate.md +653 -0
  62. package/docs/tea/how-to/workflows/run-nfr-assess.md +679 -0
  63. package/docs/tea/how-to/workflows/run-test-design.md +135 -0
  64. package/docs/tea/how-to/workflows/run-test-review.md +605 -0
  65. package/docs/tea/how-to/workflows/run-trace.md +883 -0
  66. package/docs/tea/how-to/workflows/setup-ci.md +712 -0
  67. package/docs/tea/how-to/workflows/setup-test-framework.md +98 -0
  68. package/docs/tea/reference/commands.md +276 -0
  69. package/docs/tea/reference/configuration.md +678 -0
  70. package/docs/tea/reference/knowledge-base.md +340 -0
  71. package/docs/tea/tutorials/tea-lite-quickstart.md +444 -0
  72. package/docs/tutorials/getting-started.md +205 -0
  73. package/eslint.config.mjs +42 -9
  74. package/package.json +50 -38
  75. package/prettier.config.mjs +1 -1
  76. package/src/bmm/_module-installer/installer.js +48 -0
  77. package/src/bmm/agents/analyst.agent.yaml +36 -0
  78. package/src/bmm/agents/architect.agent.yaml +28 -0
  79. package/src/bmm/agents/dev.agent.yaml +38 -0
  80. package/src/bmm/agents/pm.agent.yaml +46 -0
  81. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
  82. package/src/bmm/agents/sm.agent.yaml +36 -0
  83. package/src/bmm/agents/tea.agent.yaml +63 -0
  84. package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
  85. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +45 -0
  86. package/src/bmm/agents/ux-designer.agent.yaml +26 -0
  87. package/src/bmm/data/project-context-template.md +26 -0
  88. package/src/bmm/module-help.csv +32 -0
  89. package/src/bmm/module.yaml +44 -0
  90. package/src/bmm/teams/default-party.csv +21 -0
  91. package/src/bmm/teams/team-fullstack.yaml +12 -0
  92. package/src/bmm/testarch/knowledge/adr-quality-readiness-checklist.md +350 -0
  93. package/src/bmm/testarch/knowledge/api-request.md +442 -0
  94. package/src/bmm/testarch/knowledge/api-testing-patterns.md +843 -0
  95. package/src/bmm/testarch/knowledge/auth-session.md +552 -0
  96. package/src/bmm/testarch/knowledge/burn-in.md +273 -0
  97. package/src/bmm/testarch/knowledge/ci-burn-in.md +675 -0
  98. package/src/bmm/testarch/knowledge/component-tdd.md +486 -0
  99. package/src/bmm/testarch/knowledge/contract-testing.md +957 -0
  100. package/src/bmm/testarch/knowledge/data-factories.md +500 -0
  101. package/src/bmm/testarch/knowledge/email-auth.md +721 -0
  102. package/src/bmm/testarch/knowledge/error-handling.md +725 -0
  103. package/src/bmm/testarch/knowledge/feature-flags.md +750 -0
  104. package/src/bmm/testarch/knowledge/file-utils.md +463 -0
  105. package/src/bmm/testarch/knowledge/fixture-architecture.md +401 -0
  106. package/src/bmm/testarch/knowledge/fixtures-composition.md +382 -0
  107. package/src/bmm/testarch/knowledge/intercept-network-call.md +430 -0
  108. package/src/bmm/testarch/knowledge/log.md +429 -0
  109. package/src/bmm/testarch/knowledge/network-error-monitor.md +405 -0
  110. package/src/bmm/testarch/knowledge/network-first.md +486 -0
  111. package/src/bmm/testarch/knowledge/network-recorder.md +527 -0
  112. package/src/bmm/testarch/knowledge/nfr-criteria.md +670 -0
  113. package/src/bmm/testarch/knowledge/overview.md +286 -0
  114. package/src/bmm/testarch/knowledge/playwright-config.md +730 -0
  115. package/src/bmm/testarch/knowledge/probability-impact.md +601 -0
  116. package/src/bmm/testarch/knowledge/recurse.md +421 -0
  117. package/src/bmm/testarch/knowledge/risk-governance.md +615 -0
  118. package/src/bmm/testarch/knowledge/selective-testing.md +732 -0
  119. package/src/bmm/testarch/knowledge/selector-resilience.md +527 -0
  120. package/src/bmm/testarch/knowledge/test-healing-patterns.md +644 -0
  121. package/src/bmm/testarch/knowledge/test-levels-framework.md +473 -0
  122. package/src/bmm/testarch/knowledge/test-priorities-matrix.md +373 -0
  123. package/src/bmm/testarch/knowledge/test-quality.md +664 -0
  124. package/src/bmm/testarch/knowledge/timing-debugging.md +372 -0
  125. package/src/bmm/testarch/knowledge/visual-debugging.md +524 -0
  126. package/src/bmm/testarch/tea-index.csv +35 -0
  127. package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
  128. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
  129. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
  130. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
  131. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
  132. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
  133. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
  134. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +162 -0
  135. package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +58 -0
  136. package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
  137. package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
  138. package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
  139. package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
  140. package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
  141. package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
  142. package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
  143. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
  144. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +200 -0
  145. package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
  146. package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
  147. package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
  148. package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
  149. package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
  150. package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
  151. package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
  152. package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
  153. package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
  154. package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +239 -0
  155. package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
  156. package/src/bmm/workflows/1-analysis/research/workflow.md +173 -0
  157. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +13 -0
  158. package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -0
  159. package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +11 -0
  160. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +191 -0
  161. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01b-continue.md +153 -0
  162. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +224 -0
  163. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +226 -0
  164. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +213 -0
  165. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +207 -0
  166. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +226 -0
  167. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +237 -0
  168. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +228 -0
  169. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +231 -0
  170. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +242 -0
  171. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +217 -0
  172. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +124 -0
  173. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +247 -0
  174. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
  175. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +249 -0
  176. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +253 -0
  177. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +168 -0
  178. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +218 -0
  179. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +191 -0
  180. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +209 -0
  181. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +174 -0
  182. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
  183. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +228 -0
  184. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +217 -0
  185. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
  186. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
  187. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +263 -0
  188. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +209 -0
  189. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
  190. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +242 -0
  191. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +231 -0
  192. package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -0
  193. package/src/bmm/workflows/2-plan-workflows/create-prd/validation-report-prd-workflow.md +433 -0
  194. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow.md +150 -0
  195. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
  196. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
  197. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
  198. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
  199. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
  200. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
  201. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
  202. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
  203. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
  204. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
  205. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
  206. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
  207. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
  208. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
  209. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +171 -0
  210. package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
  211. package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +43 -0
  212. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +190 -0
  213. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +178 -0
  214. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +179 -0
  215. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +139 -0
  216. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +252 -0
  217. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +135 -0
  218. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
  219. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +55 -0
  220. package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
  221. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +11 -0
  222. package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
  223. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
  224. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +164 -0
  225. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
  226. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +331 -0
  227. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
  228. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
  229. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
  230. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
  231. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +76 -0
  232. package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +50 -0
  233. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
  234. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
  235. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
  236. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +149 -0
  237. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  238. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +59 -0
  239. package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
  240. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
  241. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +51 -0
  242. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
  243. package/src/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
  244. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +60 -0
  245. package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
  246. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +345 -0
  247. package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
  248. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +61 -0
  249. package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
  250. package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
  251. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +27 -0
  252. package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1443 -0
  253. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +58 -0
  254. package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
  255. package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +225 -0
  256. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
  257. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +54 -0
  258. package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +229 -0
  259. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +36 -0
  260. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +176 -0
  261. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +120 -0
  262. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +113 -0
  263. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +113 -0
  264. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +106 -0
  265. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +149 -0
  266. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +50 -0
  267. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +192 -0
  268. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +145 -0
  269. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +128 -0
  270. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +201 -0
  271. package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
  272. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
  273. package/src/bmm/workflows/document-project/checklist.md +245 -0
  274. package/src/bmm/workflows/document-project/documentation-requirements.csv +12 -0
  275. package/src/bmm/workflows/document-project/instructions.md +221 -0
  276. package/src/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
  277. package/src/bmm/workflows/document-project/templates/index-template.md +169 -0
  278. package/src/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
  279. package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
  280. package/src/bmm/workflows/document-project/templates/source-tree-template.md +135 -0
  281. package/src/bmm/workflows/document-project/workflow.yaml +30 -0
  282. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
  283. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
  284. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
  285. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
  286. package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +90 -0
  287. package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +127 -0
  288. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +39 -0
  289. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +130 -0
  290. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +27 -0
  291. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +43 -0
  292. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +141 -0
  293. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +27 -0
  294. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +49 -0
  295. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +241 -0
  296. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +27 -0
  297. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +38 -0
  298. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +133 -0
  299. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +27 -0
  300. package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +363 -0
  301. package/src/bmm/workflows/testarch/atdd/checklist.md +374 -0
  302. package/src/bmm/workflows/testarch/atdd/instructions.md +806 -0
  303. package/src/bmm/workflows/testarch/atdd/workflow.yaml +47 -0
  304. package/src/bmm/workflows/testarch/automate/checklist.md +582 -0
  305. package/src/bmm/workflows/testarch/automate/instructions.md +1324 -0
  306. package/src/bmm/workflows/testarch/automate/workflow.yaml +54 -0
  307. package/src/bmm/workflows/testarch/ci/checklist.md +247 -0
  308. package/src/bmm/workflows/testarch/ci/github-actions-template.yaml +198 -0
  309. package/src/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +149 -0
  310. package/src/bmm/workflows/testarch/ci/instructions.md +536 -0
  311. package/src/bmm/workflows/testarch/ci/workflow.yaml +47 -0
  312. package/src/bmm/workflows/testarch/framework/checklist.md +320 -0
  313. package/src/bmm/workflows/testarch/framework/instructions.md +481 -0
  314. package/src/bmm/workflows/testarch/framework/workflow.yaml +49 -0
  315. package/src/bmm/workflows/testarch/nfr-assess/checklist.md +407 -0
  316. package/src/bmm/workflows/testarch/nfr-assess/instructions.md +726 -0
  317. package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +461 -0
  318. package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +49 -0
  319. package/src/bmm/workflows/testarch/test-design/checklist.md +407 -0
  320. package/src/bmm/workflows/testarch/test-design/instructions.md +1158 -0
  321. package/src/bmm/workflows/testarch/test-design/test-design-architecture-template.md +213 -0
  322. package/src/bmm/workflows/testarch/test-design/test-design-qa-template.md +286 -0
  323. package/src/bmm/workflows/testarch/test-design/test-design-template.md +294 -0
  324. package/src/bmm/workflows/testarch/test-design/workflow.yaml +71 -0
  325. package/src/bmm/workflows/testarch/test-review/checklist.md +472 -0
  326. package/src/bmm/workflows/testarch/test-review/instructions.md +628 -0
  327. package/src/bmm/workflows/testarch/test-review/test-review-template.md +390 -0
  328. package/src/bmm/workflows/testarch/test-review/workflow.yaml +48 -0
  329. package/src/bmm/workflows/testarch/trace/checklist.md +642 -0
  330. package/src/bmm/workflows/testarch/trace/instructions.md +1030 -0
  331. package/src/bmm/workflows/testarch/trace/trace-template.md +675 -0
  332. package/src/bmm/workflows/testarch/trace/workflow.yaml +57 -0
  333. package/src/core/_module-installer/installer.js +60 -0
  334. package/src/core/agents/bmad-master.agent.yaml +29 -0
  335. package/src/core/module-help.csv +9 -0
  336. package/src/core/module.yaml +25 -0
  337. package/src/core/resources/excalidraw/README.md +160 -0
  338. package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
  339. package/src/core/resources/excalidraw/library-loader.md +50 -0
  340. package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
  341. package/src/core/tasks/editorial-review-prose.xml +100 -0
  342. package/src/core/tasks/editorial-review-structure.xml +209 -0
  343. package/src/core/tasks/help.md +62 -0
  344. package/src/core/tasks/index-docs.xml +65 -0
  345. package/src/core/tasks/review-adversarial-general.xml +48 -0
  346. package/src/core/tasks/shard-doc.xml +109 -0
  347. package/src/core/tasks/workflow.xml +235 -0
  348. package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
  349. package/src/core/workflows/advanced-elicitation/workflow.xml +117 -0
  350. package/src/core/workflows/brainstorming/brain-methods.csv +62 -0
  351. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
  352. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
  353. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
  354. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
  355. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
  356. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
  357. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
  358. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
  359. package/src/core/workflows/brainstorming/template.md +15 -0
  360. package/src/core/workflows/brainstorming/workflow.md +58 -0
  361. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  362. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
  363. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +157 -0
  364. package/src/core/workflows/party-mode/workflow.md +194 -0
  365. package/src/utility/agent-components/activation-rules.txt +6 -0
  366. package/src/utility/agent-components/activation-steps.txt +14 -0
  367. package/src/utility/agent-components/agent-command-header.md +1 -0
  368. package/src/utility/agent-components/agent.customize.template.yaml +41 -0
  369. package/src/utility/agent-components/handler-action.txt +4 -0
  370. package/src/utility/agent-components/handler-data.txt +5 -0
  371. package/src/utility/agent-components/handler-exec.txt +6 -0
  372. package/src/utility/agent-components/handler-multi.txt +14 -0
  373. package/src/utility/agent-components/handler-tmpl.txt +5 -0
  374. package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
  375. package/src/utility/agent-components/handler-workflow.txt +10 -0
  376. package/src/utility/agent-components/menu-handlers.txt +6 -0
  377. package/test/README.md +295 -0
  378. package/test/adversarial-review-tests/README.md +56 -0
  379. package/test/adversarial-review-tests/sample-content.md +46 -0
  380. package/test/adversarial-review-tests/test-cases.yaml +103 -0
  381. package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
  382. package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
  383. package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
  384. package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
  385. package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
  386. package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
  387. package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
  388. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
  389. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
  390. package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
  391. package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
  392. package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
  393. package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
  394. package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
  395. package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
  396. package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
  397. package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
  398. package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
  399. package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
  400. package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
  401. package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
  402. package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
  403. package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
  404. package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
  405. package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
  406. package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
  407. package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
  408. package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
  409. package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
  410. package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
  411. package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
  412. package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
  413. package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
  414. package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
  415. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
  416. package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
  417. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
  418. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
  419. package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
  420. package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
  421. package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
  422. package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
  423. package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
  424. package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
  425. package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
  426. package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
  427. package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
  428. package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
  429. package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
  430. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
  431. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
  432. package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
  433. package/test/test-agent-schema.js +387 -0
  434. package/test/test-cli-integration.sh +159 -0
  435. package/test/test-installation-components.js +214 -0
  436. package/test/unit-test-schema.js +133 -0
  437. package/tools/bmad-npx-wrapper.js +11 -12
  438. package/tools/build-docs.js +577 -0
  439. package/tools/cli/README.md +7 -0
  440. package/tools/cli/bmad-cli.js +58 -0
  441. package/tools/cli/commands/install.js +87 -0
  442. package/tools/cli/commands/status.js +65 -0
  443. package/tools/cli/external-official-modules.yaml +44 -0
  444. package/tools/cli/installers/install-messages.yaml +59 -0
  445. package/tools/cli/installers/lib/core/config-collector.js +1079 -0
  446. package/tools/cli/installers/lib/core/custom-module-cache.js +259 -0
  447. package/tools/cli/installers/lib/core/dependency-resolver.js +739 -0
  448. package/tools/cli/installers/lib/core/detector.js +223 -0
  449. package/tools/cli/installers/lib/core/ide-config-manager.js +156 -0
  450. package/tools/cli/installers/lib/core/installer.js +2826 -0
  451. package/tools/cli/installers/lib/core/manifest-generator.js +1054 -0
  452. package/tools/cli/installers/lib/core/manifest.js +1036 -0
  453. package/tools/cli/installers/lib/custom/handler.js +363 -0
  454. package/tools/cli/installers/lib/ide/STANDARDIZATION_PLAN.md +208 -0
  455. package/tools/cli/installers/lib/ide/_base-ide.js +655 -0
  456. package/tools/cli/installers/lib/ide/antigravity.js +474 -0
  457. package/tools/cli/installers/lib/ide/auggie.js +244 -0
  458. package/tools/cli/installers/lib/ide/claude-code.js +506 -0
  459. package/tools/cli/installers/lib/ide/cline.js +272 -0
  460. package/tools/cli/installers/lib/ide/codex.js +412 -0
  461. package/tools/cli/installers/lib/ide/crush.js +149 -0
  462. package/tools/cli/installers/lib/ide/cursor.js +160 -0
  463. package/tools/cli/installers/lib/ide/gemini.js +301 -0
  464. package/tools/cli/installers/lib/ide/github-copilot.js +383 -0
  465. package/tools/cli/installers/lib/ide/iflow.js +191 -0
  466. package/tools/cli/installers/lib/ide/kilo.js +250 -0
  467. package/tools/cli/installers/lib/ide/kiro-cli.js +326 -0
  468. package/tools/cli/installers/lib/ide/manager.js +244 -0
  469. package/tools/cli/installers/lib/ide/opencode.js +257 -0
  470. package/tools/cli/installers/lib/ide/qwen.js +372 -0
  471. package/tools/cli/installers/lib/ide/roo.js +273 -0
  472. package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
  473. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +165 -0
  474. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +158 -0
  475. package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
  476. package/tools/cli/installers/lib/ide/shared/path-utils.js +165 -0
  477. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +268 -0
  478. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +293 -0
  479. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +14 -0
  480. package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +14 -0
  481. package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +12 -0
  482. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +13 -0
  483. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
  484. package/tools/cli/installers/lib/ide/trae.js +313 -0
  485. package/tools/cli/installers/lib/ide/windsurf.js +258 -0
  486. package/tools/cli/installers/lib/message-loader.js +85 -0
  487. package/tools/cli/installers/lib/modules/external-manager.js +135 -0
  488. package/tools/cli/installers/lib/modules/manager.js +1375 -0
  489. package/tools/cli/lib/activation-builder.js +163 -0
  490. package/tools/cli/lib/agent/compiler.js +522 -0
  491. package/tools/cli/lib/agent/installer.js +716 -0
  492. package/tools/cli/lib/agent/template-engine.js +152 -0
  493. package/tools/cli/lib/agent-analyzer.js +109 -0
  494. package/tools/cli/lib/agent-party-generator.js +194 -0
  495. package/tools/cli/lib/cli-utils.js +227 -0
  496. package/tools/cli/lib/config.js +213 -0
  497. package/tools/cli/lib/file-ops.js +204 -0
  498. package/tools/cli/lib/platform-codes.js +116 -0
  499. package/tools/cli/lib/project-root.js +77 -0
  500. package/tools/cli/lib/prompts.js +433 -0
  501. package/tools/cli/lib/ui.js +1716 -0
  502. package/tools/cli/lib/xml-handler.js +177 -0
  503. package/tools/cli/lib/xml-to-markdown.js +82 -0
  504. package/tools/{yaml-format.js → cli/lib/yaml-format.js} +9 -17
  505. package/tools/cli/lib/yaml-xml-builder.js +587 -0
  506. package/tools/docs/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
  507. package/tools/docs/fix-refs.md +91 -0
  508. package/tools/docs/index.md +2 -0
  509. package/tools/fix-doc-links.js +288 -0
  510. package/tools/flattener/ignoreRules.js +2 -6
  511. package/tools/flattener/main.js +31 -121
  512. package/tools/flattener/projectRoot.js +3 -8
  513. package/tools/flattener/stats.helpers.js +8 -35
  514. package/tools/flattener/stats.js +1 -6
  515. package/tools/flattener/test-matrix.js +1 -5
  516. package/tools/flattener/xml.js +1 -7
  517. package/tools/format-workflow-md.js +263 -0
  518. package/tools/lib/xml-utils.js +13 -0
  519. package/tools/maintainer/review-pr-README.md +55 -0
  520. package/tools/maintainer/review-pr.md +242 -0
  521. package/tools/migrate-custom-module-paths.js +124 -0
  522. package/tools/platform-codes.yaml +157 -0
  523. package/tools/schema/agent.js +491 -0
  524. package/tools/validate-agent-schema.js +110 -0
  525. package/tools/validate-doc-links.js +371 -0
  526. package/tools/validate-svg-changes.sh +356 -0
  527. package/website/README.md +76 -0
  528. package/website/_basement/components/WorkflowGuide.astro +444 -0
  529. package/website/_basement/pages/workflow-guide.astro +17 -0
  530. package/website/astro.config.mjs +169 -0
  531. package/website/public/favicon.ico +0 -0
  532. package/website/public/img/bmad-dark.png +0 -0
  533. package/website/public/img/bmad-light.png +0 -0
  534. package/website/public/img/logo.svg +4 -0
  535. package/website/public/img/workflow-map.png +0 -0
  536. package/website/public/robots.txt +37 -0
  537. package/website/public/workflow-map-diagram.html +361 -0
  538. package/website/src/components/Banner.astro +59 -0
  539. package/website/src/components/Header.astro +121 -0
  540. package/website/src/components/MobileMenuFooter.astro +53 -0
  541. package/website/src/content/config.ts +6 -0
  542. package/website/src/lib/site-url.js +25 -0
  543. package/website/src/pages/404.astro +11 -0
  544. package/website/src/rehype-base-paths.js +89 -0
  545. package/website/src/rehype-markdown-links.js +117 -0
  546. package/website/src/styles/custom.css +500 -0
  547. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
  548. package/.github/workflows/format-check.yaml +0 -42
  549. package/bmad-core/agent-teams/team-all.yaml +0 -14
  550. package/bmad-core/agent-teams/team-fullstack.yaml +0 -18
  551. package/bmad-core/agent-teams/team-ide-minimal.yaml +0 -10
  552. package/bmad-core/agent-teams/team-no-ui.yaml +0 -13
  553. package/bmad-core/agents/analyst.md +0 -81
  554. package/bmad-core/agents/architect.md +0 -83
  555. package/bmad-core/agents/bmad-master.md +0 -107
  556. package/bmad-core/agents/bmad-orchestrator.md +0 -149
  557. package/bmad-core/agents/dev.md +0 -75
  558. package/bmad-core/agents/pm.md +0 -81
  559. package/bmad-core/agents/po.md +0 -76
  560. package/bmad-core/agents/qa.md +0 -88
  561. package/bmad-core/agents/sm.md +0 -62
  562. package/bmad-core/agents/ux-expert.md +0 -66
  563. package/bmad-core/checklists/architect-checklist.md +0 -438
  564. package/bmad-core/checklists/change-checklist.md +0 -182
  565. package/bmad-core/checklists/pm-checklist.md +0 -370
  566. package/bmad-core/checklists/po-master-checklist.md +0 -432
  567. package/bmad-core/checklists/story-dod-checklist.md +0 -94
  568. package/bmad-core/checklists/story-draft-checklist.md +0 -153
  569. package/bmad-core/core-config.yaml +0 -20
  570. package/bmad-core/data/bmad-kb.md +0 -806
  571. package/bmad-core/data/brainstorming-techniques.md +0 -36
  572. package/bmad-core/data/elicitation-methods.md +0 -154
  573. package/bmad-core/data/technical-preferences.md +0 -3
  574. package/bmad-core/data/test-levels-framework.md +0 -146
  575. package/bmad-core/data/test-priorities-matrix.md +0 -172
  576. package/bmad-core/tasks/advanced-elicitation.md +0 -117
  577. package/bmad-core/tasks/brownfield-create-epic.md +0 -160
  578. package/bmad-core/tasks/brownfield-create-story.md +0 -147
  579. package/bmad-core/tasks/correct-course.md +0 -70
  580. package/bmad-core/tasks/create-brownfield-story.md +0 -312
  581. package/bmad-core/tasks/create-deep-research-prompt.md +0 -278
  582. package/bmad-core/tasks/create-next-story.md +0 -112
  583. package/bmad-core/tasks/document-project.md +0 -343
  584. package/bmad-core/tasks/facilitate-brainstorming-session.md +0 -136
  585. package/bmad-core/tasks/generate-ai-frontend-prompt.md +0 -51
  586. package/bmad-core/tasks/index-docs.md +0 -173
  587. package/bmad-core/tasks/kb-mode-interaction.md +0 -75
  588. package/bmad-core/tasks/nfr-assess.md +0 -343
  589. package/bmad-core/tasks/qa-gate.md +0 -159
  590. package/bmad-core/tasks/review-story.md +0 -314
  591. package/bmad-core/tasks/risk-profile.md +0 -353
  592. package/bmad-core/tasks/shard-doc.md +0 -185
  593. package/bmad-core/tasks/test-design.md +0 -174
  594. package/bmad-core/tasks/trace-requirements.md +0 -264
  595. package/bmad-core/tasks/validate-next-story.md +0 -134
  596. package/bmad-core/templates/architecture-tmpl.yaml +0 -650
  597. package/bmad-core/templates/brainstorming-output-tmpl.yaml +0 -156
  598. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +0 -476
  599. package/bmad-core/templates/brownfield-prd-tmpl.yaml +0 -280
  600. package/bmad-core/templates/competitor-analysis-tmpl.yaml +0 -306
  601. package/bmad-core/templates/front-end-architecture-tmpl.yaml +0 -218
  602. package/bmad-core/templates/front-end-spec-tmpl.yaml +0 -349
  603. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +0 -823
  604. package/bmad-core/templates/market-research-tmpl.yaml +0 -252
  605. package/bmad-core/templates/prd-tmpl.yaml +0 -202
  606. package/bmad-core/templates/project-brief-tmpl.yaml +0 -221
  607. package/bmad-core/templates/qa-gate-tmpl.yaml +0 -102
  608. package/bmad-core/templates/story-tmpl.yaml +0 -137
  609. package/bmad-core/workflows/brownfield-fullstack.yaml +0 -297
  610. package/bmad-core/workflows/brownfield-service.yaml +0 -187
  611. package/bmad-core/workflows/brownfield-ui.yaml +0 -197
  612. package/bmad-core/workflows/greenfield-fullstack.yaml +0 -240
  613. package/bmad-core/workflows/greenfield-service.yaml +0 -206
  614. package/bmad-core/workflows/greenfield-ui.yaml +0 -235
  615. package/common/tasks/create-doc.md +0 -101
  616. package/common/tasks/execute-checklist.md +0 -86
  617. package/common/utils/bmad-doc-template.md +0 -325
  618. package/common/utils/workflow-management.md +0 -69
  619. package/dist/agents/analyst.txt +0 -2889
  620. package/dist/agents/architect.txt +0 -3552
  621. package/dist/agents/bmad-master.txt +0 -8769
  622. package/dist/agents/bmad-orchestrator.txt +0 -1513
  623. package/dist/agents/dev.txt +0 -414
  624. package/dist/agents/pm.txt +0 -2204
  625. package/dist/agents/po.txt +0 -1346
  626. package/dist/agents/qa.txt +0 -1987
  627. package/dist/agents/sm.txt +0 -658
  628. package/dist/agents/ux-expert.txt +0 -694
  629. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +0 -2371
  630. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +0 -1620
  631. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +0 -815
  632. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +0 -10952
  633. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +0 -4012
  634. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +0 -3698
  635. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +0 -450
  636. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +0 -973
  637. package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +0 -15376
  638. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +0 -2075
  639. package/dist/teams/team-all.txt +0 -12682
  640. package/dist/teams/team-fullstack.txt +0 -10421
  641. package/dist/teams/team-ide-minimal.txt +0 -5103
  642. package/dist/teams/team-no-ui.txt +0 -8980
  643. package/docs/GUIDING-PRINCIPLES.md +0 -91
  644. package/docs/core-architecture.md +0 -219
  645. package/docs/enhanced-ide-development-workflow.md +0 -248
  646. package/docs/expansion-packs.md +0 -280
  647. package/docs/how-to-contribute-with-pull-requests.md +0 -158
  648. package/docs/user-guide.md +0 -504
  649. package/docs/versioning-and-releases.md +0 -147
  650. package/docs/versions.md +0 -48
  651. package/docs/working-in-the-brownfield.md +0 -597
  652. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/Complete AI Agent System - Flowchart.svg +0 -102
  653. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.1 Google Cloud Project Setup/1.1.1 - Initial Project Configuration - bash copy.txt +0 -13
  654. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.1 Google Cloud Project Setup/1.1.1 - Initial Project Configuration - bash.txt +0 -13
  655. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.2 Agent Development Kit Installation/1.2.2 - Basic Project Structure - txt.txt +0 -25
  656. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.3 Core Configuration Files/1.3.1 - settings.py +0 -34
  657. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.3 Core Configuration Files/1.3.2 - main.py - Base Application.py +0 -70
  658. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.4 Deployment Configuration/1.4.2 - cloudbuild.yaml +0 -26
  659. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/README.md +0 -109
  660. package/expansion-packs/README.md +0 -3
  661. package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/phaser-2d-nodejs-game-team.yaml +0 -13
  662. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +0 -71
  663. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +0 -78
  664. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +0 -64
  665. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +0 -201
  666. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +0 -160
  667. package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +0 -8
  668. package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +0 -250
  669. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +0 -647
  670. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +0 -110
  671. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +0 -216
  672. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +0 -290
  673. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +0 -613
  674. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +0 -356
  675. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +0 -343
  676. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +0 -253
  677. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +0 -484
  678. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +0 -183
  679. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +0 -175
  680. package/expansion-packs/bmad-2d-unity-game-dev/agent-teams/unity-2d-game-team.yaml +0 -14
  681. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.md +0 -80
  682. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.md +0 -77
  683. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +0 -78
  684. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.md +0 -65
  685. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-architect-checklist.md +0 -391
  686. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-change-checklist.md +0 -203
  687. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-design-checklist.md +0 -201
  688. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-story-dod-checklist.md +0 -124
  689. package/expansion-packs/bmad-2d-unity-game-dev/config.yaml +0 -6
  690. package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +0 -769
  691. package/expansion-packs/bmad-2d-unity-game-dev/data/development-guidelines.md +0 -586
  692. package/expansion-packs/bmad-2d-unity-game-dev/tasks/advanced-elicitation.md +0 -110
  693. package/expansion-packs/bmad-2d-unity-game-dev/tasks/correct-course-game.md +0 -141
  694. package/expansion-packs/bmad-2d-unity-game-dev/tasks/create-game-story.md +0 -184
  695. package/expansion-packs/bmad-2d-unity-game-dev/tasks/game-design-brainstorming.md +0 -290
  696. package/expansion-packs/bmad-2d-unity-game-dev/tasks/validate-game-story.md +0 -200
  697. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-architecture-tmpl.yaml +0 -1030
  698. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +0 -356
  699. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +0 -705
  700. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +0 -256
  701. package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +0 -484
  702. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +0 -183
  703. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +0 -175
  704. package/expansion-packs/bmad-infrastructure-devops/README.md +0 -147
  705. package/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.md +0 -71
  706. package/expansion-packs/bmad-infrastructure-devops/checklists/infrastructure-checklist.md +0 -484
  707. package/expansion-packs/bmad-infrastructure-devops/config.yaml +0 -9
  708. package/expansion-packs/bmad-infrastructure-devops/data/bmad-kb.md +0 -305
  709. package/expansion-packs/bmad-infrastructure-devops/tasks/review-infrastructure.md +0 -159
  710. package/expansion-packs/bmad-infrastructure-devops/tasks/validate-infrastructure.md +0 -153
  711. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +0 -424
  712. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +0 -629
  713. package/release_notes.md +0 -33
  714. package/tools/builders/web-builder.js +0 -675
  715. package/tools/bump-all-versions.js +0 -115
  716. package/tools/bump-expansion-version.js +0 -90
  717. package/tools/cli.js +0 -152
  718. package/tools/installer/README.md +0 -8
  719. package/tools/installer/bin/bmad.js +0 -585
  720. package/tools/installer/config/ide-agent-config.yaml +0 -58
  721. package/tools/installer/config/install.config.yaml +0 -123
  722. package/tools/installer/lib/config-loader.js +0 -257
  723. package/tools/installer/lib/file-manager.js +0 -389
  724. package/tools/installer/lib/ide-base-setup.js +0 -228
  725. package/tools/installer/lib/ide-setup.js +0 -1441
  726. package/tools/installer/lib/installer.js +0 -1995
  727. package/tools/installer/lib/memory-profiler.js +0 -225
  728. package/tools/installer/lib/module-manager.js +0 -114
  729. package/tools/installer/lib/resource-locator.js +0 -308
  730. package/tools/installer/package.json +0 -44
  731. package/tools/lib/dependency-resolver.js +0 -175
  732. package/tools/lib/yaml-utils.js +0 -29
  733. package/tools/md-assets/web-agent-startup-instructions.md +0 -39
  734. package/tools/preview-release-notes.js +0 -66
  735. package/tools/shared/bannerArt.js +0 -105
  736. package/tools/sync-installer-version.js +0 -32
  737. package/tools/update-expansion-version.js +0 -53
  738. package/tools/upgraders/v3-to-v4-upgrader.js +0 -672
  739. package/tools/version-bump.js +0 -94
package/CHANGELOG.md CHANGED
@@ -1,686 +1,1481 @@
1
- ## [4.36.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.36.1...v4.36.2) (2025-08-10)
1
+ # Changelog
2
2
 
3
- ### Bug Fixes
3
+ ## [6.0.0-Beta.0]
4
4
 
5
- - align installer dependencies with root package versions for ESM compatibility ([#420](https://github.com/bmadcode/BMAD-METHOD/issues/420)) ([3f6b674](https://github.com/bmadcode/BMAD-METHOD/commit/3f6b67443d61ae6add98656374bed27da4704644))
5
+ **Release: January 2026 - Alpha to Beta Transition**
6
6
 
7
- ## [4.36.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.36.0...v4.36.1) (2025-08-09)
7
+ ### 🎉 Beta Release
8
8
 
9
- ### Bug Fixes
9
+ - **Transition from Alpha to Beta**: BMad Method is now in Beta! This marks a significant milestone in the framework's development
10
+ - **NPM Default Tag**: Beta versions are now published with the `latest` tag, making `npx bmad-method` serve the beta version by default
10
11
 
11
- - update Node.js version to 20 in release workflow and reduce Discord spam ([3f7e19a](https://github.com/bmadcode/BMAD-METHOD/commit/3f7e19a098155341a2b89796addc47b0623cb87a))
12
+ ### 🌟 Key Highlights
12
13
 
13
- # [4.36.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.3...v4.36.0) (2025-08-09)
14
+ 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
15
+ 2. **Module Ecosystem Expansion**: bmad-builder, CIS (Creative Intelligence Suite), and Game Dev Studio moved to separate repositories for focused development
16
+ 3. **Installer Consolidation**: Unified installer architecture with standardized command naming (`bmad-dash-case.md` or `bmad-*-agent-*.md`)
17
+ 4. **Windows Compatibility**: Complete migration from Inquirer.js to @clack/prompts for reliable cross-platform support
14
18
 
15
- ### Features
19
+ ### 🚀 Major Features
16
20
 
17
- - modularize flattener tool into separate components with improved project root detection ([#417](https://github.com/bmadcode/BMAD-METHOD/issues/417)) ([0fdbca7](https://github.com/bmadcode/BMAD-METHOD/commit/0fdbca73fc60e306109f682f018e105e2b4623a2))
21
+ **bmad-help - Intelligent Guidance System:**
18
22
 
19
- ## [4.35.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.2...v4.35.3) (2025-08-06)
23
+ - **Replaces**: workflow-init and legacy workflow tracking
24
+ - **AI-Powered**: Full context awareness of installed modules, workflows, agents, and commands
25
+ - **Dynamic Discovery**: Automatically catalogs all available workflows from installed modules
26
+ - **Intelligent Routing**: Guides users to the right workflow or agent based on their goal
27
+ - **IDE Integration**: Generates proper IDE command files for all discovered workflows
20
28
 
21
- ### Bug Fixes
29
+ **Module Restructuring:**
22
30
 
23
- - doc location improvement ([1676f51](https://github.com/bmadcode/BMAD-METHOD/commit/1676f5189ed057fa2d7facbd6a771fe67cdb6372))
31
+ | Module | Status | New Location |
32
+ | ------------------------------------- | ------------------------------------------------- | ------------------------------------------------------- |
33
+ | **bmad-builder** | Near beta, with docs and walkthroughs coming soon | `bmad-code-org/bmad-builder` |
34
+ | **CIS** (Creative Intelligence Suite) | Published as npm package | `bmad-code-org/bmad-module-creative-intelligence-suite` |
35
+ | **Game Dev Studio** | Published as npm package | `bmad-code-org/bmad-module-game-dev-studio` |
24
36
 
25
- ## [4.35.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.1...v4.35.2) (2025-08-06)
37
+ ### 🔧 Installer & CLI Improvements
26
38
 
27
- ### Bug Fixes
39
+ **UnifiedInstaller Architecture:**
28
40
 
29
- - npx status check ([f7c2a4f](https://github.com/bmadcode/BMAD-METHOD/commit/f7c2a4fb6c454b17d250b85537129b01ffee6b85))
41
+ - All IDE installers now use a common `UnifiedInstaller` class
42
+ - Standardized command naming conventions:
43
+ - Workflows: `bmad-module-workflow-name.md`
44
+ - Agents: `bmad-module-agent-name.md`
45
+ - Tasks: `bmad-task-name.md`
46
+ - Tools: `bmad-tool-name.md`
47
+ - External module installation from npm with progress indicators
48
+ - Module removal on unselect with confirmation
30
49
 
31
- ## [4.35.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.0...v4.35.1) (2025-08-06)
50
+ **Windows Compatibility Fix:**
32
51
 
33
- ### Bug Fixes
52
+ - Replaced Inquirer.js with @clack/prompts to fix arrow key navigation issues on Windows
53
+ - All 91 installer workflows migrated to new prompt system
34
54
 
35
- - npx hanging commands ([2cf322e](https://github.com/bmadcode/BMAD-METHOD/commit/2cf322ee0d9b563a4998c72b2c5eab259594739b))
55
+ ### 📚 Documentation Updates
36
56
 
37
- # [4.35.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.34.0...v4.35.0) (2025-08-04)
57
+ **Significant docsite improvements:**
38
58
 
39
- ### Features
59
+ - Interactive workflow guide page (`/workflow-guide`) with track selector
60
+ - TEA documentation restructured using Diátaxis framework (25 docs)
61
+ - Style guide optimized for LLM readers (367 lines, down from 767)
62
+ - Glossary rewritten using table format (123 lines, down from 373)
63
+ - README overhaul with numbered command flows and prominent `/bmad-help` callout
64
+ - New workflow map diagram with interactive HTML
65
+ - New editorial review tasks for document quality
66
+ - E2E testing methodology for Game Dev Studio
40
67
 
41
- - add qwen-code ide support to bmad installer. ([#392](https://github.com/bmadcode/BMAD-METHOD/issues/392)) ([a72b790](https://github.com/bmadcode/BMAD-METHOD/commit/a72b790f3be6c77355511ace2d63e6bec4d751f1))
68
+ More documentation updates coming soon.
42
69
 
43
- # [4.34.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.33.1...v4.34.0) (2025-08-03)
70
+ ### 🐛 Bug Fixes
44
71
 
45
- ### Features
72
+ - Fixed TodoMVC URL references to include `/dist/` path
73
+ - Fixed glob pattern normalization for Windows compatibility
74
+ - Fixed YAML indentation in kilo.js customInstructions field
75
+ - Fixed stale path references in check-implementation-readiness workflow
76
+ - Fixed sprint-status.yaml sync in correct-course workflow
77
+ - Fixed web bundler entry point reference
78
+ - Fixed mergeModuleHelpCatalogs ordering after generateManifests
46
79
 
47
- - add KiloCode integration support to BMAD installer ([#390](https://github.com/bmadcode/BMAD-METHOD/issues/390)) ([dcebe91](https://github.com/bmadcode/BMAD-METHOD/commit/dcebe91d5ea68e69aa27183411a81639d444efd7))
80
+ ### 📊 Statistics
48
81
 
49
- ## [4.33.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.33.0...v4.33.1) (2025-07-29)
82
+ - **91 commits** since alpha.23
83
+ - **969 files changed** (+23,716 / -91,509 lines)
84
+ - **Net reduction of ~67,793 lines** through cleanup and consolidation
85
+ - **3 major modules** moved to separate repositories
86
+ - **Complete installer refactor** for standardization
50
87
 
51
- ### Bug Fixes
88
+ ---
52
89
 
53
- - dev agent yaml syntax for develop-story command ([#362](https://github.com/bmadcode/BMAD-METHOD/issues/362)) ([bcb3728](https://github.com/bmadcode/BMAD-METHOD/commit/bcb3728f8868c0f83bca3d61fbd7e15c4e114526))
90
+ ## [6.0.0-alpha.23]
54
91
 
55
- # [4.33.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.32.0...v4.33.0) (2025-07-28)
92
+ **Release: January 11, 2026**
56
93
 
57
- ### Features
94
+ ### 🌟 Key Highlights
58
95
 
59
- - version bump ([e9dd4e7](https://github.com/bmadcode/BMAD-METHOD/commit/e9dd4e7beb46d0c80df0cd65ae02d1867a56d7c1))
96
+ 1. **Astro/Starlight Documentation Platform**: Complete migration from Docusaurus to modern Astro+Starlight for superior performance and customization
97
+ 2. **Diataxis Framework Implementation**: Professional documentation restructuring with tutorials, how-to guides, explanations, and references
98
+ 3. **Workflow Creator & Validator**: Powerful new tools for workflow creation with subprocess support and PRD validation
99
+ 4. **TEA Documentation Expansion**: Comprehensive testing documentation with cheat sheets, MCP enhancements, and API testing patterns
100
+ 5. **Brainstorming Revolution**: Research-backed procedural rigor with 100+ idea goal and anti-bias protocols
101
+ 6. **Cursor IDE Modernization**: Refactored from rules-based to command-based architecture for better IDE integration
60
102
 
61
- # [4.32.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.31.0...v4.32.0) (2025-07-27)
103
+ ### 📚 Documentation Platform Revolution
62
104
 
63
- ### Bug Fixes
105
+ **Astro/Starlight Migration:**
64
106
 
65
- - Add package-lock.json to fix GitHub Actions dependency resolution ([cce7a75](https://github.com/bmadcode/BMAD-METHOD/commit/cce7a758a632053e26d143b678eb7963599b432d))
66
- - GHA fix ([62ccccd](https://github.com/bmadcode/BMAD-METHOD/commit/62ccccdc9e85f8621f63f99bd1ce0d14abe09783))
107
+ - **From Docusaurus to Astro**: Complete platform migration for improved performance, better customization, and modern tooling
108
+ - **Starlight Theme**: Professional documentation theme with dark mode default and responsive design
109
+ - **Build Pipeline Overhaul**: New build-docs.js orchestrates link checking, artifact generation, and Astro build
110
+ - **LLM-Friendly Documentation**: Generated llms.txt and llms-full.txt for AI agent discoverability
111
+ - **Downloadable Source Bundles**: bmad-sources.zip and bmad-prompts.zip for offline use
67
112
 
68
- ### Features
113
+ **Diataxis Framework Implementation:**
69
114
 
70
- - Overhaul and Enhance 2D Unity Game Dev Expansion Pack ([#350](https://github.com/bmadcode/BMAD-METHOD/issues/350)) ([a7038d4](https://github.com/bmadcode/BMAD-METHOD/commit/a7038d43d18246f6aef175aa89ba059b7c94f61f))
115
+ - **Four Content Types**: Professional separation into tutorials, how-to guides, explanations, and references
116
+ - **21 Files Migrated**: Phase 1 migration of core documentation to Diataxis structure
117
+ - **42+ Focused Documents**: Phase 2 split of large legacy files into manageable pieces
118
+ - **FAQ Restructuring**: 7 topic-specific FAQ files with standardized format
119
+ - **Tutorial Style Guide**: Comprehensive documentation standards for consistent content creation
71
120
 
72
- # [4.31.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.4...v4.31.0) (2025-07-20)
121
+ **Link Management & Quality:**
73
122
 
74
- ### Bug Fixes
123
+ - **Site-Relative Links**: Converted 217 links to repo-relative format (/docs/path/file.md)
124
+ - **Link Validation Tools**: New validate-doc-links.js and fix-doc-links.js for maintaining link integrity
125
+ - **Broken Link Fixes**: Resolved ~50 broken internal links across documentation
126
+ - **BMad Acronym Standardization**: Consistent use of "BMad" (Breakthrough Method of Agile AI Driven Development)
127
+ - **SEO Optimization**: Absolute URLs in AI meta tags for better web crawler discoverability
75
128
 
76
- - enhanced user guide with better diagrams ([c445962](https://github.com/bmadcode/BMAD-METHOD/commit/c445962f259cd7d84c47a896e7fda99e83a30c8d))
129
+ ### 🔧 Workflow Creator & Validator (Major Feature)
77
130
 
78
- ### Features
131
+ **Workflow Creation Tool:**
79
132
 
80
- - Installation includes a getting started user guide with detailed mermaid diagram ([df57d77](https://github.com/bmadcode/BMAD-METHOD/commit/df57d772cac9f9010811e7e86a6433a0fe636a45))
133
+ - **Subprocess Support**: Advanced workflows can now spawn subprocesses for complex operations
134
+ - **PRD Validation Step**: New validation step ensures PRD quality before workflow execution
135
+ - **Trimodal Workflow Creation**: Three-mode workflow generation system
136
+ - **Quadrivariate Module Workflow**: Four-variable workflow architecture for enhanced flexibility
137
+ - **Path Violation Checks**: Validator ensures workflows don't violate path constraints
138
+ - **Max Parallel Mode POC**: Proof-of-concept for parallel workflow validation
81
139
 
82
- ## [4.30.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.3...v4.30.4) (2025-07-19)
140
+ **Workflow Quality Improvements:**
83
141
 
84
- ### Bug Fixes
142
+ - **PRD Trimodal Compliance**: PRD workflow now follows trimodal standards
143
+ - **Standardized Step Formatting**: Consistent markdown formatting across workflow and PRD steps
144
+ - **Better Suggested Next Steps**: Improved workflow completion guidance
145
+ - **Variable Naming Standardization**: {project_root} → {project-root} across all workflows
85
146
 
86
- - docs ([8619006](https://github.com/bmadcode/BMAD-METHOD/commit/8619006c16731b99fa36b434d209a0c2caf2d998))
87
- - lint fix ([49e4897](https://github.com/bmadcode/BMAD-METHOD/commit/49e489701e55feac481806740ea54bebef042fba))
147
+ ### 🧪 TEA Documentation Expansion
88
148
 
89
- ## [4.30.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.2...v4.30.3) (2025-07-19)
149
+ **Comprehensive Testing Guides:**
90
150
 
91
- ### Bug Fixes
151
+ - **Cheat Sheets**: Quick reference guides for common testing scenarios
152
+ - **MCP Enhancements**: Model Context Protocol improvements for testing workflows
153
+ - **API Testing Patterns**: Best practices for API testing documentation
154
+ - **Design Philosophy Callout**: Clear explanation of TEA's design principles
155
+ - **Context Engineering Glossary**: New glossary entry defining context engineering concepts
156
+ - **Fragment Count Updates**: Accurate documentation of TEA workflow components
157
+ - **Playwright Utils Examples**: Updated code examples for playwright-utils integration
92
158
 
93
- - improve code in the installer to be more memory efficient ([849e428](https://github.com/bmadcode/BMAD-METHOD/commit/849e42871ab845098fd196217bce83e43c736b8a))
159
+ ### 💡 Brainstorming Workflow Overhaul
94
160
 
95
- ## [4.30.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.1...v4.30.2) (2025-07-17)
161
+ **Research-Backed Procedural Rigor:**
96
162
 
97
- ### Bug Fixes
163
+ - **100+ Idea Goal**: Emphasis on quantity-first approach to unlock better quality ideas
164
+ - **Anti-Bias Protocol**: Domain pivot every 10 ideas to reduce cognitive biases
165
+ - **Chain-of-Thought Requirements**: Reasoning before idea generation
166
+ - **Simulated Temperature**: Prompts for higher divergence in ideation
167
+ - **Standardized Idea Format**: Quality control template for consistent output
168
+ - **Energy Checkpoints**: Multiple continuation options to maintain creative flow
98
169
 
99
- - remove z2 ([dcb36a9](https://github.com/bmadcode/BMAD-METHOD/commit/dcb36a9b44b6644f6b2723c9067abaa9b0bc1999))
170
+ **Exploration Menu Improvements:**
100
171
 
101
- ## [4.30.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.0...v4.30.1) (2025-07-15)
172
+ - **Letter-Based Navigation**: [K/T/A/B/C] options instead of numbers for clarity
173
+ - **Keep/Try/Advanced/Break/Continue**: Clear action options for idea refinement
174
+ - **Universal Facilitation Rules**: Consistent guidelines across all brainstorming steps
175
+ - **Quality Growth Enforcement**: Balance between quantity and quality metrics
102
176
 
103
- ### Bug Fixes
177
+ ### 🖥️ Cursor IDE Modernization
104
178
 
105
- - added logo to installer, because why not... ([2cea37a](https://github.com/bmadcode/BMAD-METHOD/commit/2cea37aa8c1924ddf5aa476f4c312837f2615a70))
179
+ **Command-Based Architecture:**
106
180
 
107
- # [4.30.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.7...v4.30.0) (2025-07-15)
181
+ - **From Rules to Commands**: Complete refactor from rules-based to command-based system
182
+ - **Command Generation**: Automatic generation of task and tool commands
183
+ - **Commands Directory**: New `.cursor/commands/bmad/` structure for generated commands
184
+ - **Cleanup Integration**: Automatic cleanup of old BMAD commands alongside rules
185
+ - **Enhanced Logging**: Better feedback on agents, tasks, tools, and workflow commands generated
108
186
 
109
- ### Features
187
+ ### 🤖 Agent System Improvements
110
188
 
111
- - installer is now VERY clear about IDE selection being a multiselect ([e24b6f8](https://github.com/bmadcode/BMAD-METHOD/commit/e24b6f84fd9e4ff4b99263019b5021ca2b145b2f))
189
+ **Agent Builder & Validation:**
112
190
 
113
- ## [4.29.7](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.6...v4.29.7) (2025-07-14)
191
+ - **hasSidecar Field**: All agents now indicate sidecar support (true/false)
192
+ - **Validation Enforcement**: hasSidecar now required in agent validation
193
+ - **Better Brownfield Documentation**: Improved brownfield project documentation
194
+ - **Agent Builder Updates**: Agent builder now uses hasSidecar field
195
+ - **Agent Editor Integration**: Editor workflow respects hasSidecar configuration
114
196
 
115
- ### Bug Fixes
197
+ ### 🐛 Bug Fixes & Quality Improvements
116
198
 
117
- - bundle build ([0723eed](https://github.com/bmadcode/BMAD-METHOD/commit/0723eed88140e76146dfbfdddd49afe86e8522ee))
199
+ **Critical Fixes:**
118
200
 
119
- ## [4.29.6](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.5...v4.29.6) (2025-07-14)
201
+ - **Windows Line Endings**: Resolved CRLF issues causing cross-platform problems
202
+ - **Code-Review File Filtering**: Fixed code-review picking up non-application files
203
+ - **ERR_REQUIRE_ESM Resolution**: Dynamic import for inquirer v9+ compatibility
204
+ - **Project-Context Conflicts**: Allow full project-context usage with conflict precedence
205
+ - **Workflow Paths**: Fixed paths for workflow and sprint status files
206
+ - **Missing Scripts**: Fixed missing scripts from installation
120
207
 
121
- ### Bug Fixes
208
+ **Workflow & Variable Fixes:**
122
209
 
123
- - improve agent task folowing in agressing cost saving ide model combos ([3621c33](https://github.com/bmadcode/BMAD-METHOD/commit/3621c330e65f328e7326f93a5fe27e65b08907e7))
210
+ - **Variable Naming**: Standardized from {project_root} to {project-root} across CIS, BMGD, and BMM modules
211
+ - **Workflow References**: Fixed broken .yaml → .md workflow references
212
+ - **Advanced Elicitation Variables**: Fixed undefined variables in brainstorming
213
+ - **Dependency Format**: Corrected dependency format and added missing frontmatter
124
214
 
125
- ## [4.29.5](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.4...v4.29.5) (2025-07-14)
215
+ **Code Quality:**
126
216
 
127
- ### Bug Fixes
217
+ - **Dependency Updates**: Bumped qs from 6.14.0 to 6.14.1
218
+ - **CodeRabbit Integration**: Enabled auto-review on new PRs
219
+ - **TEA Fragment Counts**: Updated fragment counts for accuracy
220
+ - **Documentation Links**: Fixed Discord channel references (#general-dev → #bmad-development)
128
221
 
129
- - windows regex issue ([9f48c1a](https://github.com/bmadcode/BMAD-METHOD/commit/9f48c1a869a9cc54fb5e7d899c2af7a5cef70e10))
222
+ ### 🚀 Installation & CLI Improvements
130
223
 
131
- ## [4.29.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.3...v4.29.4) (2025-07-14)
224
+ **Installation Enhancements:**
132
225
 
133
- ### Bug Fixes
226
+ - **Workflow Exclusion**: Ability to exclude workflows from being added as commands
227
+ - **Example Workflow Protection**: Example workflow in workflow builder now excluded from tools
228
+ - **CNAME Configuration**: Added CNAME file for custom domain support
229
+ - **Script Fixes**: All scripts now properly included in installation
134
230
 
135
- - empty .roomodes, support Windows-style newlines in YAML block regex ([#311](https://github.com/bmadcode/BMAD-METHOD/issues/311)) ([551e30b](https://github.com/bmadcode/BMAD-METHOD/commit/551e30b65e1f04386f0bd0193f726828df684d5b))
231
+ ### 📊 Statistics
136
232
 
137
- ## [4.29.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.2...v4.29.3) (2025-07-13)
233
+ - **27 commits** since alpha.22
234
+ - **217 documentation links** converted to site-relative format
235
+ - **42+ focused documents** created from large legacy files
236
+ - **7 topic-specific FAQ files** with standardized formatting
237
+ - **Complete documentation platform** migrated from Docusaurus to Astro/Starlight
238
+ - **Major workflow tools** added: Creator, Validator with subprocess support
239
+ - **Brainstorming workflow** overhauled with research-backed rigor
138
240
 
139
- ### Bug Fixes
241
+ ---
140
242
 
141
- - annoying YAML lint error ([afea271](https://github.com/bmadcode/BMAD-METHOD/commit/afea271e5e3b14a0da497e241b6521ba5a80b85b))
243
+ ## [6.0.0-alpha.22]
142
244
 
143
- ## [4.29.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.1...v4.29.2) (2025-07-13)
245
+ **Release: December 31, 2025**
144
246
 
145
- ### Bug Fixes
247
+ ### 🌟 Key Highlights
146
248
 
147
- - add readme note about discord joining issues ([4ceaced](https://github.com/bmadcode/BMAD-METHOD/commit/4ceacedd7370ea80181db0d66cf8da8dcbfdd109))
249
+ 1. **Unified Agent Workflow**: Create, Edit, and Validate workflows consolidated into single powerful agent workflow with separate step paths
250
+ 2. **Agent Knowledge System**: Comprehensive data file architecture with persona properties, validation patterns, and crafting principles
251
+ 3. **Deep Language Integration**: All sharded progressive workflows now support language choice at every step
252
+ 4. **Core Module Documentation**: Extensive docs for core workflows (brainstorming, party mode, advanced elicitation)
253
+ 5. **BMAD Core Concepts**: New documentation structure explaining agents, workflows, modules, and installation
254
+ 6. **Tech Spec Sharded**: create-tech-spec workflow converted to sharded format with orient-first pattern
148
255
 
149
- ## [4.29.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.0...v4.29.1) (2025-07-13)
256
+ ### 🤖 Unified Agent Workflow (Major Feature)
150
257
 
151
- ### Bug Fixes
258
+ **Consolidated Architecture:**
152
259
 
153
- - brianstorming facilitation output ([f62c05a](https://github.com/bmadcode/BMAD-METHOD/commit/f62c05ab0f54e6c26c67cd9ac11200b172d11076))
260
+ - **Single Workflow, Three Paths**: Create, Edit, and Validate operations unified under `src/modules/bmb/workflows/agent/`
261
+ - **steps-c/**: Create path with 9 comprehensive steps for building new agents
262
+ - **steps-e/**: Edit path with 10 steps for modifying existing agents
263
+ - **steps-v/**: Validate path for standalone agent validation review
264
+ - **data/**: Centralized knowledge base for all agent-building intel
154
265
 
155
- # [4.29.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.28.0...v4.29.0) (2025-07-13)
266
+ ### 📚 Agent Knowledge System
156
267
 
157
- ### Features
268
+ **Data File Architecture:**
158
269
 
159
- - Claude Code slash commands for Tasks and Agents! ([e9e541a](https://github.com/bmadcode/BMAD-METHOD/commit/e9e541a52e45f6632b2f8c91d10e39c077c1ecc9))
270
+ Located in `src/modules/bmb/workflows/agent/data/`:
160
271
 
161
- # [4.28.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.6...v4.28.0) (2025-07-12)
272
+ - **agent-metadata.md** (208 lines) - Complete metadata field reference
273
+ - **agent-menu-patterns.md** (233 lines) - Menu design patterns and best practices
274
+ - **agent-compilation.md** (273 lines) - Compilation process documentation
275
+ - **persona-properties.md** (266 lines) - Persona crafting properties and examples
276
+ - **principles-crafting.md** (292 lines) - Core principles for agent design
277
+ - **critical-actions.md** (120 lines) - Critical action patterns
278
+ - **expert-agent-architecture.md** (236 lines) - Expert agent structure
279
+ - **expert-agent-validation.md** (173 lines) - Expert-specific validation
280
+ - **module-agent-validation.md** (124 lines) - Module-specific validation
281
+ - **simple-agent-architecture.md** (204 lines) - Simple agent structure
282
+ - **simple-agent-validation.md** (132 lines) - Simple agent validation
283
+ - **understanding-agent-types.md** (222 lines) - Agent type comparison
284
+ - **brainstorm-context.md** - Brainstorming guidance
285
+ - **communication-presets.csv** - Communication style presets
162
286
 
163
- ### Features
287
+ **Reference Examples:**
164
288
 
165
- - bmad-master can load kb properly ([3c13c56](https://github.com/bmadcode/BMAD-METHOD/commit/3c13c564988f9750e043939dd770aea4196a7e7a))
289
+ - **reference/module-examples/architect.agent.yaml** - Module agent example
290
+ - **reference/simple-examples/commit-poet.agent.yaml** - Simple agent example
291
+ - **journal-keeper/** - Complete sidecar pattern example
166
292
 
167
- ## [4.27.6](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.5...v4.27.6) (2025-07-08)
293
+ **Templates:**
168
294
 
169
- ### Bug Fixes
295
+ - **templates/simple-agent.template.md** - Simple agent template
296
+ - **templates/expert-agent-template/expert-agent.template.md** - Expert agent template
297
+ - **templates/expert-agent-sidecar/** - Sidecar templates (instructions, memories)
170
298
 
171
- - installer improvement ([db30230](https://github.com/bmadcode/BMAD-METHOD/commit/db302309f42da49daa309b5ba1a625c719e5bb14))
299
+ ### 🌍 Deep Language Integration
172
300
 
173
- ## [4.27.5](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.4...v4.27.5) (2025-07-08)
301
+ **Progressive Workflow Language Support:**
174
302
 
175
- ### Bug Fixes
303
+ - **Every Step Biased**: All sharded progressive workflow steps now include language preference context
304
+ - **260+ Files Updated**: Comprehensive language integration across:
305
+ - Core workflows (brainstorming, party mode, advanced elicitation)
306
+ - BMB workflows (create-agent, create-module, create-workflow, edit-workflow, etc.)
307
+ - BMGD workflows (game-brief, gdd, narrative, game-architecture, etc.)
308
+ - BMM workflows (research, create-ux-design, prd, create-architecture, etc.)
309
+ - **Tested Languages**: Verified working with Spanish and Pirate Speak
310
+ - **Natural Conversations**: AI agents respond in configured language throughout workflow
176
311
 
177
- - installer for github copilot asks follow up questions right away now so it does not seem to hang, and some minor doc improvements ([cadf8b6](https://github.com/bmadcode/BMAD-METHOD/commit/cadf8b6750afd5daa32eb887608c614584156a69))
312
+ ### 📖 Core Module Documentation
178
313
 
179
- ## [4.27.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.3...v4.27.4) (2025-07-07)
314
+ **New Core Documentation Structure:**
180
315
 
181
- ### Bug Fixes
316
+ `docs/modules/core/`:
182
317
 
183
- - doc updates ([1b86cd4](https://github.com/bmadcode/BMAD-METHOD/commit/1b86cd4db3644ca2b2b4a94821cc8b5690d78e0a))
318
+ - **index.md** - Core module overview
319
+ - **core-workflows.md** - Core workflow documentation
320
+ - **core-tasks.md** - Core task reference
321
+ - **brainstorming.md** (100 lines) - Brainstorming workflow guide
322
+ - **party-mode.md** (50 lines) - Party mode guide
323
+ - **advanced-elicitation.md** (105 lines) - Advanced elicitation techniques
324
+ - **document-sharding-guide.md** (133 lines) - Sharded workflow format guide
325
+ - **global-core-config.md** - Global core configuration reference
184
326
 
185
- ## [4.27.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.2...v4.27.3) (2025-07-07)
327
+ **Advanced Elicitation Moved:**
186
328
 
187
- ### Bug Fixes
329
+ - **From**: `docs/` root
330
+ - **To**: `src/core/workflows/advanced-elicitation/`
331
+ - **Status**: Now a proper core workflow with methods.csv
188
332
 
189
- - remove test zoo folder ([908dcd7](https://github.com/bmadcode/BMAD-METHOD/commit/908dcd7e9afae3fd23cd894c0d09855fc9c42d0e))
333
+ ### 📚 BMAD Core Concepts Documentation
190
334
 
191
- ## [4.27.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.1...v4.27.2) (2025-07-07)
335
+ **New Documentation Structure:**
192
336
 
193
- ### Bug Fixes
337
+ `docs/bmad-core-concepts/`:
194
338
 
195
- - improve output ([a5ffe7b](https://github.com/bmadcode/BMAD-METHOD/commit/a5ffe7b9b209ae02a9d97adf60fe73c0bc9701e4))
339
+ - **index.md** - Core concepts introduction
340
+ - **agents.md** (93 lines) - Understanding agents in BMAD
341
+ - **workflows.md** (89 lines) - Understanding workflows in BMAD
342
+ - **modules.md** (76 lines) - Understanding modules (BMM, BMGD, CIS, BMB, Core)
343
+ - **installing/index.md** (77 lines) - Installation guide
344
+ - **installing/upgrading.md** (144 lines) - Upgrading guide
345
+ - **bmad-customization/index.md** - Customization overview
346
+ - **bmad-customization/agents.md** - Agent customization guide
347
+ - **bmad-customization/workflows.md** (30 lines) - Workflow customization guide
348
+ - **web-bundles/index.md** (34 lines) - Web bundle distribution guide
196
349
 
197
- ## [4.27.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.27.0...v4.27.1) (2025-07-07)
350
+ **Documentation Cleanup:**
198
351
 
199
- ### Bug Fixes
352
+ - **Removed v4-to-v6-upgrade.md** - Outdated upgrade guide
353
+ - **Removed document-sharding-guide.md** from docs root (moved to core)
354
+ - **Removed web-bundles-gemini-gpt-guide.md** - Consolidated into web-bundles/index.md
355
+ - **Removed getting-started/installation.md** - Migrated to bmad-core-concepts
356
+ - **Removed all ide-info/*.md files** - Consolidated into web-bundles documentation
200
357
 
201
- - build web bundles with new file extension includsion ([92201ae](https://github.com/bmadcode/BMAD-METHOD/commit/92201ae7ede620ec09b4764edaed97be42a3b78f))
358
+ ### 🔧 Create-Tech-Spec Sharded Conversion
202
359
 
203
- # [4.27.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.26.0...v4.27.0) (2025-07-06)
360
+ **Monolithic to Sharded:**
204
361
 
205
- ### Bug Fixes
362
+ - **From**: Single `workflow.yaml` with `instructions.md`
363
+ - **To**: Sharded `workflow.md` with individual step files
364
+ - **Pattern**: Orient-first approach (understand before investigating)
206
365
 
207
- - readme consolidation and version bumps ([0a61d3d](https://github.com/bmadcode/BMAD-METHOD/commit/0a61d3de4af880f6e3bf934a92b1827754ed8ce6))
366
+ ### 🔨 Additional Improvements
208
367
 
209
- ### Features
368
+ **Workflow Status Path Fixes:**
210
369
 
211
- - big improvement to advanced elicitation ([1bc9960](https://github.com/bmadcode/BMAD-METHOD/commit/1bc9960808098fba6b43850311799022319df841))
212
- - experimental doc creator v2 and template system ([b785371](https://github.com/bmadcode/BMAD-METHOD/commit/b78537115da06b01e140833fd1d73950c7f2e41f))
213
- - Massive improvement to the brainstorming task! ([9f53caf](https://github.com/bmadcode/BMAD-METHOD/commit/9f53caf4c6f9c67195b1aae14d54987f81d76e07))
214
- - WIP create-docv2 ([c107af0](https://github.com/bmadcode/BMAD-METHOD/commit/c107af05984718c1af2cf80118353e8d2e6f906f))
370
+ - **Corrected Discovery Paths**: workflow-status workflows now properly use planning_artifacts and implementation_artifacts
371
+ - **Updated All Path Files**: enterprise-brownfield, enterprise-greenfield, method-brownfield, method-greenfield
215
372
 
216
- # [4.26.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.25.1...v4.26.0) (2025-07-06)
373
+ **Documentation Updates:**
217
374
 
218
- ### Features
375
+ - **BMB Agent Creation Guide**: Comprehensive 166-line guide for agent creation
376
+ - **Workflow Vendoring Doc**: New 42-line guide on workflow customization and inheritance
377
+ - **Document Project Reference**: Moved from BMM docs to shared location
378
+ - **Workflows Planning Guide**: New 89-line guide for planning workflows
219
379
 
220
- - **trae:** add support for trae ide integration ([#298](https://github.com/bmadcode/BMAD-METHOD/issues/298)) ([fae0f5f](https://github.com/bmadcode/BMAD-METHOD/commit/fae0f5ff73a603dc1aacc29f184e2a4138446524))
380
+ **BMB Documentation Streamlining:**
221
381
 
222
- ## [4.25.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.25.0...v4.25.1) (2025-07-06)
382
+ - **Removed Redundant Docs**: Eliminated duplicate documentation in `src/modules/bmb/docs/`
383
+ - **Step File Rules**: New 469-line comprehensive guide for step file creation
384
+ - **Agent Docs Moved**: Agent architecture and validation docs moved to workflow data/
223
385
 
224
- ### Bug Fixes
386
+ **Windows Inquirer Fix:**
225
387
 
226
- - spelling errors in documentation. ([#297](https://github.com/bmadcode/BMAD-METHOD/issues/297)) ([47b9d9f](https://github.com/bmadcode/BMAD-METHOD/commit/47b9d9f3e87be62c8520ed6cb0048df727a9534f))
388
+ - **Another Default Addition**: Additional inquirer default value setting for better Windows multiselection support
227
389
 
228
- # [4.25.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.6...v4.25.0) (2025-07-05)
390
+ **Code Quality:**
229
391
 
230
- ### Bug Fixes
392
+ - **Removed Old BMM README**: Consolidated module documentation
393
+ - **Removed BMM Troubleshooting**: 661-line doc moved to shared location
394
+ - **Removed Enterprise Agentic Development**: 686-line doc consolidated
395
+ - **Removed Scale Adaptive System**: 618-line doc consolidated
231
396
 
232
- - update web bundles ([42684e6](https://github.com/bmadcode/BMAD-METHOD/commit/42684e68af4396797962f3f851147523a6741608))
397
+ ---
233
398
 
234
- ### Features
399
+ ## [6.0.0-alpha.21]
235
400
 
236
- - improvements to agent task usage, sm story drafting, dev implementation, qa review process, and addition of a new sm independant review of a draft story ([2874a54](https://github.com/bmadcode/BMAD-METHOD/commit/2874a54a9b25b48c199b2e9dc63a9555e716c636))
401
+ **Release: December 27, 2025**
237
402
 
238
- ## [4.24.6](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.5...v4.24.6) (2025-07-04)
403
+ ### 🌟 Key Highlights
239
404
 
240
- ### Bug Fixes
405
+ 1. **Consistent Menu System**: All agents now use standardized 2-letter menu codes (e.g., "rd" for research, "ca" for create-architecture)
406
+ 2. **Planning Artifacts Architecture**: Phase 1-3 workflows now properly segregate planning artifacts from documentation
407
+ 3. **Windows Installer Fixed Again**: Updated inquirer to resolve multiselection tool issues
408
+ 4. **Auto-Injected Features**: Chat and party mode automatically injected into all agents
409
+ 5. **Validation System**: All agents now pass comprehensive new validation checks
241
410
 
242
- - version bump and web build fix ([1c845e5](https://github.com/bmadcode/BMAD-METHOD/commit/1c845e5b2c77a77d887d8216152ba09110c72e40))
411
+ ### 🎯 Consistent Menu System (Major Feature)
243
412
 
244
- ## [4.24.5](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.4...v4.24.5) (2025-07-04)
413
+ **Standardized 2-Letter Codes:**
245
414
 
246
- ### Bug Fixes
415
+ - **Compound Menu Triggers**: All agents now use consistent 2-letter compound trigger format (e.g., `bmm-rd`, `bmm-ca`)
416
+ - **Improved UX**: Shorter, more memorable command shortcuts across all modules
417
+ - **Module Prefixing**: Menu items properly scoped by module prefix (bmm-, bmgd-, cis-, bmb-)
418
+ - **Universal Pattern**: All 22 agents updated to follow the same menu structure
247
419
 
248
- - yaml standardization in files and installer actions ([094f9f3](https://github.com/bmadcode/BMAD-METHOD/commit/094f9f3eabf563c9a89ecaf360fed63386b46ed4))
420
+ **Agent Updates:**
249
421
 
250
- ## [4.24.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.3...v4.24.4) (2025-07-04)
422
+ - **BMM Module**: 9 agents with standardized menus (pm, analyst, architect, dev, ux-designer, tech-writer, sm, tea, quick-flow-solo-dev)
423
+ - **BMGD Module**: 6 agents with standardized menus (game-architect, game-designer, game-dev, game-qa, game-scrum-master, game-solo-dev)
424
+ - **CIS Module**: 6 agents with standardized menus (innovation-strategist, design-thinking-coach, creative-problem-solver, brainstorming-coach, presentation-master, storyteller)
425
+ - **BMB Module**: 3 agents with standardized menus (bmad-builder, agent-builder, module-builder, workflow-builder)
426
+ - **Core Module**: BMAD Master agent updated with consistent menu patterns
251
427
 
252
- ### Bug Fixes
428
+ ### 📁 Planning Artifacts Architecture
253
429
 
254
- - documentation updates ([2018ad0](https://github.com/bmadcode/BMAD-METHOD/commit/2018ad07c7d4c68efb3c24d85ac7612942c6df9c))
430
+ **Content Segregation Implementation:**
255
431
 
256
- ## [4.24.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.2...v4.24.3) (2025-07-04)
432
+ - **Phase 1-3 Workflows**: All planning workflows now use `planning_artifacts` folder (default changed from `docs`)
433
+ - **Proper Input Discovery**: Workflows follow consistent input discovery patterns from planning artifacts
434
+ - **Output Management**: Planning artifacts properly separated from long-term documentation
435
+ - **Affected Workflows**:
436
+ - Product Brief: Updated discovery and output to planning artifacts
437
+ - PRD: Fixed discovery and output to planning artifacts
438
+ - UX Design: Updated all steps for proper artifact handling
439
+ - Architecture: Updated discovery and output flow
440
+ - Game Architecture: Updated for planning artifacts
441
+ - Story Creation: Updated workflow output paths
257
442
 
258
- ### Bug Fixes
443
+ **File Organization:**
259
444
 
260
- - update YAML library from 'yaml' to 'js-yaml' in resolveExpansionPackCoreAgents for consistency ([#295](https://github.com/bmadcode/BMAD-METHOD/issues/295)) ([03f30ad](https://github.com/bmadcode/BMAD-METHOD/commit/03f30ad28b282fbb4fa5a6ed6b57d0327218cce0))
445
+ - **Planning Artifacts**: Ephemeral planning documents (prd.md, product-brief.md, ux-design.md, architecture.md)
446
+ - **Documentation**: Long-term project documentation (separate from planning)
447
+ - **Module Configuration**: BMM and BMGD modules updated with proper default paths
261
448
 
262
- ## [4.24.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.1...v4.24.2) (2025-07-03)
449
+ ### 🪟 Windows Installer Fixes
263
450
 
264
- ### Bug Fixes
451
+ **Inquirer Multiselection Fix:**
265
452
 
266
- - version bump and restore dist folder ([87c451a](https://github.com/bmadcode/BMAD-METHOD/commit/87c451a5c3161fbc86f88619a2bfcfc322eb247e))
453
+ - **Updated Inquirer Version**: Resolved tool multiselection issues that were causing Windows installer failures
454
+ - **Better Compatibility**: Improved handling of checkbox and multi-select prompts on Windows(?)
267
455
 
268
- ## [4.24.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.0...v4.24.1) (2025-07-03)
456
+ ### 🤖 Agent System Improvements
269
457
 
270
- ### Bug Fixes
458
+ **Auto-Injected Features:**
271
459
 
272
- - centralized yamlExtraction function and all now fix character issues for windows ([e2985d6](https://github.com/bmadcode/BMAD-METHOD/commit/e2985d6093136575e8d8c91ce53c82abc4097de6))
273
- - filtering extension stripping logic update ([405954a](https://github.com/bmadcode/BMAD-METHOD/commit/405954ad924d8bd66f94c918643f6e9c091d4d09))
274
- - standardize on file extension .yaml instead of a mix of yml and yaml ([a4c0b18](https://github.com/bmadcode/BMAD-METHOD/commit/a4c0b1839d12d2ad21b7949aa30f4f7d82ec6c9c))
460
+ - **Chat Mode**: Automatically injected into all agents during compilation
461
+ - **Party Mode**: Automatically injected into all agents during compilation
462
+ - **Reduced Manual Configuration**: No need to manually add these features to agent definitions
463
+ - **Consistent Behavior**: All agents now have uniform access to chat and party mode capabilities
275
464
 
276
- # [4.24.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.23.0...v4.24.0) (2025-07-02)
465
+ **Agent Normalization:**
277
466
 
278
- ### Bug Fixes
467
+ - **All Agents Validated**: All 22 agents pass comprehensive validation checks
468
+ - **Schema Enforcement**: Proper compound trigger validation implemented
469
+ - **Metadata Cleanup**: Removed obsolete and inconsistent metadata patterns
470
+ - **Test Fixtures Updated**: Validation test fixtures aligned with new requirements
279
471
 
280
- - corrected cursor agent update instructions ([84e394a](https://github.com/bmadcode/BMAD-METHOD/commit/84e394ac11136d9cf8164cefc9ca8e298e8ef0ec))
472
+ ### 🔧 Bug Fixes & Cleanup
281
473
 
282
- ### Features
474
+ **Docusaurus Merge Recovery:**
283
475
 
284
- - workflow plans introduced, preliminary feature under review ([731589a](https://github.com/bmadcode/BMAD-METHOD/commit/731589aa287c31ea120e232b4dcc07e9790500ff))
476
+ - **Restored Agent Files**: Fixed agent files accidentally modified in Docusaurus merge (PR #1191)
477
+ - **Reference Cleanup**: Removed obsolete agent reference examples (journal-keeper, security-engineer, trend-analyst)
478
+ - **Test Fixture Updates**: Aligned test fixtures with current validation requirements
285
479
 
286
- # [4.23.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.22.1...v4.23.0) (2025-07-01)
480
+ **Code Quality:**
287
481
 
288
- ### Features
482
+ - **Schema Improvements**: Enhanced agent schema validation with better error messages
483
+ - **Removed Redundancy**: Cleaned up duplicate and obsolete agent definitions
484
+ - **Installer Cleanup**: Removed unused configuration code from BMM installer
289
485
 
290
- - Github Copilot integration ([#284](https://github.com/bmadcode/BMAD-METHOD/issues/284)) ([1a4ca4f](https://github.com/bmadcode/BMAD-METHOD/commit/1a4ca4ffa630c2d4156bdd7a040d4c2274801757))
486
+ **Planning Artifacts Path:**
487
+ - Default: `planning_artifacts/` (configurable in module.yaml)
488
+ - Previous: `docs/`
489
+ - Benefit: Clear separation between planning work and permanent documentation
291
490
 
292
- ## [4.22.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.22.0...v4.22.1) (2025-06-30)
491
+ ---
293
492
 
294
- ### Bug Fixes
493
+ ## [6.0.0-alpha.20]
295
494
 
296
- - update expansion versions ([6905fe7](https://github.com/bmadcode/BMAD-METHOD/commit/6905fe72f6c2abefbfd65729d1be85752130a1d2))
495
+ **Release: December 23, 2025**
297
496
 
298
- # [4.22.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.21.2...v4.22.0) (2025-06-30)
497
+ ### 🌟 Key Highlights
299
498
 
300
- ### Features
499
+ 1. **Windows Installer Fixed**: Better compatibility with inquirer v9.x upgrade
500
+ 2. **Path Segregation**: Revolutionary content organization separating ephemeral artifacts from permanent documentation
501
+ 3. **Custom Installation Messages**: Configurable intro/outro messages for professional installation experience
502
+ 4. **Enhanced Upgrade Logic**: Two-version auto upgrades with proper config preservation
503
+ 5. **Quick-Dev Refactor**: Sharded format with comprehensive adversarial review
504
+ 6. **Improved Quality**: Streamlined personas, fixed workflows, and cleaned up documentation
505
+ 7. **Doc Site Auto Generation**; Auto Generate a docusaurus site update on merge
301
506
 
302
- - create doc more explicit and readme improvement ([a1b30d9](https://github.com/bmadcode/BMAD-METHOD/commit/a1b30d9341d2ceff79db2c7e178860c5ef0d99e5))
507
+ ### 🪟 Windows Installer (hopefully) Fixed
303
508
 
304
- ## [4.21.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.21.1...v4.21.2) (2025-06-30)
509
+ **Inquirer Upgrade:**
305
510
 
306
- ### Bug Fixes
511
+ - **Updated to v9.x**: Upgraded inquirer package for better Windows support
512
+ - **Improved Compatibility**: Better handling of Windows terminal environments
513
+ - **Enhanced UX**: More reliable interactive prompts across platforms
307
514
 
308
- - improve create-doc task clarity for template execution ([86d5139](https://github.com/bmadcode/BMAD-METHOD/commit/86d5139aea7097cc5d4ee9da0f7d3e395ce0835e))
515
+ ### 🎯 Path Segregation Implementation (Major Feature)
309
516
 
310
- ## [4.21.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.21.0...v4.21.1) (2025-06-30)
517
+ **Revolutionary Content Organization:**
311
518
 
312
- ### Bug Fixes
519
+ - **Phase 1-4 Path Segregation**: Implemented new BM paths across all BMM and BMGD workflows
520
+ - **Planning vs Implementation Artifacts**: Separated ephemeral Phase 4 artifacts from permanent documentation
521
+ - **Optimized File Organization**: Better structure differentiating planning artifacts from long-term project documentation
522
+ - **Backward Compatible**: Existing installations continue working while preparing for optimized content organization
523
+ - **Module Configuration Updates**: Enhanced module.yaml with new path configurations for all phases
524
+ - **Workflow Path Updates**: All 90+ workflow files updated with proper path configurations
313
525
 
314
- - readme clarifies that the installer handles installs upgrades and expansion installation ([9371a57](https://github.com/bmadcode/BMAD-METHOD/commit/9371a5784f6a6f2ad358a72ea0cde9c980357167))
526
+ **Documentation Cleanup:**
315
527
 
316
- # [4.21.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.20.0...v4.21.0) (2025-06-30)
528
+ - **Removed Obsolete Documentation**: Cleaned up 3,100+ lines of outdated documentation
529
+ - **Streamlined README Files**: Consolidated and improved module documentation
530
+ - **Enhanced Clarity**: Removed redundant content and improved information architecture
317
531
 
318
- ### Bug Fixes
532
+ ### 💬 Installation Experience Enhancements
319
533
 
320
- - remove unneeded files ([c48f200](https://github.com/bmadcode/BMAD-METHOD/commit/c48f200727384f37a42f4c6b1a946cb90f2445fe))
534
+ **Custom Installation Messages:**
321
535
 
322
- ### Features
536
+ - **Configurable Intro/Outro Messages**: New install-messages.yaml file for customizable installation messages
537
+ - **Professional Installation Flow**: Custom welcome messages and completion notifications
538
+ - **Module-Specific Messaging**: Tailored messages for different installation contexts
539
+ - **Enhanced User Experience**: More informative and personalized installation process
323
540
 
324
- - massive installer improvement update ([c151bda](https://github.com/bmadcode/BMAD-METHOD/commit/c151bda93833aa310ccc7c0eabcf483376f9e82a))
541
+ **Core Module Improvements:**
325
542
 
326
- # [4.20.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.19.2...v4.20.0) (2025-06-29)
543
+ - **Always Ask Questions**: Core module now always prompts for configuration (no accept defaults)
544
+ - **Better User Engagement**: Ensures users actively configure their installation
545
+ - **Improved Configuration Accuracy**: Reduces accidental acceptance of defaults
327
546
 
328
- ### Features
547
+ ### 🔧 Upgrade & Configuration Management
329
548
 
330
- - Massive documentation refactor, added explanation of the new expanded role of the QA agent that will make your code quality MUCH better. 2 new diagram clearly explain the role of the pre dev ideation cycle (prd and architecture) and the details of how the dev cycle works. ([c881dcc](https://github.com/bmadcode/BMAD-METHOD/commit/c881dcc48ff827ddfe8653aa364a021a66ce66eb))
549
+ **Two-Version Auto Upgrade:**
331
550
 
332
- ## [4.19.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.19.1...v4.19.2) (2025-06-28)
551
+ - **Smarter Upgrade Logic**: Automatic upgrades now span 2 versions (e.g., .16 → .18)
552
+ - **Config Variable Preservation**: Ensures all configuration variables are retained during quick updates
553
+ - **Seamless Updates**: Quick updates now preserve custom settings properly
554
+ - **Enhanced Upgrade Safety**: Better handling of configuration across version boundaries
333
555
 
334
- ### Bug Fixes
556
+ ### 🤖 Workflow Improvements
335
557
 
336
- - docs update and correction ([2408068](https://github.com/bmadcode/BMAD-METHOD/commit/240806888448bb3a42acfd2f209976d489157e21))
558
+ **Quick-Dev Workflow Refactor (PR #1182):**
337
559
 
338
- ## [4.19.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.19.0...v4.19.1) (2025-06-28)
560
+ - **Sharded Format Conversion**: Converted quick-dev workflow to modern step-file format
561
+ - **Adversarial Review Integration**: Added comprehensive self-check and adversarial review steps
562
+ - **Enhanced Quality Assurance**: 6-step process with mode detection, context gathering, execution, self-check, review, and resolution
563
+ - **578 New Lines Added**: Significant expansion of quick-dev capabilities
339
564
 
340
- ### Bug Fixes
565
+ **BMGD Workflow Fixes:**
341
566
 
342
- - discord link ([2ea806b](https://github.com/bmadcode/BMAD-METHOD/commit/2ea806b3af58ad37fcb695146883a9cd3003363d))
567
+ - **workflow-status Filename Correction**: Fixed incorrect filename references (PR #1172)
568
+ - **sprint-planning Update**: Added workflow-status update to game-architecture completion
569
+ - **Path Corrections**: Resolved dead references and syntax errors (PR #1164)
343
570
 
344
- # [4.19.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.18.0...v4.19.0) (2025-06-28)
571
+ ### 🎨 Code Quality & Refactoring
345
572
 
346
- ### Bug Fixes
573
+ **Persona Streamlining (PR #1167):**
347
574
 
348
- - expansion install config ([50d17ed](https://github.com/bmadcode/BMAD-METHOD/commit/50d17ed65d40f6688f3b6e62732fb2280b6b116e))
575
+ - **Quick-Flow-Solo-Dev Persona**: Streamlined for clarity and accuracy
576
+ - **Improved Agent Behavior**: More focused and efficient solo development support
349
577
 
350
- ### Features
578
+ **Package Management:**
351
579
 
352
- - install for ide now sets up rules also for expansion agents! ([b82978f](https://github.com/bmadcode/BMAD-METHOD/commit/b82978fd38ea789a799ccc1373cfb61a2001c1e0))
580
+ - **package-lock.json Sync**: Ensured version consistency (PR #1168)
581
+ - **Dependency Cleanup**: Reduced package-lock bloat significantly
353
582
 
354
- # [4.18.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.17.0...v4.18.0) (2025-06-28)
583
+ **Prettier Configuration:**
355
584
 
356
- ### Features
585
+ - **Markdown Underscore Protection**: Prettier will no longer mess up underscores in markdown files
586
+ - **Disabled Auto-Fix**: Markdown formatting issues now handled more intelligently
587
+ - **Better Code Formatting**: Improved handling of special characters in documentation
357
588
 
358
- - expansion teams can now include core agents and include their assets automatically ([c70f1a0](https://github.com/bmadcode/BMAD-METHOD/commit/c70f1a056b0f6e3c805096ee5d27f0a3640fb00c))
359
- - remove hardcoding from installer for agents, improve expansion pack installation to its own locations, common files moved to common folder ([95e833b](https://github.com/bmadcode/BMAD-METHOD/commit/95e833beebc3a60f73a7a1c67d534c8eb6bf48fd))
589
+ ### 📚 Documentation Updates
360
590
 
361
- # [4.17.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.16.1...v4.17.0) (2025-06-27)
591
+ **Sponsor Attribution:**
362
592
 
363
- ### Features
593
+ - **DigitalOcean Sponsorship**: Added attribution for DigitalOcean support (PR #1162)
364
594
 
365
- - add GEMINI.md to agent context files ([#272](https://github.com/bmadcode/BMAD-METHOD/issues/272)) ([b557570](https://github.com/bmadcode/BMAD-METHOD/commit/b557570081149352e4efbef8046935650f6ecea1))
595
+ **Content Reorganization:**
366
596
 
367
- ## [4.16.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.16.0...v4.16.1) (2025-06-26)
597
+ - **Removed Unused Docs**: Eliminated obsolete documentation files
598
+ - **Consolidated References**: Merged and reorganized technical references
599
+ - **Enhanced README Files**: Improved module and workflow documentation
368
600
 
369
- ### Bug Fixes
601
+ ### 🧹 Cleanup & Optimization
370
602
 
371
- - remove accidental folder add ([b1c2de1](https://github.com/bmadcode/BMAD-METHOD/commit/b1c2de1fb58029f68e021faa90cd5d5faf345198))
603
+ **File Organization:**
372
604
 
373
- # [4.16.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.15.0...v4.16.0) (2025-06-26)
605
+ - **Removed Asterisk Insertion**: Eliminated unwanted asterisk insertions into agent files
606
+ - **Removed Unused Commands**: Cleaned up deprecated command references
607
+ - **Consolidated Duplication**: Reduced code duplication across multiple files
608
+ - **Removed Unneeded Folders**: Cleaned up temporary and obsolete directory structures
374
609
 
375
- ### Features
610
+ ### 📊 Statistics
376
611
 
377
- - repo builds all rules sets for supported ides for easy copy if desired ([ea945bb](https://github.com/bmadcode/BMAD-METHOD/commit/ea945bb43f6ea50594910b954c72e79f96a8504c))
612
+ - **23 commits** since alpha.19
613
+ - **90+ workflow files** updated with new path configurations
614
+ - **3,100+ lines of documentation** removed and reorganized
615
+ - **578 lines added** to quick-dev workflow with adversarial review
616
+ - **Major architectural improvement** to content organization
378
617
 
379
- # [4.15.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.14.1...v4.15.0) (2025-06-26)
618
+ ## [6.0.0-alpha.19]
380
619
 
381
- ### Features
620
+ **Release: December 18, 2025**
382
621
 
383
- - Add Gemini CLI Integration ([#271](https://github.com/bmadcode/BMAD-METHOD/issues/271)) ([44b9d7b](https://github.com/bmadcode/BMAD-METHOD/commit/44b9d7bcb5cbb6de5a15d8f2ec7918d186ac9576))
622
+ ### 🐛 Bug Fixes
384
623
 
385
- ## [4.14.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.14.0...v4.14.1) (2025-06-26)
624
+ **Installer Stability:**
386
625
 
387
- ### Bug Fixes
626
+ - **Fixed \_bmad Folder Stutter**: Resolved issue with duplicate \_bmad folder creation when applying agent custom files
627
+ - **Cleaner Installation**: Removed unnecessary backup file that was causing bloat in the installer
628
+ - **Streamlined Agent Customization**: Fixed path handling for agent custom files to prevent folder duplication
388
629
 
389
- - add updated web builds ([6dabbcb](https://github.com/bmadcode/BMAD-METHOD/commit/6dabbcb670ef22708db6c01dac82069547ca79d6))
630
+ ### 📊 Statistics
390
631
 
391
- # [4.14.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.13.0...v4.14.0) (2025-06-25)
632
+ - **3 files changed** with critical fix
633
+ - **3,688 lines removed** by eliminating backup files
634
+ - **Improved installer performance** and stability
392
635
 
393
- ### Features
636
+ ---
394
637
 
395
- - enhance QA agent as senior developer with code review capabilities and major brownfield improvements ([3af3d33](https://github.com/bmadcode/BMAD-METHOD/commit/3af3d33d4a40586479a382620687fa99a9f6a5f7))
638
+ ## [6.0.0-alpha.18]
396
639
 
397
- # [4.13.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.12.0...v4.13.0) (2025-06-24)
640
+ **Release: December 18, 2025**
398
641
 
399
- ### Features
642
+ ### 🎮 BMGD Module - Complete Game Development Module Updated
400
643
 
401
- - **ide-setup:** add support for Cline IDE and configuration rules ([#262](https://github.com/bmadcode/BMAD-METHOD/issues/262)) ([913dbec](https://github.com/bmadcode/BMAD-METHOD/commit/913dbeced60ad65086df6233086d83a51ead81a9))
644
+ **Massive BMGD Overhaul:**
402
645
 
403
- # [4.12.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.11.0...v4.12.0) (2025-06-23)
646
+ - **New Game QA Agent (GLaDOS)**: Elite Game QA Architect with test automation specialization
647
+ - Engine-specific expertise: Unity, Unreal, Godot testing frameworks
648
+ - Comprehensive knowledge base with 15+ testing topics
649
+ - Complete testing workflows: test-framework, test-design, automate, playtest-plan, performance-test, test-review
404
650
 
405
- ### Features
651
+ - **New Game Solo Dev Agent (Indie)**: Rapid prototyping and iteration specialist
652
+ - Quick-flow workflows optimized for solo/small team development
653
+ - Streamlined development process for indie game creators
406
654
 
407
- - **dev-agent:** add quality gates to prevent task completion with failing validations ([#261](https://github.com/bmadcode/BMAD-METHOD/issues/261)) ([45110ff](https://github.com/bmadcode/BMAD-METHOD/commit/45110ffffe6d29cc08e227e22a901892185dfbd2))
655
+ - **Production Workflow Alignment**: BMGD 4-production now fully aligned with BMM 4-implementation
656
+ - Removed obsolete workflows: story-done, story-ready, story-context, epic-tech-context
657
+ - Added sprint-status workflow for project tracking
658
+ - All workflows updated as standalone with proper XML instructions
408
659
 
409
- # [4.11.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.10.3...v4.11.0) (2025-06-21)
660
+ **Game Testing Architecture:**
410
661
 
411
- ### Bug Fixes
662
+ - **Complete Testing Knowledge Base**: 15 comprehensive testing guides covering:
663
+ - Engine-specific: Unity (TF 1.6.0), Unreal, Godot testing
664
+ - Game-specific: Playtesting, balance, save systems, multiplayer
665
+ - Platform: Certification (TRC/XR), localization, input systems
666
+ - QA Fundamentals: Automation, performance, regression, smoke testing
412
667
 
413
- - resolve web bundles directory path when using relative paths in NPX installer ([5c8485d](https://github.com/bmadcode/BMAD-METHOD/commit/5c8485d09ffec60ad4965ced62f4595890cb7535))
668
+ **New Workflows & Features:**
414
669
 
415
- ### Features
670
+ - **workflow-status**: Multi-mode status checker for game projects
671
+ - Game-specific project levels (Game Jam → AAA)
672
+ - Support for gamedev and quickflow paths
673
+ - Project initialization workflow
416
674
 
417
- - add markdown-tree integration for document sharding ([540578b](https://github.com/bmadcode/BMAD-METHOD/commit/540578b39d1815e41e11f0e87545de3f09ee54e1))
675
+ - **create-tech-spec**: Game-focused technical specification workflow
676
+ - Engine-aware (Unity/Unreal/Godot) specifications
677
+ - Performance and gameplay feel considerations
418
678
 
419
- ## [4.10.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.10.2...v4.10.3) (2025-06-20)
679
+ - **Enhanced Documentation**: Complete documentation suite with 9 guides
680
+ - agents-guide.md: Reference for all 6 agents
681
+ - workflows-guide.md: Complete workflow documentation
682
+ - game-types-guide.md: 24 game type templates
683
+ - quick-flow-guide.md: Rapid development guide
684
+ - Comprehensive troubleshooting and glossary
420
685
 
421
- ### Bug Fixes
686
+ ### 🤖 Agent Management Improved
422
687
 
423
- - bundle update ([2cf3ba1](https://github.com/bmadcode/BMAD-METHOD/commit/2cf3ba1ab8dd7e52584bef16a96e65e7d2513c4f))
688
+ **Agent Recompile Feature:**
424
689
 
425
- ## [4.10.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.10.1...v4.10.2) (2025-06-20)
690
+ - **New Menu Item**: Added "Recompile Agents" option to the installer menu
691
+ - **Selective Compilation**: Recompile only agents without full module upgrade
692
+ - **Faster Updates**: Quick agent updates without complete reinstallation
693
+ - **Customization Integration**: Automatically applies customizations during recompile
426
694
 
427
- ### Bug Fixes
695
+ **Agent Customization Enhancement:**
428
696
 
429
- - file formatting ([c78a35f](https://github.com/bmadcode/BMAD-METHOD/commit/c78a35f547459b07a15d94c827ec05921cd21571))
697
+ - **Complete Field Support**: ALL fields from agent customization YAML are now properly injected
698
+ - **Deep Merge Implementation**: Customizations now properly override all agent properties
699
+ - **Persistent Customizations**: Custom settings survive updates and recompiles
700
+ - **Enhanced Flexibility**: Support for customizing metadata, persona, menu items, and workflows
430
701
 
431
- ## [4.10.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.10.0...v4.10.1) (2025-06-20)
702
+ ### 🔧 Installation & Module Management
432
703
 
433
- ### Bug Fixes
704
+ **Custom Module Installation:**
434
705
 
435
- - SM sometimes would skip the rest of the epic stories, fixed ([1148b32](https://github.com/bmadcode/BMAD-METHOD/commit/1148b32fa97586d2f86d07a70ffbf9bb8c327261))
706
+ - **Enhanced Module Addition**: Modify install now supports adding custom modules even if none were originally installed
707
+ - **Flexible Module Management**: Easy addition and removal of custom modules post-installation
708
+ - **Improved Manifest Tracking**: Better tracking of custom vs core modules
436
709
 
437
- # [4.10.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.9.2...v4.10.0) (2025-06-19)
710
+ **Quality Improvements:**
438
711
 
439
- ### Features
712
+ - **Comprehensive Code Review**: Fixed 20+ issues identified in PR review
713
+ - **Type Validation**: Added proper type checking for configuration values
714
+ - **Path Security**: Enhanced path traversal validation for better security
715
+ - **Documentation Updates**: All documentation updated to reflect new features
440
716
 
441
- - Core Config and doc sharding is now optional in v4 ([ff6112d](https://github.com/bmadcode/BMAD-METHOD/commit/ff6112d6c2f822ed22c75046f5a14f05e36041c2))
717
+ ### 📊 Statistics
442
718
 
443
- ## [4.9.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.9.1...v4.9.2) (2025-06-19)
719
+ - **178 files changed** with massive BMGD expansion
720
+ - **28,350+ lines added** across testing documentation and workflows
721
+ - **2 new agents** added to BMGD module
722
+ - **15 comprehensive testing guides** created
723
+ - **Complete alignment** between BMGD and BMM production workflows
444
724
 
445
- ### Bug Fixes
725
+ ### 🌟 Key Highlights
446
726
 
447
- - bad brownfield yml ([09d2ad6](https://github.com/bmadcode/BMAD-METHOD/commit/09d2ad6aea187996d0a2e1dff27d9bf7e3e6dc06))
727
+ 1. **BMGD Module Revolution**: Complete overhaul with professional game development workflows
728
+ 2. **Game Testing Excellence**: Comprehensive testing architecture for all major game engines
729
+ 3. **Agent Management**: New recompile feature allows quick agent updates without full reinstall
730
+ 4. **Full Customization Support**: All agent fields now customizable via YAML
731
+ 5. **Industry-Ready Documentation**: Professional-grade guides for game development teams
448
732
 
449
- ## [4.9.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.9.0...v4.9.1) (2025-06-19)
733
+ ---
450
734
 
451
- ### Bug Fixes
735
+ ## [6.0.0-alpha.17]
452
736
 
453
- - dist bundles updated ([d9a989d](https://github.com/bmadcode/BMAD-METHOD/commit/d9a989dbe50da62cf598afa07a8588229c56b69c))
737
+ **Release: December 16, 2025**
454
738
 
455
- # [4.9.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.8.0...v4.9.0) (2025-06-19)
739
+ ### 🚀 Revolutionary Installer Overhaul
456
740
 
457
- ### Features
741
+ **Unified Installation Experience:**
458
742
 
459
- - dev can use debug log configured in core-config.yaml ([0e5aaf0](https://github.com/bmadcode/BMAD-METHOD/commit/0e5aaf07bbc6fd9f2706ea26e35f5f38fd72147a))
743
+ - **Streamlined Module Installation**: Completely redesigned installer with unified flow for both core and custom content
744
+ - **Single Install Panel**: Eliminated disjointed clearing between modules for smoother, more intuitive installation
745
+ - **Quick Default Selection**: New quick install feature with default selections for faster setup of selected modules
746
+ - **Enhanced UI/UX**: Improved question order, reduced verbose output, and cleaner installation interface
747
+ - **Logical Question Flow**: Reorganized installer questions to follow natural progression and user expectations
460
748
 
461
- # [4.8.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.7.0...v4.8.0) (2025-06-19)
749
+ **Custom Content Installation Revolution:**
462
750
 
463
- ### Bug Fixes
751
+ - **Full Custom Content Support**: Re-enabled complete custom content generation and sharing through the installer
752
+ - **Custom Module Tracking**: Manifest now tracks custom modules separately to ensure they're always installed from the custom cache
753
+ - **Custom Installation Order**: Custom modules now install after core modules for better dependency management
754
+ - **Quick Update with Custom Content**: Quick update now properly retains and updates custom content
755
+ - **Agent Customization Integration**: Customizations are now applied during quick updates and agent compilation
464
756
 
465
- - installer has fast v4 update option now to keep the bmad method up to date with changes easily without breaking any customizations from the user. The SM and DEV are much more configurable to find epics stories and architectureal information when the prd and architecture are deviant from v4 templates and/or have not been sharded. so a config will give the user the option to configure the SM to use the full large documents or the sharded versions! ([aea7f3c](https://github.com/bmadcode/BMAD-METHOD/commit/aea7f3cc86e749d25ed18bed761dc2839023b3b3))
466
- - prevent double installation when updating v4 ([af0e767](https://github.com/bmadcode/BMAD-METHOD/commit/af0e767ecf1b91d41f114e1a5d7bf5da08de57d6))
467
- - resolve undefined config properties in performUpdate ([0185e01](https://github.com/bmadcode/BMAD-METHOD/commit/0185e012bb579948a4de1ea3950db4e399761619))
468
- - update file-manager to properly handle YAML manifest files ([724cdd0](https://github.com/bmadcode/BMAD-METHOD/commit/724cdd07a199cb12b82236ad34ca1a0c61eb43e2))
757
+ ### 🧠 Revolutionary Agent Memory & Visibility System
469
758
 
470
- ### Features
759
+ **Breaking Through Dot-Folder Limitations:**
471
760
 
472
- - add early v4 detection for improved update flow ([29e7bbf](https://github.com/bmadcode/BMAD-METHOD/commit/29e7bbf4c5aa7e17854061a5ee695f44324f307a))
473
- - add file resolution context for IDE agents ([74d9bb4](https://github.com/bmadcode/BMAD-METHOD/commit/74d9bb4b2b70a341673849a1df704f6eac70c3de))
474
- - update web builder to remove IDE-specific properties from agent bundles ([2f2a1e7](https://github.com/bmadcode/BMAD-METHOD/commit/2f2a1e72d6a70f8127db6ba58a563d0f289621c3))
761
+ - **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
762
+ - **Universal Content Visibility**: Underscore folders are treated as regular content, ensuring full AI agent access to all BMAD resources and configurations
763
+ - **Agent Memory Architecture**: Rolled out comprehensive agent memory support for installed agents with `-sidecar` folders
764
+ - **Persistent Agent Learning**: Sidecar content installs to `_bmad/_memory`, giving each agent the ability to learn and remember important information specific to its role
475
765
 
476
- # [4.7.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.6.3...v4.7.0) (2025-06-19)
766
+ **Content Location Strategy:**
477
767
 
478
- ### Features
768
+ - **Standardized Memory Location**: All sidecar content now uses `_bmad/_memory` as the unified location for agent memories
769
+ - **Segregated Output System**: New architecture supports differentiating between ephemeral Phase 4 artifacts and long-term documentation
770
+ - **Forward Compatibility**: Existing installations continue working with content in docs folder, with optimization coming in next release
771
+ - **Configuration Cleanup**: Renamed `_cfg` to `_config` for clearer naming conventions
772
+ - **YAML Library Consolidation**: Reduced dependency to use only one YAML library for better stability
479
773
 
480
- - extensive bmad-kb for web orchestrator to be much more helpful ([e663a11](https://github.com/bmadcode/BMAD-METHOD/commit/e663a1146b89e7b5078d9726649a51ae5624da46))
774
+ ### 🎯 Future-Ready Architecture
481
775
 
482
- ## [4.6.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.6.2...v4.6.3) (2025-06-19)
776
+ **Content Organization Preview:**
483
777
 
484
- ### Bug Fixes
778
+ - **Phase 4 Artifact Segregation**: Infrastructure ready for separating ephemeral workflow artifacts from permanent documentation
779
+ - **Planning vs Implementation Docs**: New system will differentiate between planning artifacts and long-term project documentation
780
+ - **Backward Compatibility**: Current installs maintain full functionality while preparing for optimized content organization
781
+ - **Quick Update Path**: Tomorrow's quick update will fully optimize all BMM workflows to use new segregated output locations
485
782
 
486
- - SM fixed file resolution issue in v4 ([61ab116](https://github.com/bmadcode/BMAD-METHOD/commit/61ab1161e59a92d657ab663082abcaf26729fa6b))
783
+ ### 🎯 Sample Modules & Documentation
487
784
 
488
- ## [4.6.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.6.1...v4.6.2) (2025-06-19)
785
+ **Comprehensive Examples:**
489
786
 
490
- ### Bug Fixes
787
+ - **Sample Unitary Module**: Complete example with commit-poet agent and quiz-master workflow
788
+ - **Sample Wellness Module**: Meditation guide and wellness companion agents demonstrating advanced patterns
789
+ - **Enhanced Documentation**: Updated README files and comprehensive installation guides
790
+ - **Custom Content Creation Guides**: Step-by-step documentation for creating and sharing custom modules
491
791
 
492
- - installer upgrade path fixed ([bd6a558](https://github.com/bmadcode/BMAD-METHOD/commit/bd6a55892906077a700f488bde175b57e846729d))
792
+ ### 🔧 Bug Fixes & Optimizations
493
793
 
494
- ## [4.6.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.6.0...v4.6.1) (2025-06-19)
794
+ **Installer Improvements:**
495
795
 
496
- ### Bug Fixes
796
+ - **Fixed Duplicate Entry Issue**: Resolved duplicate entries in files manifest
797
+ - **Reduced Log Noise**: Less verbose logging during installation for cleaner user experience
798
+ - **Menu Wording Updates**: Improved menu text for better clarity and understanding
799
+ - **Fixed Quick Install**: Resolved issues with quick installation functionality
497
800
 
498
- - expansion pack builder now includes proper dependencies from core as needed, and default template file name save added to template llm instructions ([9dded00](https://github.com/bmadcode/BMAD-METHOD/commit/9dded003565879901246885d60787695e0d0b7bd))
801
+ **Code Quality:**
499
802
 
500
- # [4.6.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.5.1...v4.6.0) (2025-06-18)
803
+ - **Minor Code Cleanup**: General cleanup and refactoring throughout the codebase
804
+ - **Removed Unused Code**: Cleaned up deprecated and unused functionality
805
+ - **Release Workflow Restoration**: Fixed automated release workflow for v6
501
806
 
502
- ### Bug Fixes
807
+ **BMM Phase 4 Workflow Improvements:**
503
808
 
504
- - orchestractor yml ([3727cc7](https://github.com/bmadcode/BMAD-METHOD/commit/3727cc764a7c7295932ff872e2e5be8b4c4e6859))
809
+ - **Sprint Status Enhancement**: Improved sprint-status validation with interactive correction for unknown values and better epic status handling
810
+ - **Story Status Standardization**: Normalized all story status references to lowercase kebab-case (ready-for-dev, in-progress, review, done)
811
+ - **Removed Stale Story State**: Eliminated deprecated 'drafted' story state - stories now go directly from creation to ready-for-dev
812
+ - **Code Review Clarity**: Improved code review completion message from "Story is ready for next work!" to "Code review complete!" for better clarity
813
+ - **Risk Detection Rules**: Rewrote risk detection rules for better LLM clarity and fixed warnings vs risks naming inconsistency
505
814
 
506
- ### Features
815
+ ### 📊 Statistics
507
816
 
508
- - removed some templates that are not ready for use ([b03aece](https://github.com/bmadcode/BMAD-METHOD/commit/b03aece79e52cfe9585225de5aff7659293d9295))
817
+ - **40+ commits** since alpha.16
818
+ - **Major installer refactoring** with complete UX overhaul
819
+ - **2 new sample modules** with comprehensive examples
820
+ - **Full custom content support** re-enabled and improved
509
821
 
510
- ## [4.5.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.5.0...v4.5.1) (2025-06-18)
822
+ ### 🌟 Key Highlights
511
823
 
512
- ### Bug Fixes
824
+ 1. **Installer Revolution**: The installation system has been completely overhauled for better user experience, reliability, and speed
825
+ 2. **Custom Content Freedom**: Users can now easily create, share, and install custom content through the streamlined installer
826
+ 3. **AI Visibility Breakthrough**: Migration from `.bmad` to `_bmad` ensures LLMs can access all BMAD content (dot folders are commonly ignored by AI systems)
827
+ 4. **Agent Memory System**: Rolled out persistent agent memory support - agents with `-sidecar` folders can now learn and remember important information in `_bmad/_memory`
828
+ 5. **Quick Default Selection**: Installation is now faster with smart default selections for popular configurations
829
+ 6. **Future-Ready Architecture**: Infrastructure in place for segregating ephemeral artifacts from permanent documentation (full optimization coming in next release)
513
830
 
514
- - docs had some ide specific errors ([a954c7e](https://github.com/bmadcode/BMAD-METHOD/commit/a954c7e24284a6637483a9e47fc63a8f9d7dfbad))
831
+ ## [6.0.0-alpha.16]
515
832
 
516
- # [4.5.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.4.2...v4.5.0) (2025-06-17)
833
+ **Release: December 10, 2025**
517
834
 
518
- ### Bug Fixes
835
+ ### 🔧 Temporary Changes & Fixes
519
836
 
520
- - installer relative path issue for npx resolved ([8b9bda5](https://github.com/bmadcode/BMAD-METHOD/commit/8b9bda5639ec882f1887f20b4610a6c2183042c6))
521
- - readme updated to indicate move of web-bundles ([7e9574f](https://github.com/bmadcode/BMAD-METHOD/commit/7e9574f571f41ae5003a1664d999c282dd7398be))
522
- - temp disable yml linting ([296c2fb](https://github.com/bmadcode/BMAD-METHOD/commit/296c2fbcbd9ac40b3c68633ba7454aacf1e31204))
523
- - update documentation and installer to reflect .roomodes file location in project root ([#236](https://github.com/bmadcode/BMAD-METHOD/issues/236)) ([bd7f030](https://github.com/bmadcode/BMAD-METHOD/commit/bd7f03016bfa13e39cb39aedb24db9fccbed18a7))
837
+ **Installation Improvements:**
524
838
 
525
- ### Features
839
+ - **Temporary Custom Content Installation Disable**: Custom content installation temporarily disabled to improve stability
840
+ - **BMB Workflow Path Fixes**: Fixed numerous path references in BMB workflows to ensure proper step file resolution
841
+ - **Package Updates**: Updated dependencies for improved security and performance
526
842
 
527
- - bmad the creator expansion with some basic tools for modifying bmad method ([2d61df4](https://github.com/bmadcode/BMAD-METHOD/commit/2d61df419ac683f5691b6ee3fab81174f3d2cdde))
528
- - can now select different web bundles from what ide agents are installed ([0c41633](https://github.com/bmadcode/BMAD-METHOD/commit/0c41633b07d7dd4d7dda8d3a14d572eac0dcbb47))
529
- - installer offers option to install web bundles ([e934769](https://github.com/bmadcode/BMAD-METHOD/commit/e934769a5e35dba99f59b4e2e6bb49131c43a526))
530
- - robust installer ([1fbeed7](https://github.com/bmadcode/BMAD-METHOD/commit/1fbeed75ea446b0912277cfec376ee34f0b3d853))
843
+ **Path Resolution Improvements:**
531
844
 
532
- ## [4.4.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.4.1...v4.4.2) (2025-06-17)
845
+ - **BMB Agent Builder Fixes**: Corrected path references in step files and documentation
846
+ - **Workflow Path Standardization**: Ensured consistent path handling across all BMB workflows
847
+ - **Documentation References**: Updated internal documentation links and references
533
848
 
534
- ### Bug Fixes
849
+ **Cleanup Changes:**
535
850
 
536
- - single agent install and team installation support ([18a382b](https://github.com/bmadcode/BMAD-METHOD/commit/18a382baa4e4a82db20affa3525eb951af1081e0))
851
+ - **Example Modules Removal**: Temporarily removed example modules to prevent accidental installation
852
+ - **Memory Management**: Improved sidecar file handling for custom modules
537
853
 
538
- ## [4.4.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.4.0...v4.4.1) (2025-06-17)
854
+ ### 📊 Statistics
539
855
 
540
- ### Bug Fixes
856
+ - **336 files changed** with path fixes and improvements
857
+ - **4 commits** since alpha.15
541
858
 
542
- - installer no longer suggests the bmad-method directory as defauly ([e2e1658](https://github.com/bmadcode/BMAD-METHOD/commit/e2e1658c07f6957fea4e3aa9e7657a650205ee71))
859
+ ---
543
860
 
544
- # [4.4.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.3.0...v4.4.0) (2025-06-16)
861
+ ## [6.0.0-alpha.15]
545
862
 
546
- ### Features
863
+ **Release: December 7, 2025**
547
864
 
548
- - improve docs, technical preference usage ([764e770](https://github.com/bmadcode/BMAD-METHOD/commit/764e7702b313f34bb13a8bcce3b637699bb2b8ec))
549
- - web bundles updated ([f39b495](https://github.com/bmadcode/BMAD-METHOD/commit/f39b4951e9e37acd7b2bda4124ddd8edb7a6d0df))
865
+ ### 🔧 Module Installation Standardization
550
866
 
551
- # [5.0.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v5.0.0) (2025-06-15)
867
+ **Unified Module Configuration:**
552
868
 
553
- ### Bug Fixes
869
+ - **module.yaml Standard**: All modules now use `module.yaml` instead of `_module-installer/install-config.yaml` for consistent configuration (BREAKING CHANGE)
870
+ - **Universal Installer**: Both core and custom modules now use the same installer with consistent behavior
871
+ - **Streamlined Module Creation**: Module builder templates updated to use new module.yaml standard
872
+ - **Enhanced Module Discovery**: Improved module caching and discovery mechanisms
554
873
 
555
- - add docs ([48ef875](https://github.com/bmadcode/BMAD-METHOD/commit/48ef875f5ec5b0f0211baa43bbc04701e54824f4))
556
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
557
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
558
- - BMAD install creates `.bmad-core/.bmad-core/` directory structure + updates ([#223](https://github.com/bmadcode/BMAD-METHOD/issues/223)) ([28b313c](https://github.com/bmadcode/BMAD-METHOD/commit/28b313c01df41961cebb71fb3bce0fcc7b4b4796))
559
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
560
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
561
- - update dependency resolver to support both yml and yaml code blocks ([ba1e5ce](https://github.com/bmadcode/BMAD-METHOD/commit/ba1e5ceb36f4a0bb204ceee40e92725d3fc57c5f))
562
- - update glob usage to modern async API ([927515c](https://github.com/bmadcode/BMAD-METHOD/commit/927515c0895f94ce6fb0adf7cabe2f978c1ee108))
563
- - update yaml-format.js to use dynamic chalk imports ([b53d954](https://github.com/bmadcode/BMAD-METHOD/commit/b53d954b7aac68d25d688140ace3b98a43fa0e5f))
874
+ **Custom Content Installation Revolution:**
564
875
 
565
- ### Features
876
+ - **Interactive Custom Content Search**: Installer now proactively asks if you have custom content to install
877
+ - **Flexible Location Specification**: Users can indicate custom content location during installation
878
+ - **Improved Custom Module Handler**: Enhanced error handling and debug output for custom installations
879
+ - **Comprehensive Documentation**: New custom-content-installation.md guide (245 lines) replacing custom-agent-installation.md
566
880
 
567
- - enhance installer with multi-IDE support and sync version bumping ([ebfd4c7](https://github.com/bmadcode/BMAD-METHOD/commit/ebfd4c7dd52fd38d71a4b054cd0c5d45a4b5d226))
568
- - improve semantic-release automation and disable manual version bumping ([38a5024](https://github.com/bmadcode/BMAD-METHOD/commit/38a5024026e9588276bc3c6c2b92f36139480ca4))
569
- - sync IDE configurations across all platforms ([b6a2f5b](https://github.com/bmadcode/BMAD-METHOD/commit/b6a2f5b25eaf96841bade4e236fffa2ce7de2773))
570
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
571
- - web bundles include a simplified prd with architecture now for simpler project folderes not needing a full plown architecture doc! ([8773545](https://github.com/bmadcode/BMAD-METHOD/commit/877354525e76cd1c9375e009a3a1429633010226))
881
+ ### 🤖 Code Review Integration Expansion
572
882
 
573
- ### BREAKING CHANGES
883
+ **AI Review Tools:**
574
884
 
575
- - Manual version bumping via npm scripts is now disabled. Use conventional commits for automated releases.
885
+ - **CodeRabbit AI Integration**: Added .coderabbit.yaml configuration for automated code review
886
+ - **Raven's Verdict PR Review Tool**: New PR review automation tool (297 lines of documentation)
887
+ - **Review Path Configuration**: Proper exclusion patterns for node_modules and generated files
888
+ - **Review Documentation**: Comprehensive usage guidance and skip conditions for PRs
576
889
 
577
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
890
+ ### 📚 Documentation Improvements
578
891
 
579
- ### Bug Fixes
892
+ **Documentation Restructuring:**
580
893
 
581
- - add docs ([48ef875](https://github.com/bmadcode/BMAD-METHOD/commit/48ef875f5ec5b0f0211baa43bbc04701e54824f4))
582
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
583
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
584
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
585
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
894
+ - **Code of Conduct**: Moved to .github/ folder following GitHub standards
895
+ - **Gem Creation Link**: Updated to point to Gemini Gem manager instead of deprecated interface
896
+ - **Example Custom Content**: Improved README files and disabled example modules to prevent accidental installation
897
+ - **Custom Module Documentation**: Enhanced module installation guides with new YAML structure
586
898
 
587
- ### Features
899
+ ### 🧹 Cleanup & Optimization
588
900
 
589
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
901
+ **Memory Management:**
590
902
 
591
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
903
+ - **Removed Hardcoded .bmad Folders**: Cleaned up demo content to use configurable paths
904
+ - **Sidecar File Cleanup**: Removed old .bmad-user-memory folders from wellness modules
905
+ - **Example Content Organization**: Better organization of example-custom-content directory
592
906
 
593
- ### Bug Fixes
907
+ **Installer Improvements:**
594
908
 
595
- - add docs ([48ef875](https://github.com/bmadcode/BMAD-METHOD/commit/48ef875f5ec5b0f0211baa43bbc04701e54824f4))
596
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
597
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
598
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
599
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
909
+ - **Debug Output Enhancement**: Added informative debug output when installer encounters errors
910
+ - **Custom Module Caching**: Improved caching mechanism for custom module installations
911
+ - **Consistent Behavior**: All modules now behave consistently regardless of custom or core status
600
912
 
601
- ### Features
913
+ ### 📊 Statistics
602
914
 
603
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
915
+ - **77 files changed** with 2,852 additions and 607 deletions
916
+ - **15 commits** since alpha.14
604
917
 
605
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
918
+ ### ⚠️ Breaking Changes
606
919
 
607
- ### Bug Fixes
920
+ 1. **module.yaml Configuration**: All modules must now use `module.yaml` instead of `_module-installer/install-config.yaml`
921
+ - Core modules updated automatically
922
+ - Custom modules will need to rename their configuration file
923
+ - Module builder templates generate new format
608
924
 
609
- - add docs ([48ef875](https://github.com/bmadcode/BMAD-METHOD/commit/48ef875f5ec5b0f0211baa43bbc04701e54824f4))
610
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
611
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
612
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
613
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
925
+ ### 📦 New Dependencies
614
926
 
615
- ### Features
927
+ - No new dependencies added in this release
616
928
 
617
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
929
+ ---
618
930
 
619
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
931
+ ## [6.0.0-alpha.14]
620
932
 
621
- ### Bug Fixes
933
+ **Release: December 7, 2025**
622
934
 
623
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
624
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
625
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
626
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
935
+ ### 🔧 Installation & Configuration Revolution
627
936
 
628
- ### Features
937
+ **Custom Module Installation Overhaul:**
629
938
 
630
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
939
+ - **Simple custom.yaml Installation**: Custom agents and workflows can now be installed with a single YAML file
940
+ - **IDE Configuration Preservation**: Upgrades will no longer delete custom modules, agents, and workflows from IDE configuration
941
+ - **Removed Legacy agent-install Command**: Streamlined installation process (BREAKING CHANGE)
942
+ - **Sidecar File Retention**: Custom sidecar files are preserved during updates
943
+ - **Flexible Agent Sidecar Locations**: Fully configurable via config options instead of hardcoded paths
631
944
 
632
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
945
+ **Module Discovery System Transformation:**
633
946
 
634
- ### Bug Fixes
947
+ - **Recursive Agent Discovery**: Deep scanning for agents across entire project structure
948
+ - **Enhanced Manifest Generation**: Comprehensive scanning of all installed modules
949
+ - **Nested Agent Support**: Fixed nested agents appearing in CLI commands
950
+ - **Module Reinstall Fix**: Prevented modules from showing as obsolete during reinstall
635
951
 
636
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
637
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
638
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
639
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
952
+ ### 🏗️ Advanced Builder Features
640
953
 
641
- ### Features
954
+ **Workflow Builder Evolution:**
642
955
 
643
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
956
+ - **Continuable Workflows**: Create workflows with sophisticated branching and continuation logic
957
+ - **Template LOD Options**: Level of Detail output options for flexible workflow generation
958
+ - **Step-Based Architecture**: Complete conversion to granular step-file system
959
+ - **Enhanced Creation Process**: Improved workflow creation with better template handling
644
960
 
645
- # [4.2.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v4.2.0) (2025-06-15)
961
+ **Module Builder Revolution:**
646
962
 
647
- ### Bug Fixes
963
+ - **11-Step Module Creation**: Comprehensive step-by-step module generation process
964
+ - **Production-Ready Templates**: Complete templates for agents, installers, and workflow plans
965
+ - **Built-in Validation System**: Ensures module quality and BMad Core compliance
966
+ - **Professional Documentation**: Auto-generated module documentation and structure
648
967
 
649
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
650
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
651
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
652
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
968
+ ### 🚀 BMad Method (BMM) Enhancements
653
969
 
654
- ### Features
970
+ **Workflow Improvements:**
655
971
 
656
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
972
+ - **Brownfield PRD Support**: Enhanced PRD workflow for existing project integration
973
+ - **Sprint Status Command**: New workflow for tracking development progress
974
+ - **Step-Based Format**: Improved continue functionality across all workflows
975
+ - **Quick-Spec-Flow Documentation**: Rapid development specification flows
657
976
 
658
- # [1.1.0](https://github.com/bmadcode/BMAD-METHOD/compare/v1.0.1...v1.1.0) (2025-06-15)
977
+ **Documentation Revolution:**
659
978
 
660
- ### Features
979
+ - **Comprehensive Troubleshooting Guide**: 680-line detailed troubleshooting documentation
980
+ - **Quality Check Integration**: Added markdownlint-cli2 for markdown quality assurance
981
+ - **Enhanced Test Architecture**: Improved CI/CD templates and testing workflows
661
982
 
662
- - update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
983
+ ### 🌟 New Features & Integrations
663
984
 
664
- ## [1.0.1](https://github.com/bmadcode/BMAD-METHOD/compare/v1.0.0...v1.0.1) (2025-06-15)
985
+ **Kiro-Cli Installer:**
665
986
 
666
- ### Bug Fixes
987
+ - **Intelligent Routing**: Smart routing to quick-dev workflow
988
+ - **BMad Core Compliance**: Full compliance with BMad standards
989
+
990
+ **Discord Notifications:**
991
+
992
+ - **Compact Format**: Streamlined plain-text notifications
993
+ - **Bug Fixes**: Resolved notification delivery issues
994
+
995
+ **Example Mental Wellness Module (MWM):**
996
+
997
+ - **Complete Module Example**: Demonstrates advanced module patterns
998
+ - **Multiple Agents**: CBT Coach, Crisis Navigator, Meditation Guide, Wellness Companion
999
+ - **Workflow Showcase**: Crisis support, daily check-in, meditation, journaling workflows
1000
+
1001
+ ### 🐛 Bug Fixes & Optimizations
1002
+
1003
+ - Fixed version reading from package.json instead of hardcoded fallback
1004
+ - Removed hardcoded years from WebSearch queries
1005
+ - Removed broken build caching mechanism
1006
+ - Enhanced TTS injection summary with tracking and documentation
1007
+ - Fixed CI nvmrc configuration issues
1008
+
1009
+ ### 📊 Statistics
1010
+
1011
+ - **335 files changed** with 17,161 additions and 8,204 deletions
1012
+ - **46 commits** since alpha.13
1013
+
1014
+ ### ⚠️ Breaking Changes
1015
+
1016
+ 1. **Removed agent-install Command**: Migrate to new custom.yaml installation system
1017
+ 2. **Agent Sidecar Configuration**: Now requires explicit config instead of hardcoded paths
1018
+
1019
+ ### 📦 New Dependencies
1020
+
1021
+ - `markdownlint-cli2: ^0.19.1` - Professional markdown linting
1022
+
1023
+ ---
1024
+
1025
+ ## [6.0.0-alpha.13]
1026
+
1027
+ **Release: November 30, 2025**
1028
+
1029
+ ### 🏗️ Revolutionary Workflow Architecture
1030
+
1031
+ - **Step-File System**: Complete conversion to granular step-file architecture with dynamic menu generation
1032
+ - **Phase 4 Transformation**: Simplified architecture with sprint planning integration (Jira, Linear, Trello)
1033
+ - **Performance Improvements**: Eliminated time-based estimates, reduced file loading times
1034
+ - **Legacy Cleanup**: Removed all deprecated workflows for cleaner system
1035
+
1036
+ ### 🤖 Agent System Revolution
1037
+
1038
+ - **Universal Custom Agent Support**: Extended to ALL IDEs including Antigravity and Rovo Dev
1039
+ - **Agent Creation Workflow**: Enhanced with better documentation and parameter clarity
1040
+ - **Multi-Source Discovery**: Agents now check multiple source locations for better discovery
1041
+ - **GitHub Migration**: Integration moved from chatmodes to agents folder
1042
+
1043
+ ### 🧪 Testing Infrastructure
1044
+
1045
+ - **Playwright Utils Integration**: @seontechnologies/playwright-utils across all testing workflows
1046
+ - **TTS Injection System**: Complete text-to-speech integration for voice feedback
1047
+ - **Web Bundle Test Support**: Enabled web bundles for test environments
1048
+
1049
+ ### ⚠️ Breaking Changes
1050
+
1051
+ 1. **Legacy Workflows Removed**: Migrate to new stepwise sharded workflows
1052
+ 2. **Phase 4 Restructured**: Update automation expecting old Phase 4 structure
1053
+ 3. **Agent Compilation Required**: Custom agents must use new creation workflow
1054
+
1055
+ ## [6.0.0-alpha.12]
1056
+
1057
+ **Release: November 19, 2025**
1058
+
1059
+ ### 🐛 Bug Fixes
1060
+
1061
+ - Added missing `yaml` dependency to fix `MODULE_NOT_FOUND` error when running `npx bmad-method install`
1062
+
1063
+ ## [6.0.0-alpha.11]
1064
+
1065
+ **Release: November 18, 2025**
1066
+
1067
+ ### 🚀 Agent Installation Revolution
1068
+
1069
+ - **bmad agent-install CLI**: Interactive agent installation with persona customization
1070
+ - **4 Reference Agents**: commit-poet, journal-keeper, security-engineer, trend-analyst
1071
+ - **Agent Compilation Engine**: YAML → XML with smart handler injection
1072
+ - **60 Communication Presets**: Pure communication styles for agent personas
1073
+
1074
+ ### 📚 BMB Agent Builder Enhancement
1075
+
1076
+ - **Complete Documentation Suite**: 7 new guides for agent architecture and creation
1077
+ - **Expert Agent Sidecar Support**: Multi-file agents with templates and knowledge bases
1078
+ - **Unified Validation**: 160-line checklist shared across workflows
1079
+ - **BMM Agent Voices**: All 9 agents enhanced with distinct communication styles
1080
+
1081
+ ### 🎯 Workflow Architecture Change
1082
+
1083
+ - **Epic Creation Moved**: Now in Phase 3 after Architecture for technical context
1084
+ - **Excalidraw Distribution**: Diagram capabilities moved to role-appropriate agents
1085
+ - **Google Antigravity IDE**: New installer with flattened file naming
1086
+
1087
+ ### ⚠️ Breaking Changes
1088
+
1089
+ 1. **Frame Expert Retired**: Use role-appropriate agents for diagrams
1090
+ 2. **Agent Installation**: New bmad agent-install command replaces manual installation
1091
+ 3. **Epic Creation Phase**: Moved from Phase 2 to Phase 3
1092
+
1093
+ ## [6.0.0-alpha.10]
1094
+
1095
+ **Release: November 16, 2025**
1096
+
1097
+ - **Epics After Architecture**: Major milestone - technically-informed user stories created post-architecture
1098
+ - **Frame Expert Agent**: New Excalidraw specialist with 4 diagram workflows
1099
+ - **Time Estimate Prohibition**: Warnings across 33 workflows acknowledging AI's impact on development speed
1100
+ - **Platform-Specific Commands**: ide-only/web-only fields filter menu items by environment
1101
+ - **Agent Customization**: Enhanced memory/prompts merging via \*.customize.yaml files
1102
+
1103
+ ## [6.0.0-alpha.9]
1104
+
1105
+ **Release: November 12, 2025**
1106
+
1107
+ - **Intelligent File Discovery**: discover_inputs with FULL_LOAD, SELECTIVE_LOAD, INDEX_GUIDED strategies
1108
+ - **3-Track System**: Simplified from 5 levels to 3 intuitive tracks
1109
+ - **Web Bundles Guide**: Comprehensive documentation with 60-80% cost savings strategies
1110
+ - **Unified Output Structure**: Eliminated .ephemeral/ folders - single configurable output folder
1111
+ - **BMGD Phase 4**: Added 10 game development workflows with BMM patterns
1112
+
1113
+ ## [6.0.0-alpha.8]
1114
+
1115
+ **Release: November 9, 2025**
1116
+
1117
+ - **Configurable Installation**: Custom directories with .bmad hidden folder default
1118
+ - **Optimized Agent Loading**: CLI loads from installed files, eliminating duplication
1119
+ - **Party Mode Everywhere**: All web bundles include multi-agent collaboration
1120
+ - **Phase 4 Artifact Separation**: Stories, code reviews, sprint plans configurable outside docs
1121
+ - **Expanded Web Bundles**: All BMM, BMGD, CIS agents bundled with elicitation integration
667
1122
 
668
- - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
1123
+ ## [6.0.0-alpha.7]
669
1124
 
670
- # 1.0.0 (2025-06-15)
1125
+ **Release: November 7, 2025**
1126
+
1127
+ - **Workflow Vendoring**: Web bundler performs automatic cross-module dependency vendoring
1128
+ - **BMGD Module Extraction**: Game development split into standalone 4-phase structure
1129
+ - **Enhanced Dependency Resolution**: Better handling of web_bundle: false workflows
1130
+ - **Advanced Elicitation Fix**: Added missing CSV files to workflow bundles
1131
+ - **Claude Code Fix**: Resolved README slash command installation regression
1132
+
1133
+ ## [6.0.0-alpha.6]
1134
+
1135
+ **Release: November 4, 2025**
1136
+
1137
+ - **Critical Installer Fixes**: Fixed manifestPath error and option display issues
1138
+ - **Conditional Docs Installation**: Optional documentation to reduce production footprint
1139
+ - **Improved Installer UX**: Better formatting with descriptive labels and clearer feedback
1140
+ - **Issue Tracker Cleanup**: Closed 54 legacy v4 issues for focused v6 development
1141
+ - **Contributing Updates**: Removed references to non-existent branches
1142
+
1143
+ ## [6.0.0-alpha.5]
1144
+
1145
+ **Release: November 4, 2025**
1146
+
1147
+ - **3-Track Scale System**: Simplified from 5 levels to 3 intuitive preference-driven tracks
1148
+ - **Elicitation Modernization**: Replaced legacy XML tags with explicit invoke-task pattern
1149
+ - **PM/UX Evolution**: Added November 2025 industry research on AI Agent PMs
1150
+ - **Brownfield Reality Check**: Rewrote Phase 0 with 4 real-world scenarios
1151
+ - **Documentation Accuracy**: All agent capabilities now match YAML source of truth
1152
+
1153
+ ## [6.0.0-alpha.4]
1154
+
1155
+ **Release: November 2, 2025**
1156
+
1157
+ - **Documentation Hub**: Created 18 comprehensive guides (7000+ lines) with professional standards
1158
+ - **Paige Agent**: New technical documentation specialist across all BMM phases
1159
+ - **Quick Spec Flow**: Intelligent Level 0-1 planning with auto-stack detection
1160
+ - **Universal Shard-Doc**: Split large markdown documents with dual-strategy loading
1161
+ - **Intent-Driven Planning**: PRD and Product Brief transformed from template-filling to conversation
1162
+
1163
+ ## [6.0.0-alpha.3]
1164
+
1165
+ **Release: October 2025**
1166
+
1167
+ - **Codex Installer**: Custom prompts in `.codex/prompts/` directory structure
1168
+ - **Bug Fixes**: Various installer and workflow improvements
1169
+ - **Documentation**: Initial documentation structure established
1170
+
1171
+ ## [6.0.0-alpha.0]
1172
+
1173
+ **Release: September 28, 2025**
1174
+
1175
+ - **Lean Core**: Simple common tasks and agents (bmad-web-orchestrator, bmad-master)
1176
+ - **BMad Method (BMM)**: Complete scale-adaptive rewrite supporting projects from small enhancements to massive undertakings
1177
+ - **BoMB**: BMad Builder for creating and converting modules, workflows, and agents
1178
+ - **CIS**: Creative Intelligence Suite for ideation and creative workflows
1179
+ - **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.
1180
+
1181
+ ## [v4.43.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.43.0)
1182
+
1183
+ **Release: August-September 2025 (v4.31.0 - v4.43.1)**
1184
+
1185
+ Focus on stability, ecosystem growth, and professional tooling.
1186
+
1187
+ ### Major Integrations
1188
+
1189
+ - **Codex CLI & Web**: Full Codex integration with web and CLI modes
1190
+ - **Auggie CLI**: Augment Code integration
1191
+ - **iFlow CLI**: iFlow support in installer
1192
+ - **Gemini CLI Custom Commands**: Enhanced Gemini CLI capabilities
1193
+
1194
+ ### Expansion Packs
1195
+
1196
+ - **Godot Game Development**: Complete game dev workflow
1197
+ - **Creative Writing**: Professional writing agent system
1198
+ - **Agent System Templates**: Template expansion pack (Part 2)
1199
+
1200
+ ### Advanced Features
1201
+
1202
+ - **AGENTS.md Generation**: Auto-generated agent documentation
1203
+ - **NPM Script Injection**: Automatic package.json updates
1204
+ - **File Exclusion**: `.bmad-flattenignore` support for flattener
1205
+ - **JSON-only Integration**: Compact integration mode
1206
+
1207
+ ### Quality & Stability
1208
+
1209
+ - **PR Validation Workflow**: Automated contribution checks
1210
+ - **Fork-Friendly CI/CD**: Opt-in mechanism for forks
1211
+ - **Code Formatting**: Prettier integration with pre-commit hooks
1212
+ - **Update Checker**: `npx bmad-method update-check` command
1213
+
1214
+ ### Flattener Improvements
1215
+
1216
+ - Detailed statistics with emoji-enhanced `.stats.md`
1217
+ - Improved project root detection
1218
+ - Modular component architecture
1219
+ - Binary directory exclusions (venv, node_modules, etc.)
1220
+
1221
+ ### Documentation & Community
1222
+
1223
+ - Brownfield document naming consistency fixes
1224
+ - Architecture template improvements
1225
+ - Trademark and licensing clarity
1226
+ - Contributing guidelines refinement
1227
+
1228
+ ### Developer Experience
1229
+
1230
+ - Version synchronization scripts
1231
+ - Manual release workflow enhancements
1232
+ - Automatic release notes generation
1233
+ - Changelog file path configuration
1234
+
1235
+ [View v4.43.1 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.43.1)
1236
+
1237
+ ## [v4.30.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.30.0)
1238
+
1239
+ **Release: July 2025 (v4.21.0 - v4.30.4)**
1240
+
1241
+ Introduction of advanced IDE integrations and command systems.
1242
+
1243
+ ### Claude Code Integration
1244
+
1245
+ - **Slash Commands**: Native Claude Code slash command support for agents
1246
+ - **Task Commands**: Direct task invocation via slash commands
1247
+ - **BMad Subdirectory**: Organized command structure
1248
+ - **Nested Organization**: Clean command hierarchy
1249
+
1250
+ ### Agent Enhancements
1251
+
1252
+ - BMad-master knowledge base loading
1253
+ - Improved brainstorming facilitation
1254
+ - Better agent task following with cost-saving model combinations
1255
+ - Direct commands in agent definitions
1256
+
1257
+ ### Installer Improvements
1258
+
1259
+ - Memory-efficient processing
1260
+ - Clear multi-select IDE prompts
1261
+ - GitHub Copilot support with improved UX
1262
+ - ASCII logo (because why not)
1263
+
1264
+ ### Platform Support
1265
+
1266
+ - Windows compatibility improvements (regex fixes, newline handling)
1267
+ - Roo modes configuration
1268
+ - Support for multiple CLI tools simultaneously
1269
+
1270
+ ### Expansion Ecosystem
1271
+
1272
+ - 2D Unity Game Development expansion pack
1273
+ - Improved expansion pack documentation
1274
+ - Better isolated expansion pack installations
1275
+
1276
+ [View v4.30.4 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.30.4)
1277
+
1278
+ ## [v4.20.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.20.0)
1279
+
1280
+ **Release: June 2025 (v4.11.0 - v4.20.0)**
1281
+
1282
+ Major focus on documentation quality and expanding QA agent capabilities.
1283
+
1284
+ ### Documentation Overhaul
1285
+
1286
+ - **Workflow Diagrams**: Visual explanations of planning and development cycles
1287
+ - **QA Role Expansion**: QA agent transformed into senior code reviewer
1288
+ - **User Guide Refresh**: Complete rewrite with clearer explanations
1289
+ - **Contributing Guidelines**: Clarified principles and contribution process
1290
+
1291
+ ### QA Agent Transformation
1292
+
1293
+ - Elevated from simple tester to senior developer/code reviewer
1294
+ - Code quality analysis and architectural feedback
1295
+ - Pre-implementation review capabilities
1296
+ - Integration with dev cycle for quality gates
1297
+
1298
+ ### IDE Ecosystem Growth
1299
+
1300
+ - **Cline IDE Support**: Added configuration for Cline
1301
+ - **Gemini CLI Integration**: Native Gemini CLI support
1302
+ - **Expansion Pack Installation**: Automated expansion agent setup across IDEs
1303
+
1304
+ ### New Capabilities
1305
+
1306
+ - Markdown-tree integration for document sharding
1307
+ - Quality gates to prevent task completion with failures
1308
+ - Enhanced brownfield workflow documentation
1309
+ - Team-based agent bundling improvements
1310
+
1311
+ ### Developer Tools
1312
+
1313
+ - Better expansion pack isolation
1314
+ - Automatic rule generation for all supported IDEs
1315
+ - Common files moved to shared locations
1316
+ - Hardcoded dependencies removed from installer
1317
+
1318
+ [View v4.20.0 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.20.0)
1319
+
1320
+ ## [v4.10.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.10.0)
1321
+
1322
+ **Release: June 2025 (v4.3.0 - v4.10.3)**
1323
+
1324
+ This release focused on making BMAD more configurable and adaptable to different project structures.
1325
+
1326
+ ### Configuration System
1327
+
1328
+ - **Optional Core Config**: Document sharding and core configuration made optional
1329
+ - **Flexible File Resolution**: Support for non-standard document structures
1330
+ - **Debug Logging**: Configurable debug mode for agent troubleshooting
1331
+ - **Fast Update Mode**: Quick updates without breaking customizations
1332
+
1333
+ ### Agent Improvements
1334
+
1335
+ - Clearer file resolution instructions for all agents
1336
+ - Fuzzy task resolution for better agent autonomy
1337
+ - Web orchestrator knowledge base expansion
1338
+ - Better handling of deviant PRD/Architecture structures
1339
+
1340
+ ### Installation Enhancements
1341
+
1342
+ - V4 early detection for improved update flow
1343
+ - Prevented double installation during updates
1344
+ - Better handling of YAML manifest files
1345
+ - Expansion pack dependencies properly included
671
1346
 
672
1347
  ### Bug Fixes
673
1348
 
674
- - Add bin field to root package.json for npx execution ([01cb46e](https://github.com/bmadcode/BMAD-METHOD/commit/01cb46e43da9713c24e68e57221ebe312c53b6ee)), closes [bmadcode/BMAD-METHOD#v4](https://github.com/bmadcode/BMAD-METHOD/issues/v4)
675
- - Add glob dependency for installer ([8d788b6](https://github.com/bmadcode/BMAD-METHOD/commit/8d788b6f490a94386658dff2f96165dca88c0a9a))
676
- - Add installer dependencies to root package.json ([0a838e9](https://github.com/bmadcode/BMAD-METHOD/commit/0a838e9d579a5efc632707d237194648394fbd61))
677
- - auto semantic versioning fix ([166ed04](https://github.com/bmadcode/BMAD-METHOD/commit/166ed047671cccab2874fd327efb1ac293ae7276))
678
- - auto semantic versioning fix again ([11260e4](https://github.com/bmadcode/BMAD-METHOD/commit/11260e43950b6bf78d68c759dc3ac278bc13f8a8))
679
- - Remove problematic install script from package.json ([cb1836b](https://github.com/bmadcode/BMAD-METHOD/commit/cb1836bd6ddbb2369e2ed97a1d2f5d6630a7152b))
680
- - resolve NPM token configuration ([b447a8b](https://github.com/bmadcode/BMAD-METHOD/commit/b447a8bd57625d02692d7e2771241bacd120c631))
1349
+ - SM agent file resolution issues
1350
+ - Installer upgrade path corrections
1351
+ - Bundle build improvements
1352
+ - Template formatting fixes
1353
+
1354
+ [View v4.10.3 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.10.3)
1355
+
1356
+ ## [v4.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.0.0)
1357
+
1358
+ **Release: June 20, 2025 (v4.0.0 - v4.2.0)**
1359
+
1360
+ Version 4 represented a complete architectural overhaul, transforming BMAD from a collection of prompts into a professional, distributable framework.
1361
+
1362
+ ### Framework Transformation
1363
+
1364
+ - **NPM Package**: Professional distribution and simple installation via `npx bmad-method install`
1365
+ - **Modular Architecture**: Move to `.bmad-core` hidden folder structure
1366
+ - **Multi-IDE Support**: Unified support for Claude Code, Cursor, Roo, Windsurf, and many more
1367
+ - **Schema Standardization**: YAML-based agent and team definitions
1368
+ - **Automated Installation**: One-command setup with upgrade detection
1369
+
1370
+ ### Agent System Overhaul
1371
+
1372
+ - Agent team workflows (fullstack, no-ui, all agents)
1373
+ - Web bundle generation for platform-agnostic deployment
1374
+ - Task-based architecture (separate task definitions from agents)
1375
+ - IDE-specific agent activation (slash commands for Claude Code, rules for Cursor, etc.)
1376
+
1377
+ ### New Capabilities
1378
+
1379
+ - Brownfield project support (existing codebases)
1380
+ - Greenfield project workflows (new projects)
1381
+ - Expansion pack architecture for domain specialization
1382
+ - Document sharding for better context management
1383
+ - Automatic semantic versioning and releases
1384
+
1385
+ ### Developer Experience
1386
+
1387
+ - Automatic upgrade path from v3 to v4
1388
+ - Backup creation for user customizations
1389
+ - VSCode settings and markdown linting
1390
+ - Comprehensive documentation restructure
1391
+
1392
+ [View v4.2.0 tag](https://github.com/bmad-code-org/BMAD-METHOD/tree/v4.2.0)
1393
+
1394
+ ## [v3.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v3.0.0)
1395
+
1396
+ **Release: May 20, 2025**
1397
+
1398
+ Version 3 introduced the revolutionary orchestrator concept, creating a unified agent experience.
1399
+
1400
+ ### Major Features
1401
+
1402
+ - **BMad Orchestrator**: Uber-agent that orchestrates all specialized agents
1403
+ - **Web-First Approach**: Streamlined web setup with pre-compiled agent bundles
1404
+ - **Simplified Onboarding**: Complete setup in minutes with clear quick-start guide
1405
+ - **Build System**: Scripts to compile web agents from modular components
1406
+
1407
+ ### Architecture Changes
1408
+
1409
+ - Consolidated agent system with centralized orchestration
1410
+ - Web build sample folder with ready-to-deploy configurations
1411
+ - Improved documentation structure with visual setup guides
1412
+ - Better separation between web and IDE workflows
1413
+
1414
+ ### New Capabilities
1415
+
1416
+ - Single agent interface (`/help` command system)
1417
+ - Brainstorming and ideation support
1418
+ - Integrated method explanation within the agent itself
1419
+ - Cross-platform consistency (Gemini Gems, Custom GPTs)
1420
+
1421
+ [View V3 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V3)
1422
+
1423
+ ## [v2.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v2.0.0)
1424
+
1425
+ **Release: April 17, 2025**
1426
+
1427
+ Version 2 addressed the major shortcomings of V1 by introducing separation of concerns and quality validation mechanisms.
1428
+
1429
+ ### Major Improvements
1430
+
1431
+ - **Template Separation**: Templates decoupled from agent definitions for greater flexibility
1432
+ - **Quality Checklists**: Advanced elicitation checklists to validate document quality
1433
+ - **Web Agent Discovery**: Recognition of Gemini Gems and Custom GPTs power for structured planning
1434
+ - **Granular Web Agents**: Simplified, clearly-defined agent roles optimized for web platforms
1435
+ - **Installer**: A project installer that copied the correct files to a folder at the destination
1436
+
1437
+ ### Key Features
1438
+
1439
+ - Separated template files from agent personas
1440
+ - Introduced forced validation rounds through checklists
1441
+ - Cost-effective structured planning workflow using web platforms
1442
+ - Self-contained agent personas with external template references
1443
+
1444
+ ### Known Issues
1445
+
1446
+ - Duplicate templates/checklists for web vs IDE versions
1447
+ - Manual export/import workflow between agents
1448
+ - Creating each web agent separately was tedious
1449
+
1450
+ [View V2 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V2)
1451
+
1452
+ ## [v1.0.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v1.0.0)
1453
+
1454
+ **Initial Release: April 6, 2025**
1455
+
1456
+ 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.
1457
+
1458
+ ### Key Features
1459
+
1460
+ - Introduction of specialized AI agent personas (PM, Architect, Developer, etc.)
1461
+ - Template-based document generation for planning artifacts
1462
+ - Emphasis on planning MVP scope with sufficient detail to guide developer agents
1463
+ - Hard-coded custom mode prompts integrated directly into agent configurations
1464
+ - The OG of Context Engineering in a structured way
1465
+
1466
+ ### Limitations
1467
+
1468
+ - Limited customization options
1469
+ - Web usage was complicated and not well-documented
1470
+ - Rigid scope and purpose with templates coupled to agents
1471
+ - Not optimized for IDE integration
1472
+
1473
+ [View V1 Branch](https://github.com/bmad-code-org/BMAD-METHOD/tree/V1)
681
1474
 
682
- ### Features
1475
+ ## Installation
683
1476
 
684
- - add versioning and release automation ([0ea5e50](https://github.com/bmadcode/BMAD-METHOD/commit/0ea5e50aa7ace5946d0100c180dd4c0da3e2fd8c))
1477
+ ```bash
1478
+ npx bmad-method
1479
+ ```
685
1480
 
686
- # Promote to stable release 5.0.0
1481
+ For detailed release notes, see the [GitHub releases page](https://github.com/bmad-code-org/BMAD-METHOD/releases).