bmad-elsabro 1.0.0

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