bmad-fh 6.0.0-alpha.23

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