bmad-method 6.0.0-alpha.8 โ†’ 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1313) hide show
  1. package/.augment/code_review_guidelines.yaml +271 -0
  2. package/.claude/skills/bmad-os-changelog-social/SKILL.md +178 -0
  3. package/.claude/skills/bmad-os-changelog-social/examples/discord-example.md +53 -0
  4. package/.claude/skills/bmad-os-changelog-social/examples/linkedin-example.md +49 -0
  5. package/.claude/skills/bmad-os-changelog-social/examples/twitter-example.md +55 -0
  6. package/.claude/skills/bmad-os-diataxis-style-fix/SKILL.md +7 -0
  7. package/.claude/skills/bmad-os-diataxis-style-fix/prompts/instructions.md +229 -0
  8. package/.claude/skills/bmad-os-draft-changelog/SKILL.md +7 -0
  9. package/.claude/skills/bmad-os-draft-changelog/prompts/instructions.md +82 -0
  10. package/.claude/skills/bmad-os-gh-triage/README.md +14 -0
  11. package/.claude/skills/bmad-os-gh-triage/SKILL.md +12 -0
  12. package/.claude/skills/bmad-os-gh-triage/prompts/agent-prompt.md +60 -0
  13. package/.claude/skills/bmad-os-gh-triage/prompts/instructions.md +74 -0
  14. package/.claude/skills/bmad-os-release-module/README.md +24 -0
  15. package/.claude/skills/bmad-os-release-module/SKILL.md +7 -0
  16. package/.claude/skills/bmad-os-release-module/prompts/instructions.md +53 -0
  17. package/.coderabbit.yaml +85 -0
  18. package/.github/CODE_OF_CONDUCT.md +128 -0
  19. package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
  20. package/.github/ISSUE_TEMPLATE/config.yaml +5 -2
  21. package/.github/ISSUE_TEMPLATE/documentation.yaml +55 -0
  22. package/.github/ISSUE_TEMPLATE/feature-request.md +22 -0
  23. package/.github/ISSUE_TEMPLATE/issue.md +32 -0
  24. package/.github/PULL_REQUEST_TEMPLATE.md +13 -0
  25. package/.github/scripts/discord-helpers.sh +34 -0
  26. package/.github/workflows/coderabbit-review.yaml +22 -0
  27. package/.github/workflows/discord.yaml +82 -8
  28. package/.github/workflows/docs.yaml +64 -0
  29. package/.github/workflows/quality.yaml +40 -2
  30. package/.husky/pre-commit +13 -0
  31. package/.markdownlint-cli2.yaml +41 -0
  32. package/.prettierignore +7 -0
  33. package/.vscode/settings.json +4 -3
  34. package/CHANGELOG.md +1220 -382
  35. package/CNAME +1 -0
  36. package/CONTRIBUTING.md +97 -189
  37. package/CONTRIBUTORS.md +32 -0
  38. package/LICENSE +7 -3
  39. package/README.md +51 -388
  40. package/SECURITY.md +85 -0
  41. package/TRADEMARK.md +55 -0
  42. package/Wordmark.png +0 -0
  43. package/banner-bmad-method.png +0 -0
  44. package/docs/404.md +9 -0
  45. package/docs/_STYLE_GUIDE.md +370 -0
  46. package/docs/explanation/advanced-elicitation.md +49 -0
  47. package/docs/explanation/adversarial-review.md +59 -0
  48. package/docs/explanation/brainstorming.md +33 -0
  49. package/docs/explanation/established-projects-faq.md +50 -0
  50. package/docs/explanation/party-mode.md +59 -0
  51. package/docs/explanation/preventing-agent-conflicts.md +112 -0
  52. package/docs/explanation/project-context.md +157 -0
  53. package/docs/explanation/quick-flow.md +73 -0
  54. package/docs/explanation/why-solutioning-matters.md +77 -0
  55. package/docs/how-to/customize-bmad.md +172 -0
  56. package/docs/how-to/established-projects.md +105 -0
  57. package/docs/how-to/get-answers-about-bmad.md +103 -0
  58. package/docs/how-to/install-bmad.md +88 -0
  59. package/docs/how-to/non-interactive-installation.md +171 -0
  60. package/docs/how-to/project-context.md +136 -0
  61. package/docs/how-to/quick-fixes.md +123 -0
  62. package/docs/how-to/shard-large-documents.md +78 -0
  63. package/docs/how-to/upgrade-to-v6.md +97 -0
  64. package/docs/index.md +33 -204
  65. package/docs/reference/agents.md +28 -0
  66. package/docs/reference/commands.md +131 -0
  67. package/docs/reference/modules.md +76 -0
  68. package/docs/reference/testing.md +106 -0
  69. package/docs/reference/workflow-map.md +122 -0
  70. package/docs/tutorials/getting-started.md +219 -0
  71. package/eslint.config.mjs +26 -16
  72. package/package.json +35 -28
  73. package/src/bmm/agents/analyst.agent.yaml +43 -0
  74. package/src/bmm/agents/architect.agent.yaml +29 -0
  75. package/src/bmm/agents/dev.agent.yaml +38 -0
  76. package/src/bmm/agents/pm.agent.yaml +44 -0
  77. package/src/bmm/agents/qa.agent.yaml +58 -0
  78. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
  79. package/src/bmm/agents/sm.agent.yaml +37 -0
  80. package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
  81. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +46 -0
  82. package/src/bmm/agents/ux-designer.agent.yaml +27 -0
  83. package/src/bmm/data/project-context-template.md +26 -0
  84. package/src/bmm/module-help.csv +31 -0
  85. package/src/bmm/module.yaml +50 -0
  86. package/src/bmm/teams/default-party.csv +20 -0
  87. package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
  88. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
  89. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
  90. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
  91. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
  92. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
  93. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
  94. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +162 -0
  95. package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +57 -0
  96. package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
  97. package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
  98. package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
  99. package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
  100. package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
  101. package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
  102. package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
  103. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
  104. package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
  105. package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
  106. package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
  107. package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
  108. package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
  109. package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
  110. package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
  111. package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
  112. package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
  113. package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +233 -0
  114. package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
  115. package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +54 -0
  116. package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +54 -0
  117. package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +54 -0
  118. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +15 -0
  119. package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -0
  120. package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +11 -0
  121. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +191 -0
  122. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01b-continue.md +153 -0
  123. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +224 -0
  124. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +154 -0
  125. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +170 -0
  126. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +226 -0
  127. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +213 -0
  128. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +207 -0
  129. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +226 -0
  130. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +237 -0
  131. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +228 -0
  132. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +231 -0
  133. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +242 -0
  134. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +217 -0
  135. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +124 -0
  136. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +247 -0
  137. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
  138. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +249 -0
  139. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +253 -0
  140. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +168 -0
  141. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +226 -0
  142. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +191 -0
  143. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +209 -0
  144. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +174 -0
  145. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
  146. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +228 -0
  147. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +217 -0
  148. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
  149. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
  150. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +263 -0
  151. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +209 -0
  152. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
  153. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +242 -0
  154. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +231 -0
  155. package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -0
  156. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +63 -0
  157. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +65 -0
  158. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +63 -0
  159. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
  160. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
  161. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
  162. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
  163. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
  164. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
  165. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
  166. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
  167. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
  168. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
  169. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
  170. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
  171. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
  172. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
  173. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +171 -0
  174. package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
  175. package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +42 -0
  176. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +184 -0
  177. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +172 -0
  178. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +173 -0
  179. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +133 -0
  180. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +245 -0
  181. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +129 -0
  182. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
  183. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +54 -0
  184. package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
  185. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +13 -0
  186. package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
  187. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
  188. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +164 -0
  189. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
  190. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +331 -0
  191. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
  192. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
  193. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
  194. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
  195. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +76 -0
  196. package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +49 -0
  197. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
  198. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
  199. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
  200. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +149 -0
  201. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  202. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
  203. package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
  204. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
  205. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +44 -0
  206. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
  207. package/src/bmm/workflows/4-implementation/correct-course/instructions.md +207 -0
  208. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +54 -0
  209. package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
  210. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +346 -0
  211. package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
  212. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +53 -0
  213. package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
  214. package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
  215. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +21 -0
  216. package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
  217. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +53 -0
  218. package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +226 -0
  219. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
  220. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +47 -0
  221. package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -0
  222. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +25 -0
  223. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +174 -0
  224. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +118 -0
  225. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +111 -0
  226. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +111 -0
  227. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +104 -0
  228. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +146 -0
  229. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +50 -0
  230. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +191 -0
  231. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +144 -0
  232. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +127 -0
  233. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +200 -0
  234. package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
  235. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
  236. package/src/bmm/workflows/document-project/checklist.md +245 -0
  237. package/src/bmm/workflows/document-project/instructions.md +130 -0
  238. package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
  239. package/src/bmm/workflows/document-project/workflow.yaml +22 -0
  240. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
  241. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
  242. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
  243. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
  244. package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
  245. package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
  246. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
  247. package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
  248. package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
  249. package/src/bmm/workflows/qa/automate/checklist.md +33 -0
  250. package/src/bmm/workflows/qa/automate/instructions.md +110 -0
  251. package/src/bmm/workflows/qa/automate/workflow.yaml +44 -0
  252. package/src/core/agents/bmad-master.agent.yaml +12 -21
  253. package/src/core/module-help.csv +9 -0
  254. package/src/core/module.yaml +25 -0
  255. package/src/core/tasks/editorial-review-prose.xml +102 -0
  256. package/src/core/tasks/editorial-review-structure.xml +209 -0
  257. package/src/core/tasks/help.md +85 -0
  258. package/src/core/tasks/index-docs.xml +2 -2
  259. package/src/core/tasks/review-adversarial-general.xml +48 -0
  260. package/src/core/tasks/shard-doc.xml +108 -0
  261. package/src/core/tasks/workflow.xml +126 -47
  262. package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
  263. package/src/core/workflows/advanced-elicitation/workflow.xml +117 -0
  264. package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
  265. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
  266. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
  267. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
  268. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
  269. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
  270. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
  271. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
  272. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
  273. package/src/core/workflows/brainstorming/template.md +13 -100
  274. package/src/core/workflows/brainstorming/workflow.md +58 -0
  275. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  276. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
  277. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +168 -0
  278. package/src/core/workflows/party-mode/workflow.md +194 -0
  279. package/src/utility/agent-components/activation-rules.txt +6 -0
  280. package/src/utility/agent-components/activation-steps.txt +14 -0
  281. package/src/utility/agent-components/agent-command-header.md +1 -0
  282. package/src/utility/agent-components/agent.customize.template.yaml +41 -0
  283. package/src/utility/agent-components/handler-action.txt +4 -0
  284. package/src/utility/agent-components/handler-exec.txt +6 -0
  285. package/src/utility/agent-components/handler-multi.txt +14 -0
  286. package/src/utility/agent-components/handler-tmpl.txt +5 -0
  287. package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
  288. package/src/utility/agent-components/handler-workflow.txt +10 -0
  289. package/src/utility/agent-components/menu-handlers.txt +6 -0
  290. package/test/README.md +4 -4
  291. package/test/adversarial-review-tests/README.md +56 -0
  292. package/test/adversarial-review-tests/sample-content.md +46 -0
  293. package/test/adversarial-review-tests/test-cases.yaml +103 -0
  294. package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +1 -0
  295. package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +1 -0
  296. package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +1 -0
  297. package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +1 -0
  298. package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +1 -0
  299. package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +1 -0
  300. package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +1 -0
  301. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
  302. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
  303. package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +1 -0
  304. package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +1 -0
  305. package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +1 -0
  306. package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +1 -0
  307. package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +1 -0
  308. package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +1 -1
  309. package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +1 -0
  310. package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +1 -0
  311. package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +1 -0
  312. package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +1 -0
  313. package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +1 -0
  314. package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +1 -0
  315. package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +1 -0
  316. package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +1 -0
  317. package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +1 -0
  318. package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +1 -0
  319. package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +1 -0
  320. package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +1 -0
  321. package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +1 -0
  322. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -0
  323. package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +1 -0
  324. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +2 -3
  325. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -0
  326. package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
  327. package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +2 -1
  328. package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
  329. package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +1 -0
  330. package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +2 -1
  331. package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +2 -1
  332. package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
  333. package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
  334. package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +1 -0
  335. package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +1 -0
  336. package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +1 -0
  337. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +1 -0
  338. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +1 -0
  339. package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +1 -0
  340. package/test/fixtures/file-refs-csv/invalid/all-empty-workflow.csv +3 -0
  341. package/test/fixtures/file-refs-csv/invalid/empty-data.csv +1 -0
  342. package/test/fixtures/file-refs-csv/invalid/no-workflow-column.csv +3 -0
  343. package/test/fixtures/file-refs-csv/invalid/unresolvable-vars.csv +3 -0
  344. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +3 -0
  345. package/test/fixtures/file-refs-csv/valid/core-style.csv +3 -0
  346. package/test/fixtures/file-refs-csv/valid/minimal.csv +2 -0
  347. package/test/test-agent-schema.js +4 -4
  348. package/test/test-file-refs-csv.js +133 -0
  349. package/test/test-installation-components.js +10 -12
  350. package/test/test-rehype-plugins.mjs +1050 -0
  351. package/test/unit-test-schema.js +2 -2
  352. package/tools/build-docs.mjs +463 -0
  353. package/tools/cli/README.md +41 -571
  354. package/tools/cli/bmad-cli.js +67 -1
  355. package/tools/cli/commands/install.js +42 -34
  356. package/tools/cli/commands/status.js +44 -26
  357. package/tools/cli/commands/uninstall.js +146 -23
  358. package/tools/cli/external-official-modules.yaml +53 -0
  359. package/tools/cli/installers/install-messages.yaml +39 -0
  360. package/tools/cli/installers/lib/core/config-collector.js +589 -95
  361. package/tools/cli/installers/lib/core/custom-module-cache.js +260 -0
  362. package/tools/cli/installers/lib/core/dependency-resolver.js +57 -39
  363. package/tools/cli/installers/lib/core/detector.js +19 -125
  364. package/tools/cli/installers/lib/core/ide-config-manager.js +12 -9
  365. package/tools/cli/installers/lib/core/installer.js +2075 -1154
  366. package/tools/cli/installers/lib/core/manifest-generator.js +494 -103
  367. package/tools/cli/installers/lib/core/manifest.js +544 -46
  368. package/tools/cli/installers/lib/custom/handler.js +358 -0
  369. package/tools/cli/installers/lib/ide/_base-ide.js +83 -44
  370. package/tools/cli/installers/lib/ide/_config-driven.js +560 -0
  371. package/tools/cli/installers/lib/ide/codex.js +277 -54
  372. package/tools/cli/installers/lib/ide/github-copilot.js +607 -209
  373. package/tools/cli/installers/lib/ide/kilo.js +169 -75
  374. package/tools/cli/installers/lib/ide/manager.js +179 -48
  375. package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
  376. package/tools/cli/installers/lib/ide/platform-codes.yaml +227 -0
  377. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +95 -5
  378. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +51 -20
  379. package/tools/cli/installers/lib/ide/shared/module-injections.js +6 -3
  380. package/tools/cli/installers/lib/ide/shared/path-utils.js +299 -0
  381. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +262 -14
  382. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +108 -27
  383. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +2 -1
  384. package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
  385. package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +16 -0
  386. package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
  387. package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
  388. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +15 -0
  389. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +7 -0
  390. package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +14 -0
  391. package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
  392. package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
  393. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +16 -0
  394. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +14 -0
  395. package/tools/cli/installers/lib/ide/templates/combined/kiro-agent.md +16 -0
  396. package/tools/cli/installers/lib/ide/templates/combined/kiro-task.md +9 -0
  397. package/tools/cli/installers/lib/ide/templates/combined/kiro-tool.md +9 -0
  398. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +15 -0
  399. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow.md +7 -0
  400. package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +15 -0
  401. package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +14 -0
  402. package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +14 -0
  403. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +17 -0
  404. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +17 -0
  405. package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +9 -0
  406. package/tools/cli/installers/lib/ide/templates/combined/trae.md +9 -0
  407. package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +10 -0
  408. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +2 -1
  409. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +6 -0
  410. package/tools/cli/installers/lib/message-loader.js +83 -0
  411. package/tools/cli/installers/lib/modules/external-manager.js +136 -0
  412. package/tools/cli/installers/lib/modules/manager.js +931 -207
  413. package/tools/cli/lib/activation-builder.js +13 -16
  414. package/tools/cli/lib/agent/compiler.js +525 -0
  415. package/tools/cli/lib/agent/installer.js +680 -0
  416. package/tools/cli/lib/agent/template-engine.js +152 -0
  417. package/tools/cli/lib/agent-analyzer.js +48 -20
  418. package/tools/cli/lib/agent-party-generator.js +5 -17
  419. package/tools/cli/lib/cli-utils.js +76 -104
  420. package/tools/cli/lib/config.js +4 -3
  421. package/tools/cli/lib/platform-codes.js +2 -2
  422. package/tools/cli/lib/project-root.js +6 -0
  423. package/tools/cli/lib/prompts.js +809 -0
  424. package/tools/cli/lib/ui.js +1608 -270
  425. package/tools/cli/lib/xml-handler.js +4 -55
  426. package/tools/cli/lib/yaml-format.js +4 -6
  427. package/tools/cli/lib/yaml-xml-builder.js +203 -63
  428. package/tools/docs/_prompt-external-modules-page.md +59 -0
  429. package/tools/docs/fix-refs.md +91 -0
  430. package/tools/fix-doc-links.js +285 -0
  431. package/tools/lib/xml-utils.js +13 -0
  432. package/tools/maintainer/review-pr-README.md +55 -0
  433. package/tools/maintainer/review-pr.md +242 -0
  434. package/tools/migrate-custom-module-paths.js +124 -0
  435. package/tools/platform-codes.yaml +24 -0
  436. package/tools/schema/agent.js +306 -53
  437. package/tools/validate-agent-schema.js +3 -3
  438. package/tools/validate-doc-links.js +393 -0
  439. package/tools/validate-file-refs.js +554 -0
  440. package/tools/validate-svg-changes.sh +356 -0
  441. package/website/README.md +75 -0
  442. package/website/astro.config.mjs +135 -0
  443. package/website/public/favicon.ico +0 -0
  444. package/website/public/img/bmad-dark.png +0 -0
  445. package/website/public/img/bmad-light.png +0 -0
  446. package/website/public/workflow-map-diagram.html +361 -0
  447. package/website/src/components/Banner.astro +62 -0
  448. package/website/src/components/Header.astro +96 -0
  449. package/website/src/components/MobileMenuFooter.astro +33 -0
  450. package/website/src/content/config.ts +6 -0
  451. package/website/src/lib/site-url.mjs +25 -0
  452. package/website/src/pages/404.astro +11 -0
  453. package/website/src/pages/robots.txt.ts +48 -0
  454. package/website/src/rehype-base-paths.js +112 -0
  455. package/website/src/rehype-markdown-links.js +111 -0
  456. package/website/src/styles/custom.css +509 -0
  457. package/.bmad/_cfg/agent-manifest.csv +0 -11
  458. package/.bmad/_cfg/agents/bmb-bmad-builder.customize.yaml +0 -42
  459. package/.bmad/_cfg/agents/bmm-analyst.customize.yaml +0 -42
  460. package/.bmad/_cfg/agents/bmm-architect.customize.yaml +0 -42
  461. package/.bmad/_cfg/agents/bmm-dev.customize.yaml +0 -42
  462. package/.bmad/_cfg/agents/bmm-pm.customize.yaml +0 -42
  463. package/.bmad/_cfg/agents/bmm-sm.customize.yaml +0 -42
  464. package/.bmad/_cfg/agents/bmm-tea.customize.yaml +0 -42
  465. package/.bmad/_cfg/agents/bmm-tech-writer.customize.yaml +0 -42
  466. package/.bmad/_cfg/agents/bmm-ux-designer.customize.yaml +0 -42
  467. package/.bmad/_cfg/agents/core-bmad-master.customize.yaml +0 -42
  468. package/.bmad/_cfg/files-manifest.csv +0 -289
  469. package/.bmad/_cfg/ides/claude-code.yaml +0 -7
  470. package/.bmad/_cfg/manifest.yaml +0 -10
  471. package/.bmad/_cfg/task-manifest.csv +0 -6
  472. package/.bmad/_cfg/tool-manifest.csv +0 -2
  473. package/.bmad/_cfg/workflow-manifest.csv +0 -44
  474. package/.bmad/bmb/README.md +0 -194
  475. package/.bmad/bmb/agents/bmad-builder.md +0 -70
  476. package/.bmad/bmb/config.yaml +0 -16
  477. package/.bmad/bmb/workflows/audit-workflow/checklist.md +0 -143
  478. package/.bmad/bmb/workflows/audit-workflow/instructions.md +0 -341
  479. package/.bmad/bmb/workflows/audit-workflow/template.md +0 -118
  480. package/.bmad/bmb/workflows/audit-workflow/workflow.yaml +0 -23
  481. package/.bmad/bmb/workflows/convert-legacy/README.md +0 -262
  482. package/.bmad/bmb/workflows/convert-legacy/checklist.md +0 -205
  483. package/.bmad/bmb/workflows/convert-legacy/instructions.md +0 -377
  484. package/.bmad/bmb/workflows/convert-legacy/workflow.yaml +0 -32
  485. package/.bmad/bmb/workflows/create-agent/README.md +0 -203
  486. package/.bmad/bmb/workflows/create-agent/agent-architecture.md +0 -419
  487. package/.bmad/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
  488. package/.bmad/bmb/workflows/create-agent/agent-types.md +0 -292
  489. package/.bmad/bmb/workflows/create-agent/brainstorm-context.md +0 -174
  490. package/.bmad/bmb/workflows/create-agent/checklist.md +0 -62
  491. package/.bmad/bmb/workflows/create-agent/communication-styles.md +0 -202
  492. package/.bmad/bmb/workflows/create-agent/instructions.md +0 -459
  493. package/.bmad/bmb/workflows/create-agent/workflow.yaml +0 -37
  494. package/.bmad/bmb/workflows/create-module/README.md +0 -229
  495. package/.bmad/bmb/workflows/create-module/brainstorm-context.md +0 -137
  496. package/.bmad/bmb/workflows/create-module/checklist.md +0 -244
  497. package/.bmad/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
  498. package/.bmad/bmb/workflows/create-module/installer-templates/installer.js +0 -231
  499. package/.bmad/bmb/workflows/create-module/instructions.md +0 -581
  500. package/.bmad/bmb/workflows/create-module/module-structure.md +0 -400
  501. package/.bmad/bmb/workflows/create-module/workflow.yaml +0 -42
  502. package/.bmad/bmb/workflows/create-workflow/README.md +0 -277
  503. package/.bmad/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  504. package/.bmad/bmb/workflows/create-workflow/checklist.md +0 -94
  505. package/.bmad/bmb/workflows/create-workflow/instructions.md +0 -724
  506. package/.bmad/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1308
  507. package/.bmad/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  508. package/.bmad/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
  509. package/.bmad/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  510. package/.bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -39
  511. package/.bmad/bmb/workflows/create-workflow/workflow.yaml +0 -40
  512. package/.bmad/bmb/workflows/edit-agent/README.md +0 -112
  513. package/.bmad/bmb/workflows/edit-agent/checklist.md +0 -112
  514. package/.bmad/bmb/workflows/edit-agent/instructions.md +0 -290
  515. package/.bmad/bmb/workflows/edit-agent/workflow.yaml +0 -33
  516. package/.bmad/bmb/workflows/edit-module/README.md +0 -187
  517. package/.bmad/bmb/workflows/edit-module/checklist.md +0 -165
  518. package/.bmad/bmb/workflows/edit-module/instructions.md +0 -339
  519. package/.bmad/bmb/workflows/edit-module/workflow.yaml +0 -34
  520. package/.bmad/bmb/workflows/edit-workflow/README.md +0 -119
  521. package/.bmad/bmb/workflows/edit-workflow/checklist.md +0 -70
  522. package/.bmad/bmb/workflows/edit-workflow/instructions.md +0 -342
  523. package/.bmad/bmb/workflows/edit-workflow/workflow.yaml +0 -27
  524. package/.bmad/bmb/workflows/module-brief/README.md +0 -264
  525. package/.bmad/bmb/workflows/module-brief/checklist.md +0 -116
  526. package/.bmad/bmb/workflows/module-brief/instructions.md +0 -267
  527. package/.bmad/bmb/workflows/module-brief/template.md +0 -275
  528. package/.bmad/bmb/workflows/module-brief/workflow.yaml +0 -29
  529. package/.bmad/bmb/workflows/redoc/README.md +0 -87
  530. package/.bmad/bmb/workflows/redoc/checklist.md +0 -99
  531. package/.bmad/bmb/workflows/redoc/instructions.md +0 -265
  532. package/.bmad/bmb/workflows/redoc/workflow.yaml +0 -32
  533. package/.bmad/bmm/README.md +0 -128
  534. package/.bmad/bmm/agents/analyst.md +0 -75
  535. package/.bmad/bmm/agents/architect.md +0 -80
  536. package/.bmad/bmm/agents/dev.md +0 -69
  537. package/.bmad/bmm/agents/pm.md +0 -84
  538. package/.bmad/bmm/agents/sm.md +0 -93
  539. package/.bmad/bmm/agents/tea.md +0 -80
  540. package/.bmad/bmm/agents/tech-writer.md +0 -90
  541. package/.bmad/bmm/agents/ux-designer.md +0 -79
  542. package/.bmad/bmm/config.yaml +0 -18
  543. package/.bmad/bmm/docs/README.md +0 -235
  544. package/.bmad/bmm/docs/agents-guide.md +0 -1056
  545. package/.bmad/bmm/docs/brownfield-guide.md +0 -754
  546. package/.bmad/bmm/docs/enterprise-agentic-development.md +0 -680
  547. package/.bmad/bmm/docs/faq.md +0 -587
  548. package/.bmad/bmm/docs/glossary.md +0 -320
  549. package/.bmad/bmm/docs/party-mode.md +0 -224
  550. package/.bmad/bmm/docs/quick-spec-flow.md +0 -652
  551. package/.bmad/bmm/docs/quick-start.md +0 -366
  552. package/.bmad/bmm/docs/scale-adaptive-system.md +0 -599
  553. package/.bmad/bmm/docs/test-architecture.md +0 -394
  554. package/.bmad/bmm/docs/workflow-architecture-reference.md +0 -371
  555. package/.bmad/bmm/docs/workflow-document-project-reference.md +0 -487
  556. package/.bmad/bmm/docs/workflows-analysis.md +0 -370
  557. package/.bmad/bmm/docs/workflows-implementation.md +0 -284
  558. package/.bmad/bmm/docs/workflows-planning.md +0 -601
  559. package/.bmad/bmm/docs/workflows-solutioning.md +0 -501
  560. package/.bmad/bmm/tasks/daily-standup.xml +0 -85
  561. package/.bmad/bmm/teams/default-party.csv +0 -19
  562. package/.bmad/bmm/testarch/knowledge/ci-burn-in.md +0 -675
  563. package/.bmad/bmm/testarch/knowledge/component-tdd.md +0 -486
  564. package/.bmad/bmm/testarch/knowledge/contract-testing.md +0 -957
  565. package/.bmad/bmm/testarch/knowledge/data-factories.md +0 -500
  566. package/.bmad/bmm/testarch/knowledge/email-auth.md +0 -721
  567. package/.bmad/bmm/testarch/knowledge/error-handling.md +0 -725
  568. package/.bmad/bmm/testarch/knowledge/feature-flags.md +0 -750
  569. package/.bmad/bmm/testarch/knowledge/fixture-architecture.md +0 -401
  570. package/.bmad/bmm/testarch/knowledge/network-first.md +0 -486
  571. package/.bmad/bmm/testarch/knowledge/nfr-criteria.md +0 -670
  572. package/.bmad/bmm/testarch/knowledge/playwright-config.md +0 -730
  573. package/.bmad/bmm/testarch/knowledge/probability-impact.md +0 -601
  574. package/.bmad/bmm/testarch/knowledge/risk-governance.md +0 -615
  575. package/.bmad/bmm/testarch/knowledge/selective-testing.md +0 -732
  576. package/.bmad/bmm/testarch/knowledge/selector-resilience.md +0 -527
  577. package/.bmad/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
  578. package/.bmad/bmm/testarch/knowledge/test-levels-framework.md +0 -473
  579. package/.bmad/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
  580. package/.bmad/bmm/testarch/knowledge/test-quality.md +0 -664
  581. package/.bmad/bmm/testarch/knowledge/timing-debugging.md +0 -372
  582. package/.bmad/bmm/testarch/knowledge/visual-debugging.md +0 -524
  583. package/.bmad/bmm/testarch/tea-index.csv +0 -22
  584. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
  585. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  586. package/.bmad/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -26
  587. package/.bmad/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
  588. package/.bmad/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  589. package/.bmad/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -40
  590. package/.bmad/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  591. package/.bmad/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
  592. package/.bmad/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  593. package/.bmad/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -45
  594. package/.bmad/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  595. package/.bmad/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  596. package/.bmad/bmm/workflows/1-analysis/research/checklist.md +0 -299
  597. package/.bmad/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  598. package/.bmad/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -439
  599. package/.bmad/bmm/workflows/1-analysis/research/instructions-market.md +0 -679
  600. package/.bmad/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
  601. package/.bmad/bmm/workflows/1-analysis/research/instructions-technical.md +0 -538
  602. package/.bmad/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  603. package/.bmad/bmm/workflows/1-analysis/research/template-market.md +0 -347
  604. package/.bmad/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  605. package/.bmad/bmm/workflows/1-analysis/research/workflow.yaml +0 -44
  606. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  607. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1301
  608. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
  609. package/.bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -60
  610. package/.bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -350
  611. package/.bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -52
  612. package/.bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -169
  613. package/.bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -45
  614. package/.bmad/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
  615. package/.bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -408
  616. package/.bmad/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
  617. package/.bmad/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
  618. package/.bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -46
  619. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -214
  620. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -80
  621. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -200
  622. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -451
  623. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -1115
  624. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  625. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  626. package/.bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -60
  627. package/.bmad/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -347
  628. package/.bmad/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  629. package/.bmad/bmm/workflows/3-solutioning/architecture/checklist.md +0 -244
  630. package/.bmad/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  631. package/.bmad/bmm/workflows/3-solutioning/architecture/instructions.md +0 -704
  632. package/.bmad/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  633. package/.bmad/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -68
  634. package/.bmad/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -175
  635. package/.bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -305
  636. package/.bmad/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
  637. package/.bmad/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
  638. package/.bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -64
  639. package/.bmad/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  640. package/.bmad/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
  641. package/.bmad/bmm/workflows/4-implementation/code-review/instructions.md +0 -420
  642. package/.bmad/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -65
  643. package/.bmad/bmm/workflows/4-implementation/correct-course/checklist.md +0 -279
  644. package/.bmad/bmm/workflows/4-implementation/correct-course/instructions.md +0 -201
  645. package/.bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -43
  646. package/.bmad/bmm/workflows/4-implementation/create-story/checklist.md +0 -240
  647. package/.bmad/bmm/workflows/4-implementation/create-story/instructions.md +0 -283
  648. package/.bmad/bmm/workflows/4-implementation/create-story/template.md +0 -51
  649. package/.bmad/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -74
  650. package/.bmad/bmm/workflows/4-implementation/dev-story/AUDIT-REPORT.md +0 -367
  651. package/.bmad/bmm/workflows/4-implementation/dev-story/checklist.md +0 -38
  652. package/.bmad/bmm/workflows/4-implementation/dev-story/instructions.md +0 -262
  653. package/.bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -26
  654. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  655. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -189
  656. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  657. package/.bmad/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -58
  658. package/.bmad/bmm/workflows/4-implementation/retrospective/instructions.md +0 -1460
  659. package/.bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -71
  660. package/.bmad/bmm/workflows/4-implementation/sprint-planning/instructions.md +0 -238
  661. package/.bmad/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +0 -55
  662. package/.bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -47
  663. package/.bmad/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  664. package/.bmad/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  665. package/.bmad/bmm/workflows/4-implementation/story-context/instructions.md +0 -234
  666. package/.bmad/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -57
  667. package/.bmad/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  668. package/.bmad/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -25
  669. package/.bmad/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  670. package/.bmad/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
  671. package/.bmad/bmm/workflows/document-project/checklist.md +0 -245
  672. package/.bmad/bmm/workflows/document-project/instructions.md +0 -222
  673. package/.bmad/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
  674. package/.bmad/bmm/workflows/document-project/workflow.yaml +0 -34
  675. package/.bmad/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
  676. package/.bmad/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  677. package/.bmad/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
  678. package/.bmad/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  679. package/.bmad/bmm/workflows/techdoc/documentation-standards.md +0 -262
  680. package/.bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
  681. package/.bmad/bmm/workflows/testarch/atdd/checklist.md +0 -373
  682. package/.bmad/bmm/workflows/testarch/atdd/instructions.md +0 -785
  683. package/.bmad/bmm/workflows/testarch/atdd/workflow.yaml +0 -52
  684. package/.bmad/bmm/workflows/testarch/automate/checklist.md +0 -580
  685. package/.bmad/bmm/workflows/testarch/automate/instructions.md +0 -1303
  686. package/.bmad/bmm/workflows/testarch/automate/workflow.yaml +0 -61
  687. package/.bmad/bmm/workflows/testarch/ci/checklist.md +0 -246
  688. package/.bmad/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
  689. package/.bmad/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
  690. package/.bmad/bmm/workflows/testarch/ci/instructions.md +0 -517
  691. package/.bmad/bmm/workflows/testarch/ci/workflow.yaml +0 -53
  692. package/.bmad/bmm/workflows/testarch/framework/checklist.md +0 -321
  693. package/.bmad/bmm/workflows/testarch/framework/instructions.md +0 -455
  694. package/.bmad/bmm/workflows/testarch/framework/workflow.yaml +0 -53
  695. package/.bmad/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
  696. package/.bmad/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
  697. package/.bmad/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
  698. package/.bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -56
  699. package/.bmad/bmm/workflows/testarch/test-design/checklist.md +0 -234
  700. package/.bmad/bmm/workflows/testarch/test-design/instructions.md +0 -621
  701. package/.bmad/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
  702. package/.bmad/bmm/workflows/testarch/test-design/workflow.yaml +0 -52
  703. package/.bmad/bmm/workflows/testarch/test-review/checklist.md +0 -470
  704. package/.bmad/bmm/workflows/testarch/test-review/instructions.md +0 -608
  705. package/.bmad/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
  706. package/.bmad/bmm/workflows/testarch/test-review/workflow.yaml +0 -53
  707. package/.bmad/bmm/workflows/testarch/trace/checklist.md +0 -654
  708. package/.bmad/bmm/workflows/testarch/trace/instructions.md +0 -1045
  709. package/.bmad/bmm/workflows/testarch/trace/trace-template.md +0 -673
  710. package/.bmad/bmm/workflows/testarch/trace/workflow.yaml +0 -66
  711. package/.bmad/bmm/workflows/workflow-status/init/instructions.md +0 -822
  712. package/.bmad/bmm/workflows/workflow-status/init/workflow.yaml +0 -27
  713. package/.bmad/bmm/workflows/workflow-status/instructions.md +0 -387
  714. package/.bmad/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -127
  715. package/.bmad/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -115
  716. package/.bmad/bmm/workflows/workflow-status/paths/game-design.yaml +0 -52
  717. package/.bmad/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -97
  718. package/.bmad/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -88
  719. package/.bmad/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  720. package/.bmad/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  721. package/.bmad/bmm/workflows/workflow-status/project-levels.yaml +0 -59
  722. package/.bmad/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +0 -49
  723. package/.bmad/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -31
  724. package/.bmad/bmm/workflows/workflow-status/workflow.yaml +0 -28
  725. package/.bmad/core/agents/bmad-master.md +0 -71
  726. package/.bmad/core/agents/bmad-web-orchestrator.agent.xml +0 -113
  727. package/.bmad/core/config.yaml +0 -11
  728. package/.bmad/core/tasks/adv-elicit-methods.csv +0 -39
  729. package/.bmad/core/tasks/adv-elicit.xml +0 -106
  730. package/.bmad/core/tasks/index-docs.xml +0 -65
  731. package/.bmad/core/tasks/validate-workflow.xml +0 -89
  732. package/.bmad/core/tasks/workflow.xml +0 -156
  733. package/.bmad/core/tools/shard-doc.xml +0 -65
  734. package/.bmad/core/workflows/brainstorming/README.md +0 -271
  735. package/.bmad/core/workflows/brainstorming/brain-methods.csv +0 -36
  736. package/.bmad/core/workflows/brainstorming/instructions.md +0 -314
  737. package/.bmad/core/workflows/brainstorming/template.md +0 -102
  738. package/.bmad/core/workflows/brainstorming/workflow.yaml +0 -43
  739. package/.bmad/core/workflows/party-mode/instructions.md +0 -183
  740. package/.bmad/core/workflows/party-mode/workflow.yaml +0 -27
  741. package/.bmad/docs/claude-code-instructions.md +0 -25
  742. package/.claude/commands/bmad/bmb/agents/bmad-builder.md +0 -70
  743. package/.claude/commands/bmad/bmb/workflows/audit-workflow.md +0 -15
  744. package/.claude/commands/bmad/bmb/workflows/convert-legacy.md +0 -15
  745. package/.claude/commands/bmad/bmb/workflows/create-agent.md +0 -15
  746. package/.claude/commands/bmad/bmb/workflows/create-module.md +0 -15
  747. package/.claude/commands/bmad/bmb/workflows/create-workflow.md +0 -15
  748. package/.claude/commands/bmad/bmb/workflows/edit-agent.md +0 -15
  749. package/.claude/commands/bmad/bmb/workflows/edit-module.md +0 -15
  750. package/.claude/commands/bmad/bmb/workflows/edit-workflow.md +0 -15
  751. package/.claude/commands/bmad/bmb/workflows/module-brief.md +0 -15
  752. package/.claude/commands/bmad/bmb/workflows/redoc.md +0 -15
  753. package/.claude/commands/bmad/bmm/agents/analyst.md +0 -75
  754. package/.claude/commands/bmad/bmm/agents/architect.md +0 -80
  755. package/.claude/commands/bmad/bmm/agents/dev.md +0 -69
  756. package/.claude/commands/bmad/bmm/agents/pm.md +0 -84
  757. package/.claude/commands/bmad/bmm/agents/sm.md +0 -93
  758. package/.claude/commands/bmad/bmm/agents/tea.md +0 -80
  759. package/.claude/commands/bmad/bmm/agents/tech-writer.md +0 -90
  760. package/.claude/commands/bmad/bmm/agents/ux-designer.md +0 -79
  761. package/.claude/commands/bmad/bmm/workflows/architecture.md +0 -15
  762. package/.claude/commands/bmad/bmm/workflows/brainstorm-project.md +0 -15
  763. package/.claude/commands/bmad/bmm/workflows/code-review.md +0 -15
  764. package/.claude/commands/bmad/bmm/workflows/correct-course.md +0 -15
  765. package/.claude/commands/bmad/bmm/workflows/create-epics-and-stories.md +0 -15
  766. package/.claude/commands/bmad/bmm/workflows/create-story.md +0 -15
  767. package/.claude/commands/bmad/bmm/workflows/create-ux-design.md +0 -15
  768. package/.claude/commands/bmad/bmm/workflows/dev-story.md +0 -15
  769. package/.claude/commands/bmad/bmm/workflows/document-project.md +0 -15
  770. package/.claude/commands/bmad/bmm/workflows/domain-research.md +0 -15
  771. package/.claude/commands/bmad/bmm/workflows/epic-tech-context.md +0 -15
  772. package/.claude/commands/bmad/bmm/workflows/prd.md +0 -15
  773. package/.claude/commands/bmad/bmm/workflows/product-brief.md +0 -15
  774. package/.claude/commands/bmad/bmm/workflows/research.md +0 -15
  775. package/.claude/commands/bmad/bmm/workflows/retrospective.md +0 -15
  776. package/.claude/commands/bmad/bmm/workflows/solutioning-gate-check.md +0 -15
  777. package/.claude/commands/bmad/bmm/workflows/sprint-planning.md +0 -15
  778. package/.claude/commands/bmad/bmm/workflows/story-context.md +0 -15
  779. package/.claude/commands/bmad/bmm/workflows/story-done.md +0 -15
  780. package/.claude/commands/bmad/bmm/workflows/story-ready.md +0 -15
  781. package/.claude/commands/bmad/bmm/workflows/tech-spec.md +0 -15
  782. package/.claude/commands/bmad/bmm/workflows/workflow-init.md +0 -15
  783. package/.claude/commands/bmad/bmm/workflows/workflow-status.md +0 -15
  784. package/.claude/commands/bmad/core/agents/bmad-master.md +0 -71
  785. package/.claude/commands/bmad/core/tasks/adv-elicit.md +0 -9
  786. package/.claude/commands/bmad/core/tasks/index-docs.md +0 -9
  787. package/.claude/commands/bmad/core/tools/shard-doc.md +0 -9
  788. package/.claude/commands/bmad/core/workflows/brainstorming.md +0 -15
  789. package/.claude/commands/bmad/core/workflows/party-mode.md +0 -15
  790. package/.claude/settings.local.json +0 -16
  791. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
  792. package/.github/ISSUE_TEMPLATE/idea_submission.md +0 -109
  793. package/.github/workflows/manual-release.yaml +0 -173
  794. package/docs/document-sharding-guide.md +0 -447
  795. package/docs/ide-info/auggie.md +0 -31
  796. package/docs/ide-info/claude-code.md +0 -25
  797. package/docs/ide-info/cline.md +0 -31
  798. package/docs/ide-info/codex.md +0 -21
  799. package/docs/ide-info/crush.md +0 -30
  800. package/docs/ide-info/cursor.md +0 -25
  801. package/docs/ide-info/gemini.md +0 -25
  802. package/docs/ide-info/github-copilot.md +0 -26
  803. package/docs/ide-info/iflow.md +0 -33
  804. package/docs/ide-info/kilo.md +0 -24
  805. package/docs/ide-info/opencode.md +0 -24
  806. package/docs/ide-info/qwen.md +0 -25
  807. package/docs/ide-info/roo.md +0 -27
  808. package/docs/ide-info/trae.md +0 -25
  809. package/docs/ide-info/windsurf.md +0 -22
  810. package/docs/installers-bundlers/ide-injections.md +0 -186
  811. package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -388
  812. package/docs/installers-bundlers/web-bundler-usage.md +0 -54
  813. package/docs/v4-to-v6-upgrade.md +0 -227
  814. package/src/core/_module-installer/install-config.yaml +0 -34
  815. package/src/core/_module-installer/installer.js +0 -60
  816. package/src/core/agents/bmad-web-orchestrator.agent.xml +0 -113
  817. package/src/core/tasks/adv-elicit-methods.csv +0 -39
  818. package/src/core/tasks/adv-elicit.xml +0 -106
  819. package/src/core/tasks/validate-workflow.xml +0 -89
  820. package/src/core/tools/shard-doc.xml +0 -65
  821. package/src/core/workflows/brainstorming/README.md +0 -271
  822. package/src/core/workflows/brainstorming/instructions.md +0 -314
  823. package/src/core/workflows/brainstorming/workflow.yaml +0 -43
  824. package/src/core/workflows/party-mode/instructions.md +0 -183
  825. package/src/core/workflows/party-mode/workflow.yaml +0 -27
  826. package/src/modules/bmb/README.md +0 -194
  827. package/src/modules/bmb/_module-installer/install-config.yaml +0 -31
  828. package/src/modules/bmb/agents/bmad-builder.agent.yaml +0 -59
  829. package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -143
  830. package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
  831. package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
  832. package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
  833. package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
  834. package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
  835. package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
  836. package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -34
  837. package/src/modules/bmb/workflows/create-agent/README.md +0 -203
  838. package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -419
  839. package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
  840. package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
  841. package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +0 -174
  842. package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
  843. package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
  844. package/src/modules/bmb/workflows/create-agent/instructions.md +0 -459
  845. package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -49
  846. package/src/modules/bmb/workflows/create-module/README.md +0 -229
  847. package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
  848. package/src/modules/bmb/workflows/create-module/checklist.md +0 -244
  849. package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
  850. package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
  851. package/src/modules/bmb/workflows/create-module/instructions.md +0 -581
  852. package/src/modules/bmb/workflows/create-module/module-structure.md +0 -400
  853. package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -44
  854. package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
  855. package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  856. package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
  857. package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -724
  858. package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1308
  859. package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  860. package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
  861. package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  862. package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -65
  863. package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -42
  864. package/src/modules/bmb/workflows/edit-agent/README.md +0 -112
  865. package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
  866. package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -290
  867. package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -35
  868. package/src/modules/bmb/workflows/edit-module/README.md +0 -187
  869. package/src/modules/bmb/workflows/edit-module/checklist.md +0 -165
  870. package/src/modules/bmb/workflows/edit-module/instructions.md +0 -339
  871. package/src/modules/bmb/workflows/edit-module/workflow.yaml +0 -36
  872. package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
  873. package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
  874. package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
  875. package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -29
  876. package/src/modules/bmb/workflows/module-brief/README.md +0 -264
  877. package/src/modules/bmb/workflows/module-brief/checklist.md +0 -116
  878. package/src/modules/bmb/workflows/module-brief/instructions.md +0 -267
  879. package/src/modules/bmb/workflows/module-brief/template.md +0 -275
  880. package/src/modules/bmb/workflows/module-brief/workflow.yaml +0 -31
  881. package/src/modules/bmb/workflows/redoc/README.md +0 -87
  882. package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
  883. package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
  884. package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
  885. package/src/modules/bmgd/README.md +0 -208
  886. package/src/modules/bmgd/_module-installer/install-config.yaml +0 -67
  887. package/src/modules/bmgd/agents/game-architect.agent.yaml +0 -33
  888. package/src/modules/bmgd/agents/game-designer.agent.yaml +0 -40
  889. package/src/modules/bmgd/agents/game-dev.agent.yaml +0 -40
  890. package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +0 -75
  891. package/src/modules/bmgd/teams/default-party.csv +0 -10
  892. package/src/modules/bmgd/teams/team-gamedev.yaml +0 -18
  893. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +0 -26
  894. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-context.md +0 -115
  895. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +0 -128
  896. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +0 -41
  897. package/src/modules/bmgd/workflows/1-preproduction/game-brief/checklist.md +0 -128
  898. package/src/modules/bmgd/workflows/1-preproduction/game-brief/instructions.md +0 -371
  899. package/src/modules/bmgd/workflows/1-preproduction/game-brief/template.md +0 -205
  900. package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +0 -44
  901. package/src/modules/bmgd/workflows/2-design/gdd/checklist.md +0 -148
  902. package/src/modules/bmgd/workflows/2-design/gdd/game-types/action-platformer.md +0 -45
  903. package/src/modules/bmgd/workflows/2-design/gdd/game-types/adventure.md +0 -84
  904. package/src/modules/bmgd/workflows/2-design/gdd/game-types/card-game.md +0 -76
  905. package/src/modules/bmgd/workflows/2-design/gdd/game-types/fighting.md +0 -89
  906. package/src/modules/bmgd/workflows/2-design/gdd/game-types/horror.md +0 -86
  907. package/src/modules/bmgd/workflows/2-design/gdd/game-types/idle-incremental.md +0 -78
  908. package/src/modules/bmgd/workflows/2-design/gdd/game-types/metroidvania.md +0 -87
  909. package/src/modules/bmgd/workflows/2-design/gdd/game-types/moba.md +0 -74
  910. package/src/modules/bmgd/workflows/2-design/gdd/game-types/party-game.md +0 -79
  911. package/src/modules/bmgd/workflows/2-design/gdd/game-types/puzzle.md +0 -58
  912. package/src/modules/bmgd/workflows/2-design/gdd/game-types/racing.md +0 -88
  913. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rhythm.md +0 -79
  914. package/src/modules/bmgd/workflows/2-design/gdd/game-types/roguelike.md +0 -69
  915. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rpg.md +0 -70
  916. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sandbox.md +0 -79
  917. package/src/modules/bmgd/workflows/2-design/gdd/game-types/shooter.md +0 -62
  918. package/src/modules/bmgd/workflows/2-design/gdd/game-types/simulation.md +0 -73
  919. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sports.md +0 -75
  920. package/src/modules/bmgd/workflows/2-design/gdd/game-types/strategy.md +0 -71
  921. package/src/modules/bmgd/workflows/2-design/gdd/game-types/survival.md +0 -79
  922. package/src/modules/bmgd/workflows/2-design/gdd/game-types/text-based.md +0 -91
  923. package/src/modules/bmgd/workflows/2-design/gdd/game-types/tower-defense.md +0 -79
  924. package/src/modules/bmgd/workflows/2-design/gdd/game-types/turn-based-tactics.md +0 -88
  925. package/src/modules/bmgd/workflows/2-design/gdd/game-types/visual-novel.md +0 -89
  926. package/src/modules/bmgd/workflows/2-design/gdd/game-types.csv +0 -25
  927. package/src/modules/bmgd/workflows/2-design/gdd/gdd-template.md +0 -153
  928. package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -506
  929. package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +0 -81
  930. package/src/modules/bmgd/workflows/2-design/narrative/checklist.md +0 -139
  931. package/src/modules/bmgd/workflows/2-design/narrative/instructions-narrative.md +0 -608
  932. package/src/modules/bmgd/workflows/2-design/narrative/narrative-template.md +0 -195
  933. package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +0 -38
  934. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +0 -347
  935. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-template.md +0 -103
  936. package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +0 -244
  937. package/src/modules/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +0 -222
  938. package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +0 -704
  939. package/src/modules/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +0 -13
  940. package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +0 -67
  941. package/src/modules/bmgd/workflows/4-production/code-review/backlog_template.md +0 -12
  942. package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +0 -22
  943. package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -420
  944. package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +0 -67
  945. package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +0 -279
  946. package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +0 -201
  947. package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +0 -45
  948. package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +0 -240
  949. package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -283
  950. package/src/modules/bmgd/workflows/4-production/create-story/template.md +0 -51
  951. package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +0 -76
  952. package/src/modules/bmgd/workflows/4-production/dev-story/AUDIT-REPORT.md +0 -367
  953. package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +0 -38
  954. package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -262
  955. package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +0 -28
  956. package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
  957. package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -189
  958. package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
  959. package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -60
  960. package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +0 -1460
  961. package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +0 -73
  962. package/src/modules/bmgd/workflows/4-production/sprint-planning/checklist.md +0 -33
  963. package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +0 -238
  964. package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +0 -55
  965. package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +0 -49
  966. package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
  967. package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
  968. package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -234
  969. package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -59
  970. package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
  971. package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -27
  972. package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
  973. package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -27
  974. package/src/modules/bmm/README.md +0 -128
  975. package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
  976. package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
  977. package/src/modules/bmm/_module-installer/install-config.yaml +0 -65
  978. package/src/modules/bmm/_module-installer/installer.js +0 -131
  979. package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +0 -35
  980. package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +0 -32
  981. package/src/modules/bmm/agents/analyst.agent.yaml +0 -48
  982. package/src/modules/bmm/agents/architect.agent.yaml +0 -42
  983. package/src/modules/bmm/agents/dev.agent.yaml +0 -40
  984. package/src/modules/bmm/agents/pm.agent.yaml +0 -61
  985. package/src/modules/bmm/agents/sm.agent.yaml +0 -72
  986. package/src/modules/bmm/agents/tea.agent.yaml +0 -65
  987. package/src/modules/bmm/agents/tech-writer.agent.yaml +0 -73
  988. package/src/modules/bmm/agents/ux-designer.agent.yaml +0 -38
  989. package/src/modules/bmm/docs/README.md +0 -235
  990. package/src/modules/bmm/docs/agents-guide.md +0 -1056
  991. package/src/modules/bmm/docs/brownfield-guide.md +0 -754
  992. package/src/modules/bmm/docs/enterprise-agentic-development.md +0 -680
  993. package/src/modules/bmm/docs/faq.md +0 -587
  994. package/src/modules/bmm/docs/glossary.md +0 -320
  995. package/src/modules/bmm/docs/party-mode.md +0 -224
  996. package/src/modules/bmm/docs/quick-spec-flow.md +0 -652
  997. package/src/modules/bmm/docs/quick-start.md +0 -366
  998. package/src/modules/bmm/docs/scale-adaptive-system.md +0 -599
  999. package/src/modules/bmm/docs/test-architecture.md +0 -394
  1000. package/src/modules/bmm/docs/workflow-architecture-reference.md +0 -371
  1001. package/src/modules/bmm/docs/workflow-document-project-reference.md +0 -487
  1002. package/src/modules/bmm/docs/workflows-analysis.md +0 -370
  1003. package/src/modules/bmm/docs/workflows-implementation.md +0 -284
  1004. package/src/modules/bmm/docs/workflows-planning.md +0 -601
  1005. package/src/modules/bmm/docs/workflows-solutioning.md +0 -501
  1006. package/src/modules/bmm/sub-modules/claude-code/README.md +0 -87
  1007. package/src/modules/bmm/sub-modules/claude-code/config.yaml +0 -5
  1008. package/src/modules/bmm/sub-modules/claude-code/injections.yaml +0 -242
  1009. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/api-documenter.md +0 -102
  1010. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/codebase-analyzer.md +0 -82
  1011. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/data-analyst.md +0 -101
  1012. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/pattern-detector.md +0 -84
  1013. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/dependency-mapper.md +0 -83
  1014. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/epic-optimizer.md +0 -81
  1015. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/requirements-analyst.md +0 -61
  1016. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/technical-decisions-curator.md +0 -168
  1017. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/trend-spotter.md +0 -115
  1018. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-journey-mapper.md +0 -123
  1019. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-researcher.md +0 -72
  1020. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/market-researcher.md +0 -51
  1021. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/tech-debt-auditor.md +0 -106
  1022. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/document-reviewer.md +0 -102
  1023. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/technical-evaluator.md +0 -68
  1024. package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/test-coverage-analyzer.md +0 -108
  1025. package/src/modules/bmm/tasks/daily-standup.xml +0 -85
  1026. package/src/modules/bmm/teams/default-party.csv +0 -19
  1027. package/src/modules/bmm/teams/team-fullstack.yaml +0 -12
  1028. package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +0 -675
  1029. package/src/modules/bmm/testarch/knowledge/component-tdd.md +0 -486
  1030. package/src/modules/bmm/testarch/knowledge/contract-testing.md +0 -957
  1031. package/src/modules/bmm/testarch/knowledge/data-factories.md +0 -500
  1032. package/src/modules/bmm/testarch/knowledge/email-auth.md +0 -721
  1033. package/src/modules/bmm/testarch/knowledge/error-handling.md +0 -725
  1034. package/src/modules/bmm/testarch/knowledge/feature-flags.md +0 -750
  1035. package/src/modules/bmm/testarch/knowledge/fixture-architecture.md +0 -401
  1036. package/src/modules/bmm/testarch/knowledge/network-first.md +0 -486
  1037. package/src/modules/bmm/testarch/knowledge/nfr-criteria.md +0 -670
  1038. package/src/modules/bmm/testarch/knowledge/playwright-config.md +0 -730
  1039. package/src/modules/bmm/testarch/knowledge/probability-impact.md +0 -601
  1040. package/src/modules/bmm/testarch/knowledge/risk-governance.md +0 -615
  1041. package/src/modules/bmm/testarch/knowledge/selective-testing.md +0 -732
  1042. package/src/modules/bmm/testarch/knowledge/selector-resilience.md +0 -527
  1043. package/src/modules/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
  1044. package/src/modules/bmm/testarch/knowledge/test-levels-framework.md +0 -473
  1045. package/src/modules/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
  1046. package/src/modules/bmm/testarch/knowledge/test-quality.md +0 -664
  1047. package/src/modules/bmm/testarch/knowledge/timing-debugging.md +0 -372
  1048. package/src/modules/bmm/testarch/knowledge/visual-debugging.md +0 -524
  1049. package/src/modules/bmm/testarch/tea-index.csv +0 -22
  1050. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
  1051. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  1052. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
  1053. package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
  1054. package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  1055. package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -69
  1056. package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  1057. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
  1058. package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  1059. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -61
  1060. package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  1061. package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  1062. package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
  1063. package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  1064. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -439
  1065. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -679
  1066. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
  1067. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -538
  1068. package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  1069. package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
  1070. package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  1071. package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
  1072. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  1073. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1301
  1074. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
  1075. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -93
  1076. package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -350
  1077. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -52
  1078. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -169
  1079. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -55
  1080. package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
  1081. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -408
  1082. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
  1083. package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
  1084. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -72
  1085. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -214
  1086. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -80
  1087. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -200
  1088. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -451
  1089. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -1115
  1090. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  1091. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  1092. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -79
  1093. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -347
  1094. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  1095. package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -244
  1096. package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  1097. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -704
  1098. package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  1099. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -114
  1100. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -175
  1101. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -305
  1102. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
  1103. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
  1104. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -66
  1105. package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  1106. package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
  1107. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -420
  1108. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -59
  1109. package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +0 -279
  1110. package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +0 -201
  1111. package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -45
  1112. package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +0 -240
  1113. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -281
  1114. package/src/modules/bmm/workflows/4-implementation/create-story/template.md +0 -51
  1115. package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -63
  1116. package/src/modules/bmm/workflows/4-implementation/dev-story/AUDIT-REPORT.md +0 -367
  1117. package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +0 -38
  1118. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -262
  1119. package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -28
  1120. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  1121. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -187
  1122. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  1123. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -48
  1124. package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +0 -1460
  1125. package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -70
  1126. package/src/modules/bmm/workflows/4-implementation/sprint-planning/checklist.md +0 -33
  1127. package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +0 -229
  1128. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +0 -55
  1129. package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -50
  1130. package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  1131. package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  1132. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -233
  1133. package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -51
  1134. package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  1135. package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -27
  1136. package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  1137. package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -27
  1138. package/src/modules/bmm/workflows/document-project/checklist.md +0 -245
  1139. package/src/modules/bmm/workflows/document-project/documentation-requirements.csv +0 -12
  1140. package/src/modules/bmm/workflows/document-project/instructions.md +0 -222
  1141. package/src/modules/bmm/workflows/document-project/templates/deep-dive-template.md +0 -345
  1142. package/src/modules/bmm/workflows/document-project/templates/index-template.md +0 -169
  1143. package/src/modules/bmm/workflows/document-project/templates/project-overview-template.md +0 -103
  1144. package/src/modules/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
  1145. package/src/modules/bmm/workflows/document-project/templates/source-tree-template.md +0 -135
  1146. package/src/modules/bmm/workflows/document-project/workflow.yaml +0 -36
  1147. package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
  1148. package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  1149. package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
  1150. package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  1151. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +0 -262
  1152. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
  1153. package/src/modules/bmm/workflows/testarch/atdd/checklist.md +0 -373
  1154. package/src/modules/bmm/workflows/testarch/atdd/instructions.md +0 -785
  1155. package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +0 -54
  1156. package/src/modules/bmm/workflows/testarch/automate/checklist.md +0 -580
  1157. package/src/modules/bmm/workflows/testarch/automate/instructions.md +0 -1303
  1158. package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +0 -63
  1159. package/src/modules/bmm/workflows/testarch/ci/checklist.md +0 -246
  1160. package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
  1161. package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
  1162. package/src/modules/bmm/workflows/testarch/ci/instructions.md +0 -517
  1163. package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +0 -55
  1164. package/src/modules/bmm/workflows/testarch/framework/checklist.md +0 -321
  1165. package/src/modules/bmm/workflows/testarch/framework/instructions.md +0 -455
  1166. package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +0 -55
  1167. package/src/modules/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
  1168. package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
  1169. package/src/modules/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
  1170. package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -58
  1171. package/src/modules/bmm/workflows/testarch/test-design/checklist.md +0 -234
  1172. package/src/modules/bmm/workflows/testarch/test-design/instructions.md +0 -621
  1173. package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
  1174. package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +0 -54
  1175. package/src/modules/bmm/workflows/testarch/test-review/checklist.md +0 -470
  1176. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +0 -608
  1177. package/src/modules/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
  1178. package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +0 -55
  1179. package/src/modules/bmm/workflows/testarch/trace/checklist.md +0 -654
  1180. package/src/modules/bmm/workflows/testarch/trace/instructions.md +0 -1045
  1181. package/src/modules/bmm/workflows/testarch/trace/trace-template.md +0 -673
  1182. package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +0 -68
  1183. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +0 -823
  1184. package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +0 -29
  1185. package/src/modules/bmm/workflows/workflow-status/instructions.md +0 -387
  1186. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -127
  1187. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -115
  1188. package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -52
  1189. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -97
  1190. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -88
  1191. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  1192. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  1193. package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +0 -59
  1194. package/src/modules/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +0 -49
  1195. package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -31
  1196. package/src/modules/bmm/workflows/workflow-status/workflow.yaml +0 -30
  1197. package/src/modules/cis/README.md +0 -153
  1198. package/src/modules/cis/_module-installer/install-config.yaml +0 -16
  1199. package/src/modules/cis/_module-installer/installer.js +0 -92
  1200. package/src/modules/cis/agents/README.md +0 -104
  1201. package/src/modules/cis/agents/brainstorming-coach.agent.yaml +0 -28
  1202. package/src/modules/cis/agents/creative-problem-solver.agent.yaml +0 -28
  1203. package/src/modules/cis/agents/design-thinking-coach.agent.yaml +0 -28
  1204. package/src/modules/cis/agents/innovation-strategist.agent.yaml +0 -28
  1205. package/src/modules/cis/agents/storyteller.agent.yaml +0 -28
  1206. package/src/modules/cis/teams/creative-squad.yaml +0 -7
  1207. package/src/modules/cis/teams/default-party.csv +0 -11
  1208. package/src/modules/cis/workflows/README.md +0 -139
  1209. package/src/modules/cis/workflows/design-thinking/README.md +0 -56
  1210. package/src/modules/cis/workflows/design-thinking/design-methods.csv +0 -31
  1211. package/src/modules/cis/workflows/design-thinking/instructions.md +0 -200
  1212. package/src/modules/cis/workflows/design-thinking/template.md +0 -111
  1213. package/src/modules/cis/workflows/design-thinking/workflow.yaml +0 -43
  1214. package/src/modules/cis/workflows/innovation-strategy/README.md +0 -56
  1215. package/src/modules/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  1216. package/src/modules/cis/workflows/innovation-strategy/instructions.md +0 -274
  1217. package/src/modules/cis/workflows/innovation-strategy/template.md +0 -189
  1218. package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +0 -43
  1219. package/src/modules/cis/workflows/problem-solving/README.md +0 -56
  1220. package/src/modules/cis/workflows/problem-solving/instructions.md +0 -250
  1221. package/src/modules/cis/workflows/problem-solving/solving-methods.csv +0 -31
  1222. package/src/modules/cis/workflows/problem-solving/template.md +0 -165
  1223. package/src/modules/cis/workflows/problem-solving/workflow.yaml +0 -43
  1224. package/src/modules/cis/workflows/storytelling/README.md +0 -58
  1225. package/src/modules/cis/workflows/storytelling/instructions.md +0 -291
  1226. package/src/modules/cis/workflows/storytelling/story-types.csv +0 -26
  1227. package/src/modules/cis/workflows/storytelling/template.md +0 -113
  1228. package/src/modules/cis/workflows/storytelling/workflow.yaml +0 -43
  1229. package/src/utility/models/agent-activation-ide.xml +0 -51
  1230. package/src/utility/models/agent-activation-web.xml +0 -60
  1231. package/src/utility/models/agent-command-header.md +0 -1
  1232. package/src/utility/models/agent-config-template.md +0 -23
  1233. package/src/utility/models/agent-in-team-activation.xml +0 -3
  1234. package/src/utility/models/fragments/activation-rules.xml +0 -8
  1235. package/src/utility/models/fragments/activation-steps.xml +0 -16
  1236. package/src/utility/models/fragments/handler-action.xml +0 -4
  1237. package/src/utility/models/fragments/handler-exec.xml +0 -5
  1238. package/src/utility/models/fragments/handler-tmpl.xml +0 -5
  1239. package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
  1240. package/src/utility/models/fragments/handler-workflow.xml +0 -9
  1241. package/src/utility/models/fragments/menu-handlers.xml +0 -6
  1242. package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
  1243. package/src/utility/templates/agent.customize.template.yaml +0 -42
  1244. package/test/fixtures/agent-schema/invalid/metadata/core-agent-with-module.agent.yaml +0 -26
  1245. package/test/fixtures/agent-schema/invalid/metadata/module-agent-missing-module.agent.yaml +0 -25
  1246. package/test/fixtures/agent-schema/invalid/metadata/wrong-module-value.agent.yaml +0 -26
  1247. package/tools/cli/bundlers/bundle-web.js +0 -179
  1248. package/tools/cli/bundlers/test-analyst.js +0 -28
  1249. package/tools/cli/bundlers/test-bundler.js +0 -118
  1250. package/tools/cli/bundlers/web-bundler.js +0 -1667
  1251. package/tools/cli/commands/build.js +0 -458
  1252. package/tools/cli/commands/list.js +0 -28
  1253. package/tools/cli/commands/update.js +0 -28
  1254. package/tools/cli/installers/lib/ide/auggie.js +0 -179
  1255. package/tools/cli/installers/lib/ide/claude-code.js +0 -471
  1256. package/tools/cli/installers/lib/ide/cline.js +0 -220
  1257. package/tools/cli/installers/lib/ide/crush.js +0 -240
  1258. package/tools/cli/installers/lib/ide/cursor.js +0 -352
  1259. package/tools/cli/installers/lib/ide/gemini.js +0 -206
  1260. package/tools/cli/installers/lib/ide/iflow.js +0 -125
  1261. package/tools/cli/installers/lib/ide/opencode.js +0 -212
  1262. package/tools/cli/installers/lib/ide/qwen.js +0 -318
  1263. package/tools/cli/installers/lib/ide/roo.js +0 -253
  1264. package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
  1265. package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
  1266. package/tools/cli/installers/lib/ide/trae.js +0 -266
  1267. package/tools/cli/installers/lib/ide/windsurf.js +0 -211
  1268. package/tools/cli/lib/replace-project-root.js +0 -239
  1269. package/tools/cli/regenerate-manifests.js +0 -28
  1270. package/tools/cli/test-yaml-builder.js +0 -43
  1271. package/tools/flattener/aggregate.js +0 -76
  1272. package/tools/flattener/binary.js +0 -80
  1273. package/tools/flattener/discovery.js +0 -71
  1274. package/tools/flattener/files.js +0 -35
  1275. package/tools/flattener/ignoreRules.js +0 -172
  1276. package/tools/flattener/main.js +0 -483
  1277. package/tools/flattener/projectRoot.js +0 -201
  1278. package/tools/flattener/prompts.js +0 -44
  1279. package/tools/flattener/stats.helpers.js +0 -368
  1280. package/tools/flattener/stats.js +0 -75
  1281. package/tools/flattener/test-matrix.js +0 -409
  1282. package/tools/flattener/xml.js +0 -88
  1283. package/tools/validate-bundles.js +0 -87
  1284. package/v6-open-items.md +0 -17
  1285. package/web-bundles/bmgd/agents/game-architect.xml +0 -664
  1286. package/web-bundles/bmgd/agents/game-designer.xml +0 -5489
  1287. package/web-bundles/bmgd/agents/game-dev.xml +0 -595
  1288. package/web-bundles/bmgd/agents/game-scrum-master.xml +0 -699
  1289. package/web-bundles/bmgd/teams/team-gamedev.xml +0 -6588
  1290. package/web-bundles/bmm/agents/analyst.xml +0 -5263
  1291. package/web-bundles/bmm/agents/architect.xml +0 -2378
  1292. package/web-bundles/bmm/agents/dev.xml +0 -248
  1293. package/web-bundles/bmm/agents/pm.xml +0 -4137
  1294. package/web-bundles/bmm/agents/sm.xml +0 -708
  1295. package/web-bundles/bmm/agents/tea.xml +0 -759
  1296. package/web-bundles/bmm/agents/tech-writer.xml +0 -624
  1297. package/web-bundles/bmm/agents/ux-designer.xml +0 -2492
  1298. package/web-bundles/bmm/teams/team-fullstack.xml +0 -12369
  1299. package/web-bundles/cis/agents/brainstorming-coach.xml +0 -1069
  1300. package/web-bundles/cis/agents/creative-problem-solver.xml +0 -1060
  1301. package/web-bundles/cis/agents/design-thinking-coach.xml +0 -955
  1302. package/web-bundles/cis/agents/innovation-strategist.xml +0 -1108
  1303. package/web-bundles/cis/agents/storyteller.xml +0 -598
  1304. package/web-bundles/cis/teams/creative-squad.xml +0 -3449
  1305. /package/{.bmad โ†’ src}/bmm/teams/team-fullstack.yaml +0 -0
  1306. /package/{.bmad โ†’ src}/bmm/workflows/4-implementation/sprint-planning/checklist.md +0 -0
  1307. /package/{.bmad โ†’ src}/bmm/workflows/document-project/documentation-requirements.csv +0 -0
  1308. /package/{.bmad โ†’ src}/bmm/workflows/document-project/templates/deep-dive-template.md +0 -0
  1309. /package/{.bmad โ†’ src}/bmm/workflows/document-project/templates/index-template.md +0 -0
  1310. /package/{.bmad โ†’ src}/bmm/workflows/document-project/templates/project-overview-template.md +0 -0
  1311. /package/{.bmad โ†’ src}/bmm/workflows/document-project/templates/source-tree-template.md +0 -0
  1312. /package/src/utility/{models/fragments/handler-data.xml โ†’ agent-components/handler-data.txt} +0 -0
  1313. /package/{src/utility/models/action-command-header.md โ†’ tools/cli/installers/lib/ide/templates/split/.gitkeep} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,571 +1,1409 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [6.0.0]
4
4
 
5
- ## [6.0.0-alpha.5]
5
+ V6 Stable Release! The End of Beta!
6
6
 
7
- **Release: November 4, 2025**
7
+ ### ๐ŸŽ Features
8
+
9
+ * Add PRD workflow steps 2b (vision/differentiators) and 2c (executive summary) for more complete product requirements documentation
10
+ * Add new `bmad uninstall` command with interactive and non-interactive modes for selective component removal
11
+ * Add dedicated GitHub Copilot installer that generates enriched `.agent.md`, `.prompt.md` files and project configuration
12
+ * Add TEA browser automation prerequisite prompts to guide Playwright CLI/MCP setup after configuration
8
13
 
9
- This alpha release represents a major refinement of BMM workflows, documentation accuracy, and the introduction of the revolutionary 3-track scale system. The focus is on workflow consistency, eliminating bloat, and providing accurate, reality-based guidance for modern AI-driven development.
14
+ ### ๐Ÿ› Bug Fixes
10
15
 
11
- ### ๐ŸŽฏ 3-Track Scale System - Revolutionary Simplification
16
+ * Fix version comparison to use semantic versioning, preventing incorrect downgrade recommendations to older beta versions
17
+ * Fix `--custom-content` flag to properly populate sources and selected files in module config
18
+ * Fix module configuration UX messaging to show accurate completion status and improve feedback timing
19
+ * Fix changelog URL in installer start message for proper GitHub resolution
20
+ * Remove incorrect `mode: primary` from OpenCode agent template and restore `name` field across all templates
21
+ * Auto-discover PRD files in validate-prd workflow to reduce manual path input
22
+ * Fix installer non-interactive mode hanging and improve IDE configuration handling during updates
23
+ * Fix workflow-level config.yaml copying for custom content modules
12
24
 
13
- **From 5 Levels to 3 Clear Tracks:**
25
+ ### โ™ป๏ธ Refactoring
14
26
 
15
- The BMM scale system has been dramatically simplified from a confusing 5-level hierarchy (Levels 0-4) to 3 intuitive, preference-driven tracks:
27
+ * Remove alias variables from Phase 4 workflows, use canonical `{implementation_artifacts}` and `{planning_artifacts}`
28
+ * Add missing `project_context` references to workflows for consistency
16
29
 
17
- - **Quick Flow** - Fast, lightweight development for small changes and quick iterations
18
- - **BMad Method** - Balanced approach for most development projects
19
- - **Enterprise Method** - Comprehensive methodology for large-scale, mission-critical systems
30
+ ### ๐Ÿ“š Documentation
20
31
 
21
- **Key Changes:**
32
+ * Add post-install notes documentation for modules
33
+ * Improve project-context documentation and fix folder structure
34
+ * Add BMad Builder link to index for extenders
35
+
36
+ ---
22
37
 
23
- - Replaced `project_level` variable with `project_track` throughout all workflows
24
- - Updated 8 workflow path YAML files to reflect new track naming (removed level-based paths)
25
- - Simplified workflow-init to guide users based on preference, not artificial "levels"
26
- - Updated all documentation to reference tracks instead of levels
27
- - Eliminated confusing "target_scale" variable (no longer needed)
38
+ ## [6.0.0-Beta.8]
28
39
 
29
- **Impact:**
40
+ **Release: February 8, 2026**
30
41
 
31
- Users now choose development approach based on **project needs and team preference**, not arbitrary complexity levels. This aligns with how real teams actually work and removes decision paralysis.
42
+ ### ๐ŸŒŸ Key Highlights
32
43
 
33
- **Documentation Updated:**
44
+ 1. **Non-Interactive Installation** โ€” Full CI/CD support with 10 new CLI flags for automated deployments
45
+ 2. **Complete @clack/prompts Migration** โ€” Unified CLI experience with consolidated installer output
46
+ 3. **CSV File Reference Validation** โ€” Extended Layer 1 validator to catch broken workflow references in CSV files
47
+ 4. **Kiro IDE Support** โ€” Standardized config-driven installation, replacing custom installer
34
48
 
35
- - `scale-adaptive-system.md` - Complete rewrite around 3-track methodology (756 line overhaul)
36
- - `quick-start.md` - Updated to reference tracks
37
- - `brownfield-guide.md` - Track-based guidance instead of level-based
38
- - `glossary.md` - New track definitions, removed level references
39
- - `workflow-status/init/instructions.md` - Major rewrite for track-based initialization (865 lines)
49
+ ### ๐ŸŽ Features
40
50
 
41
- ### โœจ Workflow Modernization & Standardization
51
+ * **Non-Interactive Installation** โ€” Added `--directory`, `--modules`, `--tools`, `--custom-content`, `--user-name`, `--communication-language`, `--document-output-language`, `--output-folder`, and `-y/--yes` flags for CI/CD automation (#1520)
52
+ * **CSV File Reference Validation** โ€” Extended validator to scan `.csv` files for broken workflow references, checking 501 references across 212 files (#1573)
53
+ * **Kiro IDE Support** โ€” Replaced broken custom installer with config-driven templates using `#[[file:...]]` syntax and `inclusion: manual` frontmatter (#1589)
54
+ * **OpenCode Template Consolidation** โ€” Combined split templates with `mode: primary` frontmatter for Tab-switching support, fixing agent discovery (#1556)
55
+ * **Modules Reference Page** โ€” Added official external modules reference documentation (#1540)
42
56
 
43
- **1. Elicitation System Modernization:**
57
+ ### ๐Ÿ› Bug Fixes
44
58
 
45
- - Removed legacy `<elicit-required />` XML tag from core workflow.xml
46
- - Replaced with explicit `<invoke-task halt="true">adv-elicit.xml</invoke-task>` pattern
47
- - More self-documenting and eliminates confusing indirection layer
48
- - Added strategic elicitation points across all planning workflows:
49
- - **PRD:** After success criteria, scope, functional requirements, and final review
50
- - **Create-Epics-And-Stories:** After epic proposals and each epic's stories
51
- - **Architecture:** After decisions, structure, patterns, implementation patterns, and final doc
52
- - Updated audit-workflow to remove obsolete elicit-required tag scanning
59
+ * **Installer Streamlining** โ€” Removed "None - Skip module installation" option, eliminated ~100 lines of dead code, and added ESM/.cjs support for module installers (#1590)
60
+ * **CodeRabbit Workflow** โ€” Changed `pull_request` to `pull_request_target` to fix 403 errors and enable reviews on fork PRs (#1583)
61
+ * **Party Mode Return Protocol** โ€” Added RETURN PROTOCOL to prevent lost-in-the-middle failures after Party Mode completes (#1569)
62
+ * **Spacebar Toggle** โ€” Fixed SPACE key not working in autocomplete multiselect prompts for tool/IDE selection (#1557)
63
+ * **OpenCode Agent Routing** โ€” Fixed agents installing to wrong directory by adding `targets` array for routing `.opencode/agent/` vs `.opencode/command/` (#1549)
64
+ * **Technical Research Workflow** โ€” Fixed step-05 routing to step-06 and corrected `stepsCompleted` values (#1547)
65
+ * **Forbidden Variable Removal** โ€” Removed `workflow_path` variable from 16 workflow step files (#1546)
66
+ * **Kilo Installer** โ€” Fixed YAML formatting issues by trimming activation header and converting to yaml.parse/stringify (#1537)
67
+ * **bmad-help** โ€” Now reads project-specific docs and respects `communication_language` setting (#1535)
68
+ * **Cache Errors** โ€” Removed `--prefer-offline` npm flag to prevent stale cache errors during installation (#1531)
53
69
 
54
- **2. Input Document Discovery Streamlined:**
70
+ ### โ™ป๏ธ Refactoring
55
71
 
56
- - Replaced verbose 19-line "Input Document Discovery" sections with single critical tag
57
- - New concise format: `<critical>Input documents specified in workflow.yaml input_file_patterns...</critical>`
58
- - Eliminates duplication (workflow.yaml already defines patterns - why repeat them?)
59
- - Updated across 6 workflows: PRD, create-epics-and-stories, architecture, tech-spec, UX, gate-check
60
- - **Saved ~114 lines of repeated bloat**
72
+ * **Complete @clack/prompts Migration** โ€” Migrated 24 files from legacy libraries (ora, chalk, boxen, figlet, etc.), replaced ~100 console.log+chalk calls, consolidated installer output to single spinner, and removed 5 dependencies (#1586)
73
+ * **Downloads Page Removal** โ€” Removed downloads page, bundle generation, and archiver dependency in favor of GitHub's native archives (#1577)
74
+ * **Workflow Verb Standardization** โ€” Replaced "invoke/run" with "load and follow/load" in review workflow prompts (#1570)
75
+ * **Documentation Language** โ€” Renamed "brownfield" to "established projects" and flattened directory structure for accessibility (#1539)
61
76
 
62
- **3. Epic/Story Template Standardization:**
77
+ ### ๐Ÿ“š Documentation
63
78
 
64
- - Replaced hardcoded 8-epic templates with clean repeating patterns using N/M variables
65
- - Added BDD-style acceptance criteria (Given/When/Then/And) for better clarity
66
- - Removed instructional bloat from templates (moved to instructions.md where it belongs)
67
- - **Principle:** Templates show OUTPUT structure, instructions show PROCESS
68
- - Applied to both create-epics-and-stories and tech-spec workflows
69
- - Templates now use HTML comments to clearly indicate repeating sections
79
+ * **Comprehensive Site Review** โ€” Fixed broken directory tree diagram, corrected grammar/capitalization, added SEO descriptions, and reordered how-to guides (#1578)
80
+ * **SEO Metadata** โ€” Added description front matter to 9 documentation pages for search engine optimization (#1566)
81
+ * **PR Template** โ€” Added pull request template for consistent PR descriptions (#1554)
82
+ * **Manual Release Cleanup** โ€” Removed broken manual-release workflow and related scripts (#1576)
70
83
 
71
- **4. Workflow.yaml Pattern Consistency:**
84
+ ### ๐Ÿ”ง Maintenance
72
85
 
73
- - Standardized `input_file_patterns` across all workflows
74
- - Separated `recommended_inputs` (semantic WHAT) from `input_file_patterns` (file discovery WHERE)
75
- - Removed duplication between recommended_inputs file paths and input_file_patterns
76
- - Create-epics-and-stories now uses proper whole/sharded pattern like architecture workflow
77
- - Solutioning-gate-check cleaned up to use semantic descriptions not file paths
86
+ * **Dual-Mode AI Code Review** โ€” Configured Augment Code (audit mode) and CodeRabbit (adversarial mode) for improved code quality (#1511)
87
+ * **Package-Lock Sync** โ€” Cleaned up 471 lines of orphaned dependencies after archiver removal (#1580)
78
88
 
79
- **Files Changed:** 18 files across core, planning, and solutioning workflows
89
+ ---
80
90
 
81
- ### ๐Ÿ“š Documentation Accuracy Overhaul
91
+ ## [6.0.0-Beta.7]
82
92
 
83
- **Agent YAML as Source of Truth:**
93
+ **Release: February 4, 2026**
84
94
 
85
- Fixed critical documentation inaccuracies by treating agent YAML files as the authoritative source:
95
+ ### ๐ŸŒŸ Key Highlights
86
96
 
87
- **agents-guide.md Corrections:**
97
+ 1. **Direct Workflow Invocation** โ€” Agent workflows can now be run directly via slash commands instead of only through agent orchestration
98
+ 2. **Installer Workflow Support** โ€” Installer now picks up `workflow-*.md` files, enabling multiple workflow files per directory
88
99
 
89
- - Fixed Game Developer workflow names (dev-story โ†’ develop-story, added story-done)
90
- - Added agent name "Paige" to Technical Writer (matches naming pattern)
91
- - Corrected epic-tech-context ownership (Architect โ†’ SM agent across all docs)
92
- - Updated agent reference tables to reflect actual capabilities from YAML configs
100
+ ### ๐ŸŽ Features
93
101
 
94
- **workflows-implementation.md Corrections:**
102
+ * **Slash Command Workflow Access** โ€” Research and PRD workflows now accessible via direct slash commands: `/domain-research`, `/market-research`, `/technical-research`, `/create-prd`, `/edit-prd`, `/validate-prd` (bd620e38, 731bee26)
103
+ * **Version Checking** โ€” CLI now checks npm for newer versions and displays a warning banner when updates are available (d37ee7f2)
95
104
 
96
- - Fixed epic-tech-context agent attribution in 3 locations (Architect โ†’ SM)
97
- - Updated multi-agent workflow ownership table
98
- - Aligned all workflow descriptions with actual agent YAML definitions
105
+ ### โ™ป๏ธ Refactoring
99
106
 
100
- **Impact:** Zero hallucination risk - documentation now accurately reflects what agents can actually do.
107
+ * **Workflow File Splitting** โ€” Split monolithic `workflow.md` files into specific `workflow-*.md` files for individual workflow invocation (bd620e38)
108
+ * **Installer Multi-Workflow Support** โ€” Installer manifest generator now supports `workflow-*.md` pattern, allowing multiple workflow files per directory (731bee26)
109
+ * **Internal Skill Renaming** โ€” Renamed internal project skills to use `bmad-os-` prefix for consistent naming (5276d58b)
101
110
 
102
- ### ๐Ÿ—๏ธ Brownfield Development Reality Check
111
+ ---
103
112
 
104
- **Rewrote brownfield-guide.md Phase 0 Section:**
113
+ ## [6.0.0-Beta.6]
105
114
 
106
- Replaced oversimplified 3-scenario model with **real-world guidance** for messy brownfield projects:
115
+ **Release: February 4, 2026**
107
116
 
108
- **New Scenarios (4 instead of 3):**
117
+ ### ๐ŸŒŸ Key Highlights
109
118
 
110
- - **Scenario A:** No documentation โ†’ `document-project` workflow (existing)
111
- - **Scenario B:** Docs exist but massive/outdated/incomplete โ†’ **document-project** (NEW - very common case)
112
- - **Scenario C:** Good docs but massive files โ†’ **shard-doc โ†’ index-docs** (NEW - handles >500 line files)
113
- - **Scenario D:** Confirmed AI-optimized docs โ†’ Skip Phase 0 (correctly marked as RARE)
119
+ 1. **Cross-File Reference Validator**: Comprehensive tool to detect broken file references, preventing 59 known bugs (~25% of historical issues)
120
+ 2. **New AutocompleteMultiselect Prompt**: Searchable multi-select with improved tool/IDE selection UX
121
+ 3. **Critical Installer Fixes**: Windows CRLF parsing, Gemini CLI TOML support, file extension preservation
122
+ 4. **Codebase Cleanup**: Removed dead Excalidraw/flattener artifacts (-3,798 lines)
114
123
 
115
- **Key Additions:**
124
+ ### ๐ŸŽ Features
116
125
 
117
- - Default recommendation: "Run document-project unless you have confirmed, trusted, AI-optimized docs"
118
- - Quality assessment checklist (current, AI-optimized, comprehensive, trusted)
119
- - Massive document handling guidance (>500 lines, 10+ sections triggers shard-doc)
120
- - Explicit explanation of why regenerating is better than indexing bad docs
121
- - Impact explanation: how outdated docs break AI workflows (token limits, wrong assumptions, broken integrations)
126
+ * **Cross-File Reference Validator** โ€” Validates ~483 references across ~217 source files, detecting absolute path leaks and broken references (PR #1494)
127
+ * **AutocompleteMultiselect Prompt** โ€” Upgraded `@clack/prompts` to v1.0.0 with custom searchable multiselect, Tab-to-fill-placeholder behavior, and improved tool/IDE selection UX (PR #1514)
128
+ * **OT Domains** โ€” Added `process_control` and `building_automation` domains with high complexity ratings (PR #1510)
129
+ * **Documentation Reference Pages** โ€” Added `docs/reference/agents.md`, `commands.md`, and `testing.md` (PR #1525)
122
130
 
123
- **Principle:** "When in doubt, run document-project" - Better to spend 10-30 minutes generating fresh docs than waste hours debugging AI agents with bad documentation.
131
+ ### ๐Ÿ› Bug Fixes
124
132
 
125
- ### ๐Ÿš€ PM/UX Evolution for Enterprise Agentic Development
133
+ * **Critical Installer Fixes** โ€” Fixed CRLF line ending parsing on Windows, Gemini CLI TOML support, file extension preservation, Codex task generation, Windows path handling, and CSV parsing (PR #1492)
134
+ * **Double Tool Questioning** โ€” Removed redundant tool questioning during installation (df176d42)
135
+ * **QA Agent Rename** โ€” Renamed Quinn agent to `qa` for naming consistency (PR #1508)
136
+ * **Documentation Organization** โ€” Fixed documentation ordering and links, hide BMGD pages from main LLM docs (PR #1525)
126
137
 
127
- **New Section: The Evolving Role of Product Managers & UX Designers**
138
+ ### โ™ป๏ธ Refactoring
128
139
 
129
- Added comprehensive forward-looking guidance based on **November 2025 industry research**:
140
+ * **Excalidraw/Flattener Removal** โ€” Removed dead artifacts no longer supported beyond beta: Excalidraw workflows, flattener tool, and 12+ diagram creation workflows (-3,798 lines) (f699a368)
141
+ * **Centralized Constants** โ€” Centralized `BMAD_FOLDER_NAME` to reduce hardcoded strings (PR #1492)
142
+ * **Cross-Platform Paths** โ€” Fixed path separator inconsistencies in agent IDs (PR #1492)
130
143
 
131
- **Industry Trends:**
144
+ ### ๐Ÿ“š Documentation
132
145
 
133
- - 56% of product professionals cite AI/ML as top strategic focus
134
- - PRD-to-Code automation: build and deploy apps in 10-15 minutes (current state)
135
- - By 2026: Roles converging into "Full-Stack Product Lead" (PM + Design + Engineering)
136
- - Very high salaries for AI Agent PMs who orchestrate autonomous development systems
146
+ * **BMGD Diataxis Refactor** โ€” Refactored BMGD documentation using Diataxis principles for better organization (PR #1502)
147
+ * **Generate Project Context** โ€” Restored `generate-project-context` workflow for brownfield project analysis (PR #1491)
137
148
 
138
- **Role Transformation:**
149
+ ### ๐Ÿ”ง Maintenance
139
150
 
140
- - PMs evolving from spec writers โ†’ code orchestrators
141
- - Writing AI-optimized PRDs that **feed agentic pipelines directly**
142
- - UX designers generating production code with Figma-to-code tools
143
- - Technical fluency becoming **table stakes**, not optional
144
- - Reviewing PRs from AI agents alongside human developers
151
+ * **Dependency Updates** โ€” Upgraded `@clack/prompts` from v0.11.0 to v1.0.0 and added `@clack/core` (PR #1514)
152
+ * **CI Integration** โ€” Added `validate:refs` to CI quality workflow with warning annotations (PR #1494)
145
153
 
146
- **How BMad Method Enables This Future (10 Ways):**
154
+ ---
147
155
 
148
- 1. AI-Executable PRD Generation - PRDs become work packages for cloud agents
149
- 2. Automated Epic/Story Breakdown - No more manual story refinement sessions
150
- 3. Human-in-the-Loop Architecture - PMs learn while validating technical decisions
151
- 4. Cloud Agentic Pipeline Vision - Current (2025) + Future (2026) roadmap with diagrams
152
- 5. UX Design Integration - Designs validated through working prototypes
153
- 6. PM Technical Skills Development - Learn by doing through conversational workflows
154
- 7. Organizational Leverage - 1 PM โ†’ 20-50 AI agents (5-10ร— productivity multiplier)
155
- 8. Quality Consistency - What gets built matches what was specified
156
- 9. Rapid Prototyping - Hours to validate ideas vs months
157
- 10. Career Path Evolution - Positions PMs for emerging AI Agent PM, Full-Stack Product Lead roles
156
+ ## [6.0.0-Beta.5]
158
157
 
159
- **Cloud Agentic Pipeline Vision:**
158
+ ### ๐ŸŽ Features
160
159
 
161
- ```
162
- Current (2025): PM PRD โ†’ Stories โ†’ Human devs + BMad agents โ†’ PRs โ†’ Review โ†’ Deploy
163
- Future (2026): PM PRD โ†’ Stories โ†’ Cloud AI agents โ†’ Auto PRs โ†’ Review โ†’ Auto-merge โ†’ Deploy
164
- Time savings: 6-8 weeks โ†’ 2-5 days
165
- ```
160
+ * **Add generate-project-context workflow** โ€” New 3-step workflow for project context generation, integrated with quick-flow-solo-dev agent
161
+ * **Shard market research customer analysis** โ€” Refactor monolithic customer insights into 4-step detailed customer behavior analysis workflow
162
+
163
+ ### ๐Ÿ› Bug Fixes
164
+
165
+ * **Fix npm install peer dependency issues** โ€” Add `.npmrc` with `legacy-peer-deps=true`, update Starlight to 0.37.5, and add `--legacy-peer-deps` flag to module installer (PR #1476)
166
+ * **Fix leaked source paths in PRD validation report** โ€” Replace absolute `/src/core/` paths with `{project-root}/_bmad/core/` (#1481)
167
+ * **Fix orphaned market research customer analysis** โ€” Connect step-01-init to step-02-customer-behavior to complete workflow sharding (#1486)
168
+ * **Fix duplicate 2-letter brainstorming code** โ€” Change BS to BSP to resolve conflict with cis Brainstorming module
169
+ * **Fix tech writer sidecar functionality** โ€” Enable proper sidecar operation (#1487)
170
+ * **Fix relative paths in workflow steps** โ€” Correct paths in step-11-polish (#1497) and step-e-04-complete (#1498)
171
+ * **Fix party-mode workflow file extension** โ€” Correct extension in workflow.xml (#1499)
172
+ * **Fix generated slash commands** โ€” Add `disable-model-invocation` to all generated commands (#1501)
173
+ * **Fix agent scan and help CSV files** โ€” Correct module-help.csv entries
174
+ * **Fix HELP_STEP placeholder replacement** โ€” Fix placeholder not replaced in compiled agents, fix hardcoded path, fix single quote (#1437)
175
+
176
+ ### ๐Ÿ“š Documentation
177
+
178
+ * **Add exact slash commands to Getting Started guide** โ€” Provide precise command examples for users (#1505)
179
+ * **Remove .claude/commands from version control** โ€” Commands are generated, not tracked (#1506)
180
+
181
+ ### ๐Ÿ”ง Maintenance
182
+
183
+ * **Update Starlight to 0.37.5** โ€” Latest version with peer dependency compatibility
184
+ * **Add GitHub issue templates** โ€” New bug-report.yaml and documentation.yaml templates
185
+
186
+ ---
187
+
188
+ ## [6.0.0-Beta.4]
166
189
 
167
- **What Remains Human:**
190
+ ### ๐Ÿ› Bug Fixes
168
191
 
169
- - Product vision, empathy, creativity, judgment, ethics
170
- - PMs spend MORE time on human elements (AI handles execution)
171
- - Product leaders become "builder-thinkers" not just spec writers
192
+ - **Activation steps formatting fix**: Fixed missing opening quote that caused infrequent menu rendering issues
193
+ - **Custom module installation fix**: Added missing yaml require in manifest.js to fix custom module installation
172
194
 
173
- ### ๐Ÿ“– Document Tightening
195
+ ---
196
+
197
+ ## [6.0.0-Beta.3]
198
+
199
+ ### ๐ŸŒŸ Key Highlights
174
200
 
175
- **enterprise-agentic-development.md Overhaul:**
201
+ 1. **SDET Module Replaces TEA**: TEA module removed from core, SDET module added with "automate" workflow for test automation
202
+ 2. **Gemini CLI TOML Support**: IDE integration now supports the TOML config format used by Gemini CLI
203
+ 3. **File System Sprint Status**: Default project_key support for file-system based sprint status tracking
176
204
 
177
- - Reduced from 1207 โ†’ 640 lines (47% reduction)
178
- - 10ร— more BMad-centric - every section ties back to how BMad enables the future
179
- - Removed redundant examples, consolidated sections, kept actionable insights
180
- - Stronger value propositions for PMs, UX, enterprise teams throughout
205
+ ### ๐Ÿ”ง Features & Improvements
181
206
 
182
- **Key Message:** "The future isn't AI replacing PMsโ€”it's AI-augmented PMs becoming 10ร— more powerful through BMad Method."
207
+ **Module Changes:**
208
+ - **TEA Module Moved to External** (#1430, #1443): The TEA module is now external. SDET module added with a single "automate" workflow focused on test automation
209
+ - **SDET Module**: New module with streamlined test automation capabilities
183
210
 
184
- ### ๐Ÿ› ๏ธ Infrastructure & Quality
211
+ **IDE Integration:**
212
+ - **Gemini CLI TOML Format** (#1431): Previous update accidentally switched Gemini to md instead of toml.
185
213
 
186
- **Agent Naming Consistency:**
214
+ **Sprint Status:**
215
+ - **Default project_key** (#1446): File-system based sprint status now uses a default project_key so certain LLMs do not complain
187
216
 
188
- - Renamed `paige.agent.yaml` โ†’ `tech-writer.agent.yaml` (matches agent naming pattern)
189
- - Updated all references across documentation and workflow files
217
+ ### ๐Ÿ› Bug Fixes
190
218
 
191
- **README Updates:**
219
+ - **Quick-flow workflow path fix** (#1368): Fixed incorrect workflow_path in bmad-quick-flow/quick-spec steps (step-01, step-02, step-03) - changed from non-existent 'create-tech-spec' to correct 'quick-spec'
220
+ - **PRD edit flow paths**: Fixed path references in PRD editing workflow
221
+ - **Agent file handling**: Changes to prevent double agent files and use .agent.md file extensions
222
+ - **README link fix**: Corrected broken documentation links
192
223
 
193
- - Updated local installation instructions
194
- - Better hierarchy and clearer CTAs in root README
224
+ ## [6.0.0-Beta.2]
195
225
 
196
- ### ๐Ÿ”„ Breaking Changes
226
+ - Fix installer so commands match what is installed, centralize most ide into a central file instead of separate files for each ide.
227
+ - Specific IDEs may still need udpates, but all is config driven now and should be easier to maintain
228
+ - Kiro still needs updates, but its been in this state since contributed, will investigate soon
229
+ - Any version older than Beta.0 will recommend removal and reinstall to project. From later alphas though its sufficient to quick update if still desired, but best is just start fresh with Beta.
197
230
 
198
- **Variable Renames:**
231
+ ## [6.0.0-Beta.1]
199
232
 
200
- - `project_level` โ†’ `project_track` in PRD and all planning workflows
201
- - Removed `target_scale` variable (no longer needed with 3-track system)
233
+ **Release: January 2026 - Alpha to Beta Transition**
202
234
 
203
- **Workflow Path Files:**
235
+ ### ๐ŸŽ‰ Beta Release
204
236
 
205
- - Removed 9 level-based workflow paths (brownfield-level-0, greenfield-level-3, etc.)
206
- - Added 6 new track-based workflow paths (quick-flow-greenfield, method-brownfield, enterprise-greenfield, etc.)
237
+ - **Transition from Alpha to Beta**: BMad Method is now in Beta! This marks a significant milestone in the framework's development
238
+ - **NPM Default Tag**: Beta versions are now published with the `latest` tag, making `npx bmad-method` serve the beta version by default
207
239
 
208
- **Workflow Triggers:**
240
+ ### ๐ŸŒŸ Key Highlights
209
241
 
210
- - Tech-spec workflow descriptions updated to reference tracks not levels
242
+ 1. **bmad-help**: Revolutionary AI-powered guidance system replaces the alpha workflow-init and workflow tracking โ€” introduces full AI intelligence to guide users through workflows, commands, and project context
243
+ 2. **Module Ecosystem Expansion**: bmad-builder, CIS (Creative Intelligence Suite), and Game Dev Studio moved to separate repositories for focused development
244
+ 3. **Installer Consolidation**: Unified installer architecture with standardized command naming (`bmad-dash-case.md` or `bmad-*-agent-*.md`)
245
+ 4. **Windows Compatibility**: Complete migration from Inquirer.js to @clack/prompts for reliable cross-platform support
211
246
 
212
- ### ๐Ÿ“Š Impact Summary
247
+ ### ๐Ÿš€ Major Features
213
248
 
214
- These changes bring BMM from alpha.4's solid foundation to alpha.5's **production-ready professionalism**:
249
+ **bmad-help - Intelligent Guidance System:**
215
250
 
216
- - **Accuracy:** Documentation matches YAML source of truth (zero hallucination risk)
217
- - **Simplicity:** 3-track system eliminates decision paralysis and artificial complexity
218
- - **Reality:** Brownfield guidance handles messy real-world scenarios, not idealized ones
219
- - **Forward-looking:** PM/UX evolution section positions BMad as essential framework for emerging roles
220
- - **Consistency:** Standardized elicitation, input discovery, and template patterns across all workflows
221
- - **Maintainability:** 47% documentation reduction + ~114 lines of bloat removed from workflows
222
- - **Actionable:** Concrete workflows, commands, examples throughout all guidance
251
+ - **Replaces**: workflow-init and legacy workflow tracking
252
+ - **AI-Powered**: Full context awareness of installed modules, workflows, agents, and commands
253
+ - **Dynamic Discovery**: Automatically catalogs all available workflows from installed modules
254
+ - **Intelligent Routing**: Guides users to the right workflow or agent based on their goal
255
+ - **IDE Integration**: Generates proper IDE command files for all discovered workflows
223
256
 
224
- Users now have **trustworthy, reality-based, future-oriented guidance** for using BMad Method in both current workflows and emerging agentic development patterns.
257
+ **Module Restructuring:**
225
258
 
226
- ### ๐Ÿ“ฆ Files Changed
259
+ | Module | Status | New Location |
260
+ | ------------------------------------- | ------------------------------------------------- | ------------------------------------------------------- |
261
+ | **bmad-builder** | Near beta, with docs and walkthroughs coming soon | `bmad-code-org/bmad-builder` |
262
+ | **CIS** (Creative Intelligence Suite) | Published as npm package | `bmad-code-org/bmad-module-creative-intelligence-suite` |
263
+ | **Game Dev Studio** | Published as npm package | `bmad-code-org/bmad-module-game-dev-studio` |
227
264
 
228
- **Core & Infrastructure (3 files):**
265
+ ### ๐Ÿ”ง Installer & CLI Improvements
229
266
 
230
- - `bmad/core/tasks/workflow.xml` - Removed elicit-required tag
231
- - `src/core/tasks/workflow.xml` - Removed elicit-required tag
232
- - `package.json` - Version bump
267
+ **UnifiedInstaller Architecture:**
233
268
 
234
- **Documentation (8 files):**
269
+ - All IDE installers now use a common `UnifiedInstaller` class
270
+ - Standardized command naming conventions:
271
+ - Workflows: `bmad-module-workflow-name.md`
272
+ - Agents: `bmad-module-agent-name.md`
273
+ - Tasks: `bmad-task-name.md`
274
+ - Tools: `bmad-tool-name.md`
275
+ - External module installation from npm with progress indicators
276
+ - Module removal on unselect with confirmation
235
277
 
236
- - `src/modules/bmm/docs/README.md` - Track references
237
- - `src/modules/bmm/docs/agents-guide.md` - Accuracy fixes, agent ownership corrections
238
- - `src/modules/bmm/docs/brownfield-guide.md` - Phase 0 reality check, track migration
239
- - `src/modules/bmm/docs/enterprise-agentic-development.md` - PM/UX evolution, 47% reduction
240
- - `src/modules/bmm/docs/faq.md` - Track references
241
- - `src/modules/bmm/docs/glossary.md` - Track definitions, removed levels
242
- - `src/modules/bmm/docs/quick-spec-flow.md` - Track references
243
- - `src/modules/bmm/docs/scale-adaptive-system.md` - Complete 3-track rewrite
278
+ **Windows Compatibility Fix:**
244
279
 
245
- **Workflow Paths (14 files):**
280
+ - Replaced Inquirer.js with @clack/prompts to fix arrow key navigation issues on Windows
281
+ - All 91 installer workflows migrated to new prompt system
246
282
 
247
- - Removed: 9 level-based paths (brownfield-level-0 through greenfield-level-4)
248
- - Added: 6 track-based paths (quick-flow/method/enterprise ร— greenfield/brownfield)
283
+ ### ๐Ÿ“š Documentation Updates
249
284
 
250
- **Planning Workflows (11 files):**
285
+ **Significant docsite improvements:**
251
286
 
252
- - PRD workflow: Elicitation, track migration, input discovery, checklist updates
253
- - Create-epics-and-stories: Template rebuild, BDD format, elicitation, input patterns
254
- - Tech-spec: Template rebuild, BDD format, input discovery
255
- - Architecture: Elicitation points, input discovery
287
+ - Interactive workflow guide page (`/workflow-guide`) with track selector
288
+ - TEA documentation restructured using Diรกtaxis framework (25 docs)
289
+ - Style guide optimized for LLM readers (367 lines, down from 767)
290
+ - Glossary rewritten using table format (123 lines, down from 373)
291
+ - README overhaul with numbered command flows and prominent `/bmad-help` callout
292
+ - New workflow map diagram with interactive HTML
293
+ - New editorial review tasks for document quality
294
+ - E2E testing methodology for Game Dev Studio
256
295
 
257
- **Solutioning Workflows (2 files):**
296
+ More documentation updates coming soon.
258
297
 
259
- - UX Design: Input discovery streamlined
260
- - Gate-check: Input pattern cleanup, semantic descriptions
298
+ ### ๐Ÿ› Bug Fixes
261
299
 
262
- **Build & Utilities (2 files):**
300
+ - Fixed TodoMVC URL references to include `/dist/` path
301
+ - Fixed glob pattern normalization for Windows compatibility
302
+ - Fixed YAML indentation in kilo.js customInstructions field
303
+ - Fixed stale path references in check-implementation-readiness workflow
304
+ - Fixed sprint-status.yaml sync in correct-course workflow
305
+ - Fixed web bundler entry point reference
306
+ - Fixed mergeModuleHelpCatalogs ordering after generateManifests
263
307
 
264
- - Audit workflow: Updated tag scanner (removed elicit-required)
265
- - Workflow status init: Track-based initialization logic
308
+ ### ๐Ÿ“Š Statistics
266
309
 
267
- **Total: 40+ files changed**
310
+ - **91 commits** since alpha.23
311
+ - **969 files changed** (+23,716 / -91,509 lines)
312
+ - **Net reduction of ~67,793 lines** through cleanup and consolidation
313
+ - **3 major modules** moved to separate repositories
314
+ - **Complete installer refactor** for standardization
268
315
 
269
316
  ---
270
317
 
271
- ### Installation
318
+ ## [6.0.0-alpha.23]
272
319
 
273
- ```bash
274
- npx bmad-method@6.0.0-alpha.5 install
275
- ```
320
+ **Release: January 11, 2026**
276
321
 
277
- For upgrading from alpha.4:
322
+ ### ๐ŸŒŸ Key Highlights
278
323
 
279
- ```bash
280
- # Backup your customizations first
281
- npx bmad-method@6.0.0-alpha.5 install
282
- ```
324
+ 1. **Astro/Starlight Documentation Platform**: Complete migration from Docusaurus to modern Astro+Starlight for superior performance and customization
325
+ 2. **Diataxis Framework Implementation**: Professional documentation restructuring with tutorials, how-to guides, explanations, and references
326
+ 3. **Workflow Creator & Validator**: Powerful new tools for workflow creation with subprocess support and PRD validation
327
+ 4. **TEA Documentation Expansion**: Comprehensive testing documentation with cheat sheets, MCP enhancements, and API testing patterns
328
+ 5. **Brainstorming Revolution**: Research-backed procedural rigor with 100+ idea goal and anti-bias protocols
329
+ 6. **Cursor IDE Modernization**: Refactored from rules-based to command-based architecture for better IDE integration
330
+
331
+ ### ๐Ÿ“š Documentation Platform Revolution
332
+
333
+ **Astro/Starlight Migration:**
334
+
335
+ - **From Docusaurus to Astro**: Complete platform migration for improved performance, better customization, and modern tooling
336
+ - **Starlight Theme**: Professional documentation theme with dark mode default and responsive design
337
+ - **Build Pipeline Overhaul**: New build-docs.js orchestrates link checking, artifact generation, and Astro build
338
+ - **LLM-Friendly Documentation**: Generated llms.txt and llms-full.txt for AI agent discoverability
339
+ - **Downloadable Source Bundles**: bmad-sources.zip and bmad-prompts.zip for offline use
340
+
341
+ **Diataxis Framework Implementation:**
342
+
343
+ - **Four Content Types**: Professional separation into tutorials, how-to guides, explanations, and references
344
+ - **21 Files Migrated**: Phase 1 migration of core documentation to Diataxis structure
345
+ - **42+ Focused Documents**: Phase 2 split of large legacy files into manageable pieces
346
+ - **FAQ Restructuring**: 7 topic-specific FAQ files with standardized format
347
+ - **Tutorial Style Guide**: Comprehensive documentation standards for consistent content creation
348
+
349
+ **Link Management & Quality:**
350
+
351
+ - **Site-Relative Links**: Converted 217 links to repo-relative format (/docs/path/file.md)
352
+ - **Link Validation Tools**: New validate-doc-links.js and fix-doc-links.js for maintaining link integrity
353
+ - **Broken Link Fixes**: Resolved ~50 broken internal links across documentation
354
+ - **BMad Acronym Standardization**: Consistent use of "BMad" (Breakthrough Method of Agile AI Driven Development)
355
+ - **SEO Optimization**: Absolute URLs in AI meta tags for better web crawler discoverability
356
+
357
+ ### ๐Ÿ”ง Workflow Creator & Validator (Major Feature)
358
+
359
+ **Workflow Creation Tool:**
360
+
361
+ - **Subprocess Support**: Advanced workflows can now spawn subprocesses for complex operations
362
+ - **PRD Validation Step**: New validation step ensures PRD quality before workflow execution
363
+ - **Trimodal Workflow Creation**: Three-mode workflow generation system
364
+ - **Quadrivariate Module Workflow**: Four-variable workflow architecture for enhanced flexibility
365
+ - **Path Violation Checks**: Validator ensures workflows don't violate path constraints
366
+ - **Max Parallel Mode POC**: Proof-of-concept for parallel workflow validation
367
+
368
+ **Workflow Quality Improvements:**
369
+
370
+ - **PRD Trimodal Compliance**: PRD workflow now follows trimodal standards
371
+ - **Standardized Step Formatting**: Consistent markdown formatting across workflow and PRD steps
372
+ - **Better Suggested Next Steps**: Improved workflow completion guidance
373
+ - **Variable Naming Standardization**: {project_root} โ†’ {project-root} across all workflows
283
374
 
284
- ### Migration Notes
375
+ ### ๐Ÿงช TEA Documentation Expansion
285
376
 
286
- If upgrading from v6.0.0-alpha.4:
377
+ **Comprehensive Testing Guides:**
287
378
 
288
- 1. **Scale System Change:** The 5-level system (Levels 0-4) is now 3 tracks (Quick Flow, BMad Method, Enterprise Method)
289
- - Existing projects continue to work - workflows auto-detect track from context
290
- - New projects will use track-based initialization
291
- - Review `docs/scale-adaptive-system.md` for the new mental model
379
+ - **Cheat Sheets**: Quick reference guides for common testing scenarios
380
+ - **MCP Enhancements**: Model Context Protocol improvements for testing workflows
381
+ - **API Testing Patterns**: Best practices for API testing documentation
382
+ - **Design Philosophy Callout**: Clear explanation of TEA's design principles
383
+ - **Context Engineering Glossary**: New glossary entry defining context engineering concepts
384
+ - **Fragment Count Updates**: Accurate documentation of TEA workflow components
385
+ - **Playwright Utils Examples**: Updated code examples for playwright-utils integration
292
386
 
293
- 2. **Workflow Improvements:**
294
- - Better elicitation at strategic decision points (you'll be asked for input more frequently)
295
- - Cleaner templates with BDD acceptance criteria
296
- - More consistent input document discovery
387
+ ### ๐Ÿ’ก Brainstorming Workflow Overhaul
297
388
 
298
- 3. **Documentation Accuracy:**
299
- - Agent capabilities now match YAML definitions exactly
300
- - Brownfield guidance handles real-world messy scenarios
301
- - PM/UX evolution section shows future of AI-driven development
389
+ **Research-Backed Procedural Rigor:**
302
390
 
303
- 4. **Agent Naming:** Technical Writer agent file renamed (paige.agent.yaml โ†’ tech-writer.agent.yaml)
304
- - No functional impact - just internal naming consistency
391
+ - **100+ Idea Goal**: Emphasis on quantity-first approach to unlock better quality ideas
392
+ - **Anti-Bias Protocol**: Domain pivot every 10 ideas to reduce cognitive biases
393
+ - **Chain-of-Thought Requirements**: Reasoning before idea generation
394
+ - **Simulated Temperature**: Prompts for higher divergence in ideation
395
+ - **Standardized Idea Format**: Quality control template for consistent output
396
+ - **Energy Checkpoints**: Multiple continuation options to maintain creative flow
305
397
 
306
- 5. **No Breaking Changes:** Existing project structures, workflow outputs, and customizations remain compatible
398
+ **Exploration Menu Improvements:**
399
+
400
+ - **Letter-Based Navigation**: [K/T/A/B/C] options instead of numbers for clarity
401
+ - **Keep/Try/Advanced/Break/Continue**: Clear action options for idea refinement
402
+ - **Universal Facilitation Rules**: Consistent guidelines across all brainstorming steps
403
+ - **Quality Growth Enforcement**: Balance between quantity and quality metrics
404
+
405
+ ### ๐Ÿ–ฅ๏ธ Cursor IDE Modernization
406
+
407
+ **Command-Based Architecture:**
408
+
409
+ - **From Rules to Commands**: Complete refactor from rules-based to command-based system
410
+ - **Command Generation**: Automatic generation of task and tool commands
411
+ - **Commands Directory**: New `.cursor/commands/bmad/` structure for generated commands
412
+ - **Cleanup Integration**: Automatic cleanup of old BMAD commands alongside rules
413
+ - **Enhanced Logging**: Better feedback on agents, tasks, tools, and workflow commands generated
414
+
415
+ ### ๐Ÿค– Agent System Improvements
416
+
417
+ **Agent Builder & Validation:**
418
+
419
+ - **hasSidecar Field**: All agents now indicate sidecar support (true/false)
420
+ - **Validation Enforcement**: hasSidecar now required in agent validation
421
+ - **Better Brownfield Documentation**: Improved brownfield project documentation
422
+ - **Agent Builder Updates**: Agent builder now uses hasSidecar field
423
+ - **Agent Editor Integration**: Editor workflow respects hasSidecar configuration
424
+
425
+ ### ๐Ÿ› Bug Fixes & Quality Improvements
426
+
427
+ **Critical Fixes:**
428
+
429
+ - **Windows Line Endings**: Resolved CRLF issues causing cross-platform problems
430
+ - **Code-Review File Filtering**: Fixed code-review picking up non-application files
431
+ - **ERR_REQUIRE_ESM Resolution**: Dynamic import for inquirer v9+ compatibility
432
+ - **Project-Context Conflicts**: Allow full project-context usage with conflict precedence
433
+ - **Workflow Paths**: Fixed paths for workflow and sprint status files
434
+ - **Missing Scripts**: Fixed missing scripts from installation
435
+
436
+ **Workflow & Variable Fixes:**
437
+
438
+ - **Variable Naming**: Standardized from {project_root} to {project-root} across CIS, BMGD, and BMM modules
439
+ - **Workflow References**: Fixed broken .yaml โ†’ .md workflow references
440
+ - **Advanced Elicitation Variables**: Fixed undefined variables in brainstorming
441
+ - **Dependency Format**: Corrected dependency format and added missing frontmatter
442
+
443
+ **Code Quality:**
444
+
445
+ - **Dependency Updates**: Bumped qs from 6.14.0 to 6.14.1
446
+ - **CodeRabbit Integration**: Enabled auto-review on new PRs
447
+ - **TEA Fragment Counts**: Updated fragment counts for accuracy
448
+ - **Documentation Links**: Fixed Discord channel references (#general-dev โ†’ #bmad-development)
449
+
450
+ ### ๐Ÿš€ Installation & CLI Improvements
451
+
452
+ **Installation Enhancements:**
453
+
454
+ - **Workflow Exclusion**: Ability to exclude workflows from being added as commands
455
+ - **Example Workflow Protection**: Example workflow in workflow builder now excluded from tools
456
+ - **CNAME Configuration**: Added CNAME file for custom domain support
457
+ - **Script Fixes**: All scripts now properly included in installation
458
+
459
+ ### ๐Ÿ“Š Statistics
460
+
461
+ - **27 commits** since alpha.22
462
+ - **217 documentation links** converted to site-relative format
463
+ - **42+ focused documents** created from large legacy files
464
+ - **7 topic-specific FAQ files** with standardized formatting
465
+ - **Complete documentation platform** migrated from Docusaurus to Astro/Starlight
466
+ - **Major workflow tools** added: Creator, Validator with subprocess support
467
+ - **Brainstorming workflow** overhauled with research-backed rigor
307
468
 
308
469
  ---
309
470
 
310
- ## [6.0.0-alpha.4]
471
+ ## [6.0.0-alpha.22]
311
472
 
312
- **Release: November 2, 2025**
473
+ **Release: December 31, 2025**
474
+
475
+ ### ๐ŸŒŸ Key Highlights
476
+
477
+ 1. **Unified Agent Workflow**: Create, Edit, and Validate workflows consolidated into single powerful agent workflow with separate step paths
478
+ 2. **Agent Knowledge System**: Comprehensive data file architecture with persona properties, validation patterns, and crafting principles
479
+ 3. **Deep Language Integration**: All sharded progressive workflows now support language choice at every step
480
+ 4. **Core Module Documentation**: Extensive docs for core workflows (brainstorming, party mode, advanced elicitation)
481
+ 5. **BMAD Core Concepts**: New documentation structure explaining agents, workflows, modules, and installation
482
+ 6. **Tech Spec Sharded**: create-tech-spec workflow converted to sharded format with orient-first pattern
483
+
484
+ ### ๐Ÿค– Unified Agent Workflow (Major Feature)
485
+
486
+ **Consolidated Architecture:**
487
+
488
+ - **Single Workflow, Three Paths**: Create, Edit, and Validate operations unified under `src/modules/bmb/workflows/agent/`
489
+ - **steps-c/**: Create path with 9 comprehensive steps for building new agents
490
+ - **steps-e/**: Edit path with 10 steps for modifying existing agents
491
+ - **steps-v/**: Validate path for standalone agent validation review
492
+ - **data/**: Centralized knowledge base for all agent-building intel
493
+
494
+ ### ๐Ÿ“š Agent Knowledge System
495
+
496
+ **Data File Architecture:**
313
497
 
314
- This alpha release represents a major leap forward in documentation, workflow intelligence, and usability. The BMM module now features professional documentation, context-aware planning workflows, and universal document management capabilities.
498
+ Located in `src/modules/bmb/workflows/agent/data/`:
315
499
 
316
- ### ๐Ÿ“š Complete Documentation Overhaul
500
+ - **agent-metadata.md** (208 lines) - Complete metadata field reference
501
+ - **agent-menu-patterns.md** (233 lines) - Menu design patterns and best practices
502
+ - **agent-compilation.md** (273 lines) - Compilation process documentation
503
+ - **persona-properties.md** (266 lines) - Persona crafting properties and examples
504
+ - **principles-crafting.md** (292 lines) - Core principles for agent design
505
+ - **critical-actions.md** (120 lines) - Critical action patterns
506
+ - **expert-agent-architecture.md** (236 lines) - Expert agent structure
507
+ - **expert-agent-validation.md** (173 lines) - Expert-specific validation
508
+ - **module-agent-validation.md** (124 lines) - Module-specific validation
509
+ - **simple-agent-architecture.md** (204 lines) - Simple agent structure
510
+ - **simple-agent-validation.md** (132 lines) - Simple agent validation
511
+ - **understanding-agent-types.md** (222 lines) - Agent type comparison
512
+ - **brainstorm-context.md** - Brainstorming guidance
513
+ - **communication-presets.csv** - Communication style presets
317
514
 
318
- **New Documentation Hub** (`src/modules/bmm/docs/`)
515
+ **Reference Examples:**
319
516
 
320
- - Created centralized documentation system with 18 comprehensive guides (7000+ lines)
321
- - Clear learning paths for greenfield, brownfield, and quick spec flows
322
- - Professional technical writing standards throughout all documentation
323
- - Reading time estimates and cross-referenced navigation
517
+ - **reference/module-examples/architect.agent.yaml** - Module agent example
518
+ - **reference/simple-examples/commit-poet.agent.yaml** - Simple agent example
519
+ - **journal-keeper/** - Complete sidecar pattern example
324
520
 
325
- **New Documentation Files:**
521
+ **Templates:**
326
522
 
327
- - `README.md` - Complete documentation hub with topic navigation
328
- - `quick-start.md` - 15-minute getting started guide
329
- - `agents-guide.md` - Comprehensive 12-agent reference (45 min read)
330
- - `party-mode.md` - Multi-agent collaboration guide (20 min read)
331
- - `scale-adaptive-system.md` - Deep dive on Levels 0-4 (42 min read)
332
- - `brownfield-guide.md` - Existing codebase development (53 min read)
333
- - `quick-spec-flow.md` - Rapid Level 0-1 development (26 min read)
334
- - `workflows-analysis.md` - Phase 1 workflows deep-dive (12 min read)
335
- - `workflows-planning.md` - Phase 2 workflows deep-dive (19 min read)
336
- - `workflows-solutioning.md` - Phase 3 workflows deep-dive (13 min read)
337
- - `workflows-implementation.md` - Phase 4 workflows deep-dive (33 min read)
338
- - `workflows-testing.md` - Testing & QA workflows (29 min read)
339
- - `workflow-architecture-reference.md` - Architecture workflow technical reference
340
- - `workflow-document-project-reference.md` - Document-project workflow technical reference
341
- - `enterprise-agentic-development.md` - Team collaboration patterns
342
- - `faq.md` - Comprehensive Q&A covering all common questions
343
- - `glossary.md` - Complete BMM terminology reference
344
- - `troubleshooting.md` - Common issues and solutions guide
523
+ - **templates/simple-agent.template.md** - Simple agent template
524
+ - **templates/expert-agent-template/expert-agent.template.md** - Expert agent template
525
+ - **templates/expert-agent-sidecar/** - Sidecar templates (instructions, memories)
345
526
 
346
- **Documentation Improvements:**
527
+ ### ๐ŸŒ Deep Language Integration
347
528
 
348
- - Removed version/date footers (git handles versioning automatically)
349
- - Agent customization docs now include full rebuild process
350
- - Consistent professional formatting and structure across all docs
351
- - Better separation of user documentation vs developer reference
529
+ **Progressive Workflow Language Support:**
352
530
 
353
- ### ๐Ÿค– New Agent: Paige (Documentation Guide)
531
+ - **Every Step Biased**: All sharded progressive workflow steps now include language preference context
532
+ - **260+ Files Updated**: Comprehensive language integration across:
533
+ - Core workflows (brainstorming, party mode, advanced elicitation)
534
+ - BMB workflows (create-agent, create-module, create-workflow, edit-workflow, etc.)
535
+ - BMGD workflows (game-brief, gdd, narrative, game-architecture, etc.)
536
+ - BMM workflows (research, create-ux-design, prd, create-architecture, etc.)
537
+ - **Tested Languages**: Verified working with Spanish and Pirate Speak
538
+ - **Natural Conversations**: AI agents respond in configured language throughout workflow
354
539
 
355
- Introduced Paige, a specialized technical documentation agent:
540
+ ### ๐Ÿ“– Core Module Documentation
356
541
 
357
- - **Expertise:** Professional technical writing, information architecture, documentation structure
358
- - **Integration:** Available across all BMM phases for continuous documentation support
359
- - **Customizable:** Like all BMM agents, can be customized via sidecar files
360
- - **Status:** Work in progress - will evolve as documentation needs grow
542
+ **New Core Documentation Structure:**
361
543
 
362
- ### ๐Ÿš€ Quick Spec Flow - Intelligent Level 0-1 Planning
544
+ `docs/modules/core/`:
363
545
 
364
- **Major Tech-Spec Workflow Transformation:**
546
+ - **index.md** - Core module overview
547
+ - **core-workflows.md** - Core workflow documentation
548
+ - **core-tasks.md** - Core task reference
549
+ - **brainstorming.md** (100 lines) - Brainstorming workflow guide
550
+ - **party-mode.md** (50 lines) - Party mode guide
551
+ - **advanced-elicitation.md** (105 lines) - Advanced elicitation techniques
552
+ - **document-sharding-guide.md** (133 lines) - Sharded workflow format guide
553
+ - **global-core-config.md** - Global core configuration reference
365
554
 
366
- - Transformed from template-filling into context-aware intelligent planning system
367
- - Ideal for bug fixes, single endpoint additions, and small isolated changes
368
- - Auto-detects project stack (package.json, requirements.txt, etc.)
369
- - Analyzes brownfield codebases for conventions and patterns
370
- - Integrates WebSearch for current framework versions and best practices
555
+ **Advanced Elicitation Moved:**
371
556
 
372
- **Context-Aware Intelligence:**
557
+ - **From**: `docs/` root
558
+ - **To**: `src/core/workflows/advanced-elicitation/`
559
+ - **Status**: Now a proper core workflow with methods.csv
373
560
 
374
- - Interactive level detection (Level 0 vs Level 1)
375
- - Brownfield convention detection with user confirmation
376
- - Comprehensive context discovery (stack, patterns, dependencies, test frameworks)
377
- - Auto-validation with quality scoring (no manual checklist needed)
378
- - UX/UI considerations capture for user-facing changes
561
+ ### ๐Ÿ“š BMAD Core Concepts Documentation
379
562
 
380
- **Enhanced Tech-Spec Template:**
563
+ **New Documentation Structure:**
381
564
 
382
- - Expanded from 8 to 23 sections for complete planning context
383
- - New sections: Development Context, UX/UI Considerations, Integration Points
384
- - Developer Resources section with file paths and testing guidance
385
- - All sections populated via template-output tags during workflow
565
+ `docs/bmad-core-concepts/`:
386
566
 
387
- **Story Generation Improvements:**
567
+ - **index.md** - Core concepts introduction
568
+ - **agents.md** (93 lines) - Understanding agents in BMAD
569
+ - **workflows.md** (89 lines) - Understanding workflows in BMAD
570
+ - **modules.md** (76 lines) - Understanding modules (BMM, BMGD, CIS, BMB, Core)
571
+ - **installing/index.md** (77 lines) - Installation guide
572
+ - **installing/upgrading.md** (144 lines) - Upgrading guide
573
+ - **bmad-customization/index.md** - Customization overview
574
+ - **bmad-customization/agents.md** - Agent customization guide
575
+ - **bmad-customization/workflows.md** (30 lines) - Workflow customization guide
576
+ - **web-bundles/index.md** (34 lines) - Web bundle distribution guide
388
577
 
389
- - Level 0: Extract single story from comprehensive tech-spec
390
- - Level 1: Story sequence validation with acceptance criteria quality checks
391
- - User Story Template includes Dev Agent Record sections for implementation tracking
392
- - Complete epic template rewrite with proper variable structure
578
+ **Documentation Cleanup:**
393
579
 
394
- **Phase 4 Integration:**
580
+ - **Removed v4-to-v6-upgrade.md** - Outdated upgrade guide
581
+ - **Removed document-sharding-guide.md** from docs root (moved to core)
582
+ - **Removed web-bundles-gemini-gpt-guide.md** - Consolidated into web-bundles/index.md
583
+ - **Removed getting-started/installation.md** - Migrated to bmad-core-concepts
584
+ - **Removed all ide-info/*.md files** - Consolidated into web-bundles documentation
395
585
 
396
- - Story Context and Create Story workflows now recognize tech-spec as authoritative source
397
- - Seamless integration between Quick Spec Flow and traditional BMM workflows
398
- - Tech-spec provides brownfield analysis, framework details, and existing patterns
586
+ ### ๐Ÿ”ง Create-Tech-Spec Sharded Conversion
399
587
 
400
- ### ๐Ÿ“ฆ Universal Document Sharding
588
+ **Monolithic to Sharded:**
401
589
 
402
- **New Capability: Shard-Doc Workflow**
590
+ - **From**: Single `workflow.yaml` with `instructions.md`
591
+ - **To**: Sharded `workflow.md` with individual step files
592
+ - **Pattern**: Orient-first approach (understand before investigating)
403
593
 
404
- - Split large markdown documents into organized, smaller files based on sections
405
- - Dual-strategy loading: include individual shards OR single large document
406
- - Configurable section level (default: level 2 headings)
407
- - Automatic index.md generation with navigation links
408
- - Ideal for large guides, API documentation, and knowledge bases
594
+ ### ๐Ÿ”จ Additional Improvements
409
595
 
410
- **Use Cases:**
596
+ **Workflow Status Path Fixes:**
411
597
 
412
- - Breaking down massive planning documents for better context management
413
- - Creating navigable documentation hierarchies
414
- - Managing agent knowledge bases efficiently
415
- - Optimizing context window usage during development
598
+ - **Corrected Discovery Paths**: workflow-status workflows now properly use planning_artifacts and implementation_artifacts
599
+ - **Updated All Path Files**: enterprise-brownfield, enterprise-greenfield, method-brownfield, method-greenfield
416
600
 
417
- **Integration:**
601
+ **Documentation Updates:**
418
602
 
419
- - Available as BMad Core workflow: `/bmad:core:tools:shard-doc`
420
- - Works with any markdown document in your project
421
- - Preserves original file with automatic backups
422
- - Generated shards maintain formatting and structure
603
+ - **BMB Agent Creation Guide**: Comprehensive 166-line guide for agent creation
604
+ - **Workflow Vendoring Doc**: New 42-line guide on workflow customization and inheritance
605
+ - **Document Project Reference**: Moved from BMM docs to shared location
606
+ - **Workflows Planning Guide**: New 89-line guide for planning workflows
423
607
 
424
- ### ๐Ÿ”ง Planning Workflow Enhancements
608
+ **BMB Documentation Streamlining:**
425
609
 
426
- **Intent-Driven Discovery (Product Brief & PRD):**
610
+ - **Removed Redundant Docs**: Eliminated duplicate documentation in `src/modules/bmb/docs/`
611
+ - **Step File Rules**: New 469-line comprehensive guide for step file creation
612
+ - **Agent Docs Moved**: Agent architecture and validation docs moved to workflow data/
427
613
 
428
- - Transformed from rigid template-filling to natural conversational discovery
429
- - Adaptive questioning based on project context (hobby/startup/enterprise)
430
- - Real-time document building instead of end-of-session generation
431
- - Skill-level aware facilitation (expert/intermediate/beginner)
432
- - Context detection from user responses to guide exploration depth
614
+ **Windows Inquirer Fix:**
433
615
 
434
- **Product Brief Workflow (96% BMAD v6 compliance):**
616
+ - **Another Default Addition**: Additional inquirer default value setting for better Windows multiselection support
435
617
 
436
- - Intent-driven facilitation with context-appropriate probing
437
- - Living document approach with continuous template updates
438
- - Enhanced discovery areas: problem exploration, solution vision, user understanding
439
- - Ruthless MVP scope management with feature prioritization
440
- - Template improvements with context-aware conditional sections
618
+ **Code Quality:**
441
619
 
442
- **PRD Workflow (improved from 65% to 85%+ compliance):**
620
+ - **Removed Old BMM README**: Consolidated module documentation
621
+ - **Removed BMM Troubleshooting**: 661-line doc moved to shared location
622
+ - **Removed Enterprise Agentic Development**: 686-line doc consolidated
623
+ - **Removed Scale Adaptive System**: 618-line doc consolidated
443
624
 
444
- - Fixed critical config issues (missing date variable, status file extension mismatch)
445
- - Scale-adaptive intelligence with project type detection (API/Web App/Mobile/SaaS)
446
- - Domain complexity mapping (14 domain types with specialized considerations)
447
- - Enhanced requirements coverage: project-type specific sections, domain considerations
448
- - Separated epic planning into dedicated create-epics-and-stories child workflow
625
+ ---
626
+
627
+ ## [6.0.0-alpha.21]
628
+
629
+ **Release: December 27, 2025**
630
+
631
+ ### ๐ŸŒŸ Key Highlights
632
+
633
+ 1. **Consistent Menu System**: All agents now use standardized 2-letter menu codes (e.g., "rd" for research, "ca" for create-architecture)
634
+ 2. **Planning Artifacts Architecture**: Phase 1-3 workflows now properly segregate planning artifacts from documentation
635
+ 3. **Windows Installer Fixed Again**: Updated inquirer to resolve multiselection tool issues
636
+ 4. **Auto-Injected Features**: Chat and party mode automatically injected into all agents
637
+ 5. **Validation System**: All agents now pass comprehensive new validation checks
449
638
 
450
- **Architecture Workflow:**
639
+ ### ๐ŸŽฏ Consistent Menu System (Major Feature)
451
640
 
452
- - Better integration with PRD outputs
453
- - Domain complexity context support
454
- - Enhanced technical decision capture framework
641
+ **Standardized 2-Letter Codes:**
455
642
 
456
- ### ๐Ÿ› ๏ธ Research Workflow Improvements
643
+ - **Compound Menu Triggers**: All agents now use consistent 2-letter compound trigger format (e.g., `bmm-rd`, `bmm-ca`)
644
+ - **Improved UX**: Shorter, more memorable command shortcuts across all modules
645
+ - **Module Prefixing**: Menu items properly scoped by module prefix (bmm-, bmgd-, cis-, bmb-)
646
+ - **Universal Pattern**: All 22 agents updated to follow the same menu structure
457
647
 
458
- **Enhanced Research Capabilities:**
648
+ **Agent Updates:**
459
649
 
460
- - Updated to use web search more frequently for current information
461
- - Better understanding of current date context for finding latest documentation
462
- - Improved deep research prompt generation options
463
- - More accurate and up-to-date research results
650
+ - **BMM Module**: 9 agents with standardized menus (pm, analyst, architect, dev, ux-designer, tech-writer, sm, tea, quick-flow-solo-dev)
651
+ - **BMGD Module**: 6 agents with standardized menus (game-architect, game-designer, game-dev, game-qa, game-scrum-master, game-solo-dev)
652
+ - **CIS Module**: 6 agents with standardized menus (innovation-strategist, design-thinking-coach, creative-problem-solver, brainstorming-coach, presentation-master, storyteller)
653
+ - **BMB Module**: 3 agents with standardized menus (bmad-builder, agent-builder, module-builder, workflow-builder)
654
+ - **Core Module**: BMAD Master agent updated with consistent menu patterns
464
655
 
465
- ### ๐ŸŽจ User Experience Improvements
656
+ ### ๐Ÿ“ Planning Artifacts Architecture
466
657
 
467
- **Installer Updates:**
658
+ **Content Segregation Implementation:**
468
659
 
469
- - Improved installation notes and guidance
470
- - Better command examples (shard-doc uses npx command pattern)
660
+ - **Phase 1-3 Workflows**: All planning workflows now use `planning_artifacts` folder (default changed from `docs`)
661
+ - **Proper Input Discovery**: Workflows follow consistent input discovery patterns from planning artifacts
662
+ - **Output Management**: Planning artifacts properly separated from long-term documentation
663
+ - **Affected Workflows**:
664
+ - Product Brief: Updated discovery and output to planning artifacts
665
+ - PRD: Fixed discovery and output to planning artifacts
666
+ - UX Design: Updated all steps for proper artifact handling
667
+ - Architecture: Updated discovery and output flow
668
+ - Game Architecture: Updated for planning artifacts
669
+ - Story Creation: Updated workflow output paths
471
670
 
472
- **Workflow Cleanup:**
671
+ **File Organization:**
473
672
 
474
- - Removed unused voice hooks functionality
475
- - Cleaned up backup and temporary files
476
- - Better workflow naming consistency
673
+ - **Planning Artifacts**: Ephemeral planning documents (prd.md, product-brief.md, ux-design.md, architecture.md)
674
+ - **Documentation**: Long-term project documentation (separate from planning)
675
+ - **Module Configuration**: BMM and BMGD modules updated with proper default paths
477
676
 
478
- ### ๐Ÿ“‹ Infrastructure & Quality
677
+ ### ๐ŸชŸ Windows Installer Fixes
479
678
 
480
- **Agent & Workflow Manifests:**
679
+ **Inquirer Multiselection Fix:**
481
680
 
482
- - Added Paige to agent manifest
483
- - Updated workflow manifest with new and restructured workflows
484
- - Better workflow-to-agent mappings across all documentation
485
- - Updated files manifest with all new documentation
681
+ - **Updated Inquirer Version**: Resolved tool multiselection issues that were causing Windows installer failures
682
+ - **Better Compatibility**: Improved handling of checkbox and multi-select prompts on Windows(?)
486
683
 
487
- **Module Organization:**
684
+ ### ๐Ÿค– Agent System Improvements
488
685
 
489
- - Streamlined BMM README to lean signpost format
490
- - Polished root README with better hierarchy and clear CTAs
491
- - Moved documentation from root `docs/` to module-specific locations
492
- - Better separation of user docs vs developer reference
686
+ **Auto-Injected Features:**
493
687
 
494
- **Data Infrastructure:**
688
+ - **Chat Mode**: Automatically injected into all agents during compilation
689
+ - **Party Mode**: Automatically injected into all agents during compilation
690
+ - **Reduced Manual Configuration**: No need to manually add these features to agent definitions
691
+ - **Consistent Behavior**: All agents now have uniform access to chat and party mode capabilities
495
692
 
496
- - New CSV data files for project types and domain complexity
497
- - Enhanced workflow configuration with runtime variables
498
- - Better template variable mapping and tracking
693
+ **Agent Normalization:**
499
694
 
500
- ### ๐Ÿ”„ Breaking Changes
695
+ - **All Agents Validated**: All 22 agents pass comprehensive validation checks
696
+ - **Schema Enforcement**: Proper compound trigger validation implemented
697
+ - **Metadata Cleanup**: Removed obsolete and inconsistent metadata patterns
698
+ - **Test Fixtures Updated**: Validation test fixtures aligned with new requirements
501
699
 
502
- **File Removals:**
700
+ ### ๐Ÿ”ง Bug Fixes & Cleanup
503
701
 
504
- - Removed `src/modules/bmm/workflows/2-plan-workflows/prd/epics-template.md` (replaced by create-epics-and-stories child workflow)
702
+ **Docusaurus Merge Recovery:**
505
703
 
506
- **Workflow Trigger Changes:**
704
+ - **Restored Agent Files**: Fixed agent files accidentally modified in Docusaurus merge (PR #1191)
705
+ - **Reference Cleanup**: Removed obsolete agent reference examples (journal-keeper, security-engineer, trend-analyst)
706
+ - **Test Fixture Updates**: Aligned test fixtures with current validation requirements
507
707
 
508
- - PM agent: `prd` โ†’ `create-prd`
509
- - New workflow triggers: `create-epics-and-stories`, `validate-prd`
510
- - Game Designer agent triggers renamed for consistency
708
+ **Code Quality:**
511
709
 
512
- ### ๐Ÿ“– What's Next (Beta Roadmap)
710
+ - **Schema Improvements**: Enhanced agent schema validation with better error messages
711
+ - **Removed Redundancy**: Cleaned up duplicate and obsolete agent definitions
712
+ - **Installer Cleanup**: Removed unused configuration code from BMM installer
513
713
 
514
- - Knowledge base integration for enhanced context management
515
- - Web bundle functionality completion
516
- - Additional specialized agents based on community feedback
517
- - Enhanced multi-agent collaboration patterns
518
- - Performance optimizations for large projects
714
+ **Planning Artifacts Path:**
715
+ - Default: `planning_artifacts/` (configurable in module.yaml)
716
+ - Previous: `docs/`
717
+ - Benefit: Clear separation between planning work and permanent documentation
519
718
 
520
719
  ---
521
720
 
522
- ### Installation
721
+ ## [6.0.0-alpha.20]
523
722
 
524
- ```bash
525
- npx bmad-method@6.0.0-alpha.4 install
526
- ```
723
+ **Release: December 23, 2025**
527
724
 
528
- For upgrading from alpha.3:
725
+ ### ๐ŸŒŸ Key Highlights
529
726
 
530
- ```bash
531
- # Backup your customizations first
532
- npx bmad-method@6.0.0-alpha.4 install
533
- ```
727
+ 1. **Windows Installer Fixed**: Better compatibility with inquirer v9.x upgrade
728
+ 2. **Path Segregation**: Revolutionary content organization separating ephemeral artifacts from permanent documentation
729
+ 3. **Custom Installation Messages**: Configurable intro/outro messages for professional installation experience
730
+ 4. **Enhanced Upgrade Logic**: Two-version auto upgrades with proper config preservation
731
+ 5. **Quick-Dev Refactor**: Sharded format with comprehensive adversarial review
732
+ 6. **Improved Quality**: Streamlined personas, fixed workflows, and cleaned up documentation
733
+ 7. **Doc Site Auto Generation**; Auto Generate a docusaurus site update on merge
534
734
 
535
- ### Migration Notes
735
+ ### ๐ŸชŸ Windows Installer (hopefully) Fixed
536
736
 
537
- If upgrading from v6.0.0-alpha.3:
737
+ **Inquirer Upgrade:**
538
738
 
539
- 1. New documentation is available in `bmad/bmm/docs/` - review the README.md for navigation
540
- 2. Tech-spec workflow now has enhanced capabilities - review `docs/quick-spec-flow.md`
541
- 3. Product Brief and PRD workflows have new conversational approaches
542
- 4. Paige agent is now available for documentation tasks
543
- 5. No breaking changes to existing project structures
739
+ - **Updated to v9.x**: Upgraded inquirer package for better Windows support
740
+ - **Improved Compatibility**: Better handling of Windows terminal environments
741
+ - **Enhanced UX**: More reliable interactive prompts across platforms
742
+
743
+ ### ๐ŸŽฏ Path Segregation Implementation (Major Feature)
744
+
745
+ **Revolutionary Content Organization:**
746
+
747
+ - **Phase 1-4 Path Segregation**: Implemented new BM paths across all BMM and BMGD workflows
748
+ - **Planning vs Implementation Artifacts**: Separated ephemeral Phase 4 artifacts from permanent documentation
749
+ - **Optimized File Organization**: Better structure differentiating planning artifacts from long-term project documentation
750
+ - **Backward Compatible**: Existing installations continue working while preparing for optimized content organization
751
+ - **Module Configuration Updates**: Enhanced module.yaml with new path configurations for all phases
752
+ - **Workflow Path Updates**: All 90+ workflow files updated with proper path configurations
753
+
754
+ **Documentation Cleanup:**
755
+
756
+ - **Removed Obsolete Documentation**: Cleaned up 3,100+ lines of outdated documentation
757
+ - **Streamlined README Files**: Consolidated and improved module documentation
758
+ - **Enhanced Clarity**: Removed redundant content and improved information architecture
759
+
760
+ ### ๐Ÿ’ฌ Installation Experience Enhancements
761
+
762
+ **Custom Installation Messages:**
763
+
764
+ - **Configurable Intro/Outro Messages**: New install-messages.yaml file for customizable installation messages
765
+ - **Professional Installation Flow**: Custom welcome messages and completion notifications
766
+ - **Module-Specific Messaging**: Tailored messages for different installation contexts
767
+ - **Enhanced User Experience**: More informative and personalized installation process
768
+
769
+ **Core Module Improvements:**
770
+
771
+ - **Always Ask Questions**: Core module now always prompts for configuration (no accept defaults)
772
+ - **Better User Engagement**: Ensures users actively configure their installation
773
+ - **Improved Configuration Accuracy**: Reduces accidental acceptance of defaults
774
+
775
+ ### ๐Ÿ”ง Upgrade & Configuration Management
776
+
777
+ **Two-Version Auto Upgrade:**
778
+
779
+ - **Smarter Upgrade Logic**: Automatic upgrades now span 2 versions (e.g., .16 โ†’ .18)
780
+ - **Config Variable Preservation**: Ensures all configuration variables are retained during quick updates
781
+ - **Seamless Updates**: Quick updates now preserve custom settings properly
782
+ - **Enhanced Upgrade Safety**: Better handling of configuration across version boundaries
783
+
784
+ ### ๐Ÿค– Workflow Improvements
785
+
786
+ **Quick-Dev Workflow Refactor (PR #1182):**
787
+
788
+ - **Sharded Format Conversion**: Converted quick-dev workflow to modern step-file format
789
+ - **Adversarial Review Integration**: Added comprehensive self-check and adversarial review steps
790
+ - **Enhanced Quality Assurance**: 6-step process with mode detection, context gathering, execution, self-check, review, and resolution
791
+ - **578 New Lines Added**: Significant expansion of quick-dev capabilities
792
+
793
+ **BMGD Workflow Fixes:**
794
+
795
+ - **workflow-status Filename Correction**: Fixed incorrect filename references (PR #1172)
796
+ - **sprint-planning Update**: Added workflow-status update to game-architecture completion
797
+ - **Path Corrections**: Resolved dead references and syntax errors (PR #1164)
798
+
799
+ ### ๐ŸŽจ Code Quality & Refactoring
800
+
801
+ **Persona Streamlining (PR #1167):**
802
+
803
+ - **Quick-Flow-Solo-Dev Persona**: Streamlined for clarity and accuracy
804
+ - **Improved Agent Behavior**: More focused and efficient solo development support
805
+
806
+ **Package Management:**
807
+
808
+ - **package-lock.json Sync**: Ensured version consistency (PR #1168)
809
+ - **Dependency Cleanup**: Reduced package-lock bloat significantly
810
+
811
+ **Prettier Configuration:**
812
+
813
+ - **Markdown Underscore Protection**: Prettier will no longer mess up underscores in markdown files
814
+ - **Disabled Auto-Fix**: Markdown formatting issues now handled more intelligently
815
+ - **Better Code Formatting**: Improved handling of special characters in documentation
816
+
817
+ ### ๐Ÿ“š Documentation Updates
818
+
819
+ **Sponsor Attribution:**
820
+
821
+ - **DigitalOcean Sponsorship**: Added attribution for DigitalOcean support (PR #1162)
822
+
823
+ **Content Reorganization:**
824
+
825
+ - **Removed Unused Docs**: Eliminated obsolete documentation files
826
+ - **Consolidated References**: Merged and reorganized technical references
827
+ - **Enhanced README Files**: Improved module and workflow documentation
828
+
829
+ ### ๐Ÿงน Cleanup & Optimization
830
+
831
+ **File Organization:**
832
+
833
+ - **Removed Asterisk Insertion**: Eliminated unwanted asterisk insertions into agent files
834
+ - **Removed Unused Commands**: Cleaned up deprecated command references
835
+ - **Consolidated Duplication**: Reduced code duplication across multiple files
836
+ - **Removed Unneeded Folders**: Cleaned up temporary and obsolete directory structures
837
+
838
+ ### ๐Ÿ“Š Statistics
839
+
840
+ - **23 commits** since alpha.19
841
+ - **90+ workflow files** updated with new path configurations
842
+ - **3,100+ lines of documentation** removed and reorganized
843
+ - **578 lines added** to quick-dev workflow with adversarial review
844
+ - **Major architectural improvement** to content organization
845
+
846
+ ## [6.0.0-alpha.19]
847
+
848
+ **Release: December 18, 2025**
849
+
850
+ ### ๐Ÿ› Bug Fixes
851
+
852
+ **Installer Stability:**
853
+
854
+ - **Fixed \_bmad Folder Stutter**: Resolved issue with duplicate \_bmad folder creation when applying agent custom files
855
+ - **Cleaner Installation**: Removed unnecessary backup file that was causing bloat in the installer
856
+ - **Streamlined Agent Customization**: Fixed path handling for agent custom files to prevent folder duplication
857
+
858
+ ### ๐Ÿ“Š Statistics
859
+
860
+ - **3 files changed** with critical fix
861
+ - **3,688 lines removed** by eliminating backup files
862
+ - **Improved installer performance** and stability
544
863
 
545
864
  ---
546
865
 
547
- ## [6.0.0-alpha.3]
866
+ ## [6.0.0-alpha.18]
548
867
 
549
- ### Codex Installer
868
+ **Release: December 18, 2025**
550
869
 
551
- - Codex installer uses custom prompts in `.codex/prompts/`, instead of `AGENTS.md`
870
+ ### ๐ŸŽฎ BMGD Module - Complete Game Development Module Updated
552
871
 
553
- ## [6.0.0-alpha.0]
872
+ **Massive BMGD Overhaul:**
554
873
 
555
- **Release: September 28, 2025**
874
+ - **New Game QA Agent (GLaDOS)**: Elite Game QA Architect with test automation specialization
875
+ - Engine-specific expertise: Unity, Unreal, Godot testing frameworks
876
+ - Comprehensive knowledge base with 15+ testing topics
877
+ - Complete testing workflows: test-framework, test-design, automate, playtest-plan, performance-test, test-review
878
+
879
+ - **New Game Solo Dev Agent (Indie)**: Rapid prototyping and iteration specialist
880
+ - Quick-flow workflows optimized for solo/small team development
881
+ - Streamlined development process for indie game creators
882
+
883
+ - **Production Workflow Alignment**: BMGD 4-production now fully aligned with BMM 4-implementation
884
+ - Removed obsolete workflows: story-done, story-ready, story-context, epic-tech-context
885
+ - Added sprint-status workflow for project tracking
886
+ - All workflows updated as standalone with proper XML instructions
887
+
888
+ **Game Testing Architecture:**
889
+
890
+ - **Complete Testing Knowledge Base**: 15 comprehensive testing guides covering:
891
+ - Engine-specific: Unity (TF 1.6.0), Unreal, Godot testing
892
+ - Game-specific: Playtesting, balance, save systems, multiplayer
893
+ - Platform: Certification (TRC/XR), localization, input systems
894
+ - QA Fundamentals: Automation, performance, regression, smoke testing
895
+
896
+ **New Workflows & Features:**
897
+
898
+ - **workflow-status**: Multi-mode status checker for game projects
899
+ - Game-specific project levels (Game Jam โ†’ AAA)
900
+ - Support for gamedev and quickflow paths
901
+ - Project initialization workflow
902
+
903
+ - **create-tech-spec**: Game-focused technical specification workflow
904
+ - Engine-aware (Unity/Unreal/Godot) specifications
905
+ - Performance and gameplay feel considerations
906
+
907
+ - **Enhanced Documentation**: Complete documentation suite with 9 guides
908
+ - agents-guide.md: Reference for all 6 agents
909
+ - workflows-guide.md: Complete workflow documentation
910
+ - game-types-guide.md: 24 game type templates
911
+ - quick-flow-guide.md: Rapid development guide
912
+ - Comprehensive troubleshooting and glossary
913
+
914
+ ### ๐Ÿค– Agent Management Improved
915
+
916
+ **Agent Recompile Feature:**
917
+
918
+ - **New Menu Item**: Added "Recompile Agents" option to the installer menu
919
+ - **Selective Compilation**: Recompile only agents without full module upgrade
920
+ - **Faster Updates**: Quick agent updates without complete reinstallation
921
+ - **Customization Integration**: Automatically applies customizations during recompile
922
+
923
+ **Agent Customization Enhancement:**
924
+
925
+ - **Complete Field Support**: ALL fields from agent customization YAML are now properly injected
926
+ - **Deep Merge Implementation**: Customizations now properly override all agent properties
927
+ - **Persistent Customizations**: Custom settings survive updates and recompiles
928
+ - **Enhanced Flexibility**: Support for customizing metadata, persona, menu items, and workflows
929
+
930
+ ### ๐Ÿ”ง Installation & Module Management
931
+
932
+ **Custom Module Installation:**
933
+
934
+ - **Enhanced Module Addition**: Modify install now supports adding custom modules even if none were originally installed
935
+ - **Flexible Module Management**: Easy addition and removal of custom modules post-installation
936
+ - **Improved Manifest Tracking**: Better tracking of custom vs core modules
937
+
938
+ **Quality Improvements:**
939
+
940
+ - **Comprehensive Code Review**: Fixed 20+ issues identified in PR review
941
+ - **Type Validation**: Added proper type checking for configuration values
942
+ - **Path Security**: Enhanced path traversal validation for better security
943
+ - **Documentation Updates**: All documentation updated to reflect new features
944
+
945
+ ### ๐Ÿ“Š Statistics
946
+
947
+ - **178 files changed** with massive BMGD expansion
948
+ - **28,350+ lines added** across testing documentation and workflows
949
+ - **2 new agents** added to BMGD module
950
+ - **15 comprehensive testing guides** created
951
+ - **Complete alignment** between BMGD and BMM production workflows
952
+
953
+ ### ๐ŸŒŸ Key Highlights
954
+
955
+ 1. **BMGD Module Revolution**: Complete overhaul with professional game development workflows
956
+ 2. **Game Testing Excellence**: Comprehensive testing architecture for all major game engines
957
+ 3. **Agent Management**: New recompile feature allows quick agent updates without full reinstall
958
+ 4. **Full Customization Support**: All agent fields now customizable via YAML
959
+ 5. **Industry-Ready Documentation**: Professional-grade guides for game development teams
960
+
961
+ ---
962
+
963
+ ## [6.0.0-alpha.17]
964
+
965
+ **Release: December 16, 2025**
966
+
967
+ ### ๐Ÿš€ Revolutionary Installer Overhaul
968
+
969
+ **Unified Installation Experience:**
970
+
971
+ - **Streamlined Module Installation**: Completely redesigned installer with unified flow for both core and custom content
972
+ - **Single Install Panel**: Eliminated disjointed clearing between modules for smoother, more intuitive installation
973
+ - **Quick Default Selection**: New quick install feature with default selections for faster setup of selected modules
974
+ - **Enhanced UI/UX**: Improved question order, reduced verbose output, and cleaner installation interface
975
+ - **Logical Question Flow**: Reorganized installer questions to follow natural progression and user expectations
976
+
977
+ **Custom Content Installation Revolution:**
556
978
 
557
- Initial alpha release of a major rewrite and overhaul improvement of past versions.
979
+ - **Full Custom Content Support**: Re-enabled complete custom content generation and sharing through the installer
980
+ - **Custom Module Tracking**: Manifest now tracks custom modules separately to ensure they're always installed from the custom cache
981
+ - **Custom Installation Order**: Custom modules now install after core modules for better dependency management
982
+ - **Quick Update with Custom Content**: Quick update now properly retains and updates custom content
983
+ - **Agent Customization Integration**: Customizations are now applied during quick updates and agent compilation
558
984
 
559
- ### Major New Features
985
+ ### ๐Ÿง  Revolutionary Agent Memory & Visibility System
560
986
 
561
- - **Lean Core**: The core of BMad is very simple - common tasks that apply to any future module or agents, along with common agents that will be added to any modules - bmad-web-orchestrator and bmad-master.
562
- - **BMad Method**: The new BMad Method (AKA bmm) is a complete overhaul of the v4 method, now a fully scale adaptive rewrite. The workflow now scales from small enhancements to massive undertakings across multiple services or architectures, supporting a new vast array of project type, including a full subclass of game development specifics.
563
- - **BoMB**: The BMad Builder (AKA BoMB) now is able to fully automate creation and conversion of expansion packs from v6 to modules in v6 along with the net new ideation and brainstorming through implementation and testing of net new Modules, Workflows (were tasks and templates), Module Agents, and Standalone Personal Agents
564
- - **CIS**: The Creative Intelligence Suite (AKA CIS)
987
+ **Breaking Through Dot-Folder Limitations:**
565
988
 
566
- ## [v6.0.0] - SKIPPED
989
+ - **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
990
+ - **Universal Content Visibility**: Underscore folders are treated as regular content, ensuring full AI agent access to all BMAD resources and configurations
991
+ - **Agent Memory Architecture**: Rolled out comprehensive agent memory support for installed agents with `-sidecar` folders
992
+ - **Persistent Agent Learning**: Sidecar content installs to `_bmad/_memory`, giving each agent the ability to learn and remember important information specific to its role
993
+
994
+ **Content Location Strategy:**
995
+
996
+ - **Standardized Memory Location**: All sidecar content now uses `_bmad/_memory` as the unified location for agent memories
997
+ - **Segregated Output System**: New architecture supports differentiating between ephemeral Phase 4 artifacts and long-term documentation
998
+ - **Forward Compatibility**: Existing installations continue working with content in docs folder, with optimization coming in next release
999
+ - **Configuration Cleanup**: Renamed `_cfg` to `_config` for clearer naming conventions
1000
+ - **YAML Library Consolidation**: Reduced dependency to use only one YAML library for better stability
1001
+
1002
+ ### ๐ŸŽฏ Future-Ready Architecture
1003
+
1004
+ **Content Organization Preview:**
1005
+
1006
+ - **Phase 4 Artifact Segregation**: Infrastructure ready for separating ephemeral workflow artifacts from permanent documentation
1007
+ - **Planning vs Implementation Docs**: New system will differentiate between planning artifacts and long-term project documentation
1008
+ - **Backward Compatibility**: Current installs maintain full functionality while preparing for optimized content organization
1009
+ - **Quick Update Path**: Tomorrow's quick update will fully optimize all BMM workflows to use new segregated output locations
1010
+
1011
+ ### ๐ŸŽฏ Sample Modules & Documentation
1012
+
1013
+ **Comprehensive Examples:**
1014
+
1015
+ - **Sample Unitary Module**: Complete example with commit-poet agent and quiz-master workflow
1016
+ - **Sample Wellness Module**: Meditation guide and wellness companion agents demonstrating advanced patterns
1017
+ - **Enhanced Documentation**: Updated README files and comprehensive installation guides
1018
+ - **Custom Content Creation Guides**: Step-by-step documentation for creating and sharing custom modules
1019
+
1020
+ ### ๐Ÿ”ง Bug Fixes & Optimizations
1021
+
1022
+ **Installer Improvements:**
1023
+
1024
+ - **Fixed Duplicate Entry Issue**: Resolved duplicate entries in files manifest
1025
+ - **Reduced Log Noise**: Less verbose logging during installation for cleaner user experience
1026
+ - **Menu Wording Updates**: Improved menu text for better clarity and understanding
1027
+ - **Fixed Quick Install**: Resolved issues with quick installation functionality
1028
+
1029
+ **Code Quality:**
1030
+
1031
+ - **Minor Code Cleanup**: General cleanup and refactoring throughout the codebase
1032
+ - **Removed Unused Code**: Cleaned up deprecated and unused functionality
1033
+ - **Release Workflow Restoration**: Fixed automated release workflow for v6
1034
+
1035
+ **BMM Phase 4 Workflow Improvements:**
1036
+
1037
+ - **Sprint Status Enhancement**: Improved sprint-status validation with interactive correction for unknown values and better epic status handling
1038
+ - **Story Status Standardization**: Normalized all story status references to lowercase kebab-case (ready-for-dev, in-progress, review, done)
1039
+ - **Removed Stale Story State**: Eliminated deprecated 'drafted' story state - stories now go directly from creation to ready-for-dev
1040
+ - **Code Review Clarity**: Improved code review completion message from "Story is ready for next work!" to "Code review complete!" for better clarity
1041
+ - **Risk Detection Rules**: Rewrote risk detection rules for better LLM clarity and fixed warnings vs risks naming inconsistency
1042
+
1043
+ ### ๐Ÿ“Š Statistics
1044
+
1045
+ - **40+ commits** since alpha.16
1046
+ - **Major installer refactoring** with complete UX overhaul
1047
+ - **2 new sample modules** with comprehensive examples
1048
+ - **Full custom content support** re-enabled and improved
1049
+
1050
+ ### ๐ŸŒŸ Key Highlights
1051
+
1052
+ 1. **Installer Revolution**: The installation system has been completely overhauled for better user experience, reliability, and speed
1053
+ 2. **Custom Content Freedom**: Users can now easily create, share, and install custom content through the streamlined installer
1054
+ 3. **AI Visibility Breakthrough**: Migration from `.bmad` to `_bmad` ensures LLMs can access all BMAD content (dot folders are commonly ignored by AI systems)
1055
+ 4. **Agent Memory System**: Rolled out persistent agent memory support - agents with `-sidecar` folders can now learn and remember important information in `_bmad/_memory`
1056
+ 5. **Quick Default Selection**: Installation is now faster with smart default selections for popular configurations
1057
+ 6. **Future-Ready Architecture**: Infrastructure in place for segregating ephemeral artifacts from permanent documentation (full optimization coming in next release)
1058
+
1059
+ ## [6.0.0-alpha.16]
1060
+
1061
+ **Release: December 10, 2025**
1062
+
1063
+ ### ๐Ÿ”ง Temporary Changes & Fixes
1064
+
1065
+ **Installation Improvements:**
1066
+
1067
+ - **Temporary Custom Content Installation Disable**: Custom content installation temporarily disabled to improve stability
1068
+ - **BMB Workflow Path Fixes**: Fixed numerous path references in BMB workflows to ensure proper step file resolution
1069
+ - **Package Updates**: Updated dependencies for improved security and performance
1070
+
1071
+ **Path Resolution Improvements:**
1072
+
1073
+ - **BMB Agent Builder Fixes**: Corrected path references in step files and documentation
1074
+ - **Workflow Path Standardization**: Ensured consistent path handling across all BMB workflows
1075
+ - **Documentation References**: Updated internal documentation links and references
1076
+
1077
+ **Cleanup Changes:**
1078
+
1079
+ - **Example Modules Removal**: Temporarily removed example modules to prevent accidental installation
1080
+ - **Memory Management**: Improved sidecar file handling for custom modules
1081
+
1082
+ ### ๐Ÿ“Š Statistics
1083
+
1084
+ - **336 files changed** with path fixes and improvements
1085
+ - **4 commits** since alpha.15
1086
+
1087
+ ---
1088
+
1089
+ ## [6.0.0-alpha.15]
1090
+
1091
+ **Release: December 7, 2025**
1092
+
1093
+ ### ๐Ÿ”ง Module Installation Standardization
1094
+
1095
+ **Unified Module Configuration:**
1096
+
1097
+ - **module.yaml Standard**: All modules now use `module.yaml` instead of `_module-installer/install-config.yaml` for consistent configuration (BREAKING CHANGE)
1098
+ - **Universal Installer**: Both core and custom modules now use the same installer with consistent behavior
1099
+ - **Streamlined Module Creation**: Module builder templates updated to use new module.yaml standard
1100
+ - **Enhanced Module Discovery**: Improved module caching and discovery mechanisms
1101
+
1102
+ **Custom Content Installation Revolution:**
1103
+
1104
+ - **Interactive Custom Content Search**: Installer now proactively asks if you have custom content to install
1105
+ - **Flexible Location Specification**: Users can indicate custom content location during installation
1106
+ - **Improved Custom Module Handler**: Enhanced error handling and debug output for custom installations
1107
+ - **Comprehensive Documentation**: New custom-content-installation.md guide (245 lines) replacing custom-agent-installation.md
1108
+
1109
+ ### ๐Ÿค– Code Review Integration Expansion
1110
+
1111
+ **AI Review Tools:**
1112
+
1113
+ - **CodeRabbit AI Integration**: Added .coderabbit.yaml configuration for automated code review
1114
+ - **Raven's Verdict PR Review Tool**: New PR review automation tool (297 lines of documentation)
1115
+ - **Review Path Configuration**: Proper exclusion patterns for node_modules and generated files
1116
+ - **Review Documentation**: Comprehensive usage guidance and skip conditions for PRs
1117
+
1118
+ ### ๐Ÿ“š Documentation Improvements
1119
+
1120
+ **Documentation Restructuring:**
1121
+
1122
+ - **Code of Conduct**: Moved to .github/ folder following GitHub standards
1123
+ - **Gem Creation Link**: Updated to point to Gemini Gem manager instead of deprecated interface
1124
+ - **Example Custom Content**: Improved README files and disabled example modules to prevent accidental installation
1125
+ - **Custom Module Documentation**: Enhanced module installation guides with new YAML structure
1126
+
1127
+ ### ๐Ÿงน Cleanup & Optimization
1128
+
1129
+ **Memory Management:**
1130
+
1131
+ - **Removed Hardcoded .bmad Folders**: Cleaned up demo content to use configurable paths
1132
+ - **Sidecar File Cleanup**: Removed old .bmad-user-memory folders from wellness modules
1133
+ - **Example Content Organization**: Better organization of example-custom-content directory
1134
+
1135
+ **Installer Improvements:**
1136
+
1137
+ - **Debug Output Enhancement**: Added informative debug output when installer encounters errors
1138
+ - **Custom Module Caching**: Improved caching mechanism for custom module installations
1139
+ - **Consistent Behavior**: All modules now behave consistently regardless of custom or core status
1140
+
1141
+ ### ๐Ÿ“Š Statistics
1142
+
1143
+ - **77 files changed** with 2,852 additions and 607 deletions
1144
+ - **15 commits** since alpha.14
1145
+
1146
+ ### โš ๏ธ Breaking Changes
1147
+
1148
+ 1. **module.yaml Configuration**: All modules must now use `module.yaml` instead of `_module-installer/install-config.yaml`
1149
+ - Core modules updated automatically
1150
+ - Custom modules will need to rename their configuration file
1151
+ - Module builder templates generate new format
1152
+
1153
+ ### ๐Ÿ“ฆ New Dependencies
1154
+
1155
+ - No new dependencies added in this release
1156
+
1157
+ ---
1158
+
1159
+ ## [6.0.0-alpha.14]
1160
+
1161
+ **Release: December 7, 2025**
1162
+
1163
+ ### ๐Ÿ”ง Installation & Configuration Revolution
1164
+
1165
+ **Custom Module Installation Overhaul:**
1166
+
1167
+ - **Simple custom.yaml Installation**: Custom agents and workflows can now be installed with a single YAML file
1168
+ - **IDE Configuration Preservation**: Upgrades will no longer delete custom modules, agents, and workflows from IDE configuration
1169
+ - **Removed Legacy agent-install Command**: Streamlined installation process (BREAKING CHANGE)
1170
+ - **Sidecar File Retention**: Custom sidecar files are preserved during updates
1171
+ - **Flexible Agent Sidecar Locations**: Fully configurable via config options instead of hardcoded paths
1172
+
1173
+ **Module Discovery System Transformation:**
1174
+
1175
+ - **Recursive Agent Discovery**: Deep scanning for agents across entire project structure
1176
+ - **Enhanced Manifest Generation**: Comprehensive scanning of all installed modules
1177
+ - **Nested Agent Support**: Fixed nested agents appearing in CLI commands
1178
+ - **Module Reinstall Fix**: Prevented modules from showing as obsolete during reinstall
1179
+
1180
+ ### ๐Ÿ—๏ธ Advanced Builder Features
1181
+
1182
+ **Workflow Builder Evolution:**
1183
+
1184
+ - **Continuable Workflows**: Create workflows with sophisticated branching and continuation logic
1185
+ - **Template LOD Options**: Level of Detail output options for flexible workflow generation
1186
+ - **Step-Based Architecture**: Complete conversion to granular step-file system
1187
+ - **Enhanced Creation Process**: Improved workflow creation with better template handling
1188
+
1189
+ **Module Builder Revolution:**
1190
+
1191
+ - **11-Step Module Creation**: Comprehensive step-by-step module generation process
1192
+ - **Production-Ready Templates**: Complete templates for agents, installers, and workflow plans
1193
+ - **Built-in Validation System**: Ensures module quality and BMad Core compliance
1194
+ - **Professional Documentation**: Auto-generated module documentation and structure
1195
+
1196
+ ### ๐Ÿš€ BMad Method (BMM) Enhancements
1197
+
1198
+ **Workflow Improvements:**
1199
+
1200
+ - **Brownfield PRD Support**: Enhanced PRD workflow for existing project integration
1201
+ - **Sprint Status Command**: New workflow for tracking development progress
1202
+ - **Step-Based Format**: Improved continue functionality across all workflows
1203
+ - **Quick-Spec-Flow Documentation**: Rapid development specification flows
1204
+
1205
+ **Documentation Revolution:**
1206
+
1207
+ - **Comprehensive Troubleshooting Guide**: 680-line detailed troubleshooting documentation
1208
+ - **Quality Check Integration**: Added markdownlint-cli2 for markdown quality assurance
1209
+ - **Enhanced Test Architecture**: Improved CI/CD templates and testing workflows
1210
+
1211
+ ### ๐ŸŒŸ New Features & Integrations
1212
+
1213
+ **Kiro-Cli Installer:**
1214
+
1215
+ - **Intelligent Routing**: Smart routing to quick-dev workflow
1216
+ - **BMad Core Compliance**: Full compliance with BMad standards
1217
+
1218
+ **Discord Notifications:**
1219
+
1220
+ - **Compact Format**: Streamlined plain-text notifications
1221
+ - **Bug Fixes**: Resolved notification delivery issues
1222
+
1223
+ **Example Mental Wellness Module (MWM):**
1224
+
1225
+ - **Complete Module Example**: Demonstrates advanced module patterns
1226
+ - **Multiple Agents**: CBT Coach, Crisis Navigator, Meditation Guide, Wellness Companion
1227
+ - **Workflow Showcase**: Crisis support, daily check-in, meditation, journaling workflows
1228
+
1229
+ ### ๐Ÿ› Bug Fixes & Optimizations
1230
+
1231
+ - Fixed version reading from package.json instead of hardcoded fallback
1232
+ - Removed hardcoded years from WebSearch queries
1233
+ - Removed broken build caching mechanism
1234
+ - Enhanced TTS injection summary with tracking and documentation
1235
+ - Fixed CI nvmrc configuration issues
1236
+
1237
+ ### ๐Ÿ“Š Statistics
1238
+
1239
+ - **335 files changed** with 17,161 additions and 8,204 deletions
1240
+ - **46 commits** since alpha.13
1241
+
1242
+ ### โš ๏ธ Breaking Changes
1243
+
1244
+ 1. **Removed agent-install Command**: Migrate to new custom.yaml installation system
1245
+ 2. **Agent Sidecar Configuration**: Now requires explicit config instead of hardcoded paths
1246
+
1247
+ ### ๐Ÿ“ฆ New Dependencies
1248
+
1249
+ - `markdownlint-cli2: ^0.19.1` - Professional markdown linting
1250
+
1251
+ ---
1252
+
1253
+ ## [6.0.0-alpha.13]
1254
+
1255
+ **Release: November 30, 2025**
1256
+
1257
+ ### ๐Ÿ—๏ธ Revolutionary Workflow Architecture
1258
+
1259
+ - **Step-File System**: Complete conversion to granular step-file architecture with dynamic menu generation
1260
+ - **Phase 4 Transformation**: Simplified architecture with sprint planning integration (Jira, Linear, Trello)
1261
+ - **Performance Improvements**: Eliminated time-based estimates, reduced file loading times
1262
+ - **Legacy Cleanup**: Removed all deprecated workflows for cleaner system
1263
+
1264
+ ### ๐Ÿค– Agent System Revolution
1265
+
1266
+ - **Universal Custom Agent Support**: Extended to ALL IDEs including Antigravity and Rovo Dev
1267
+ - **Agent Creation Workflow**: Enhanced with better documentation and parameter clarity
1268
+ - **Multi-Source Discovery**: Agents now check multiple source locations for better discovery
1269
+ - **GitHub Migration**: Integration moved from chatmodes to agents folder
1270
+
1271
+ ### ๐Ÿงช Testing Infrastructure
1272
+
1273
+ - **Playwright Utils Integration**: @seontechnologies/playwright-utils across all testing workflows
1274
+ - **TTS Injection System**: Complete text-to-speech integration for voice feedback
1275
+ - **Web Bundle Test Support**: Enabled web bundles for test environments
1276
+
1277
+ ### โš ๏ธ Breaking Changes
1278
+
1279
+ 1. **Legacy Workflows Removed**: Migrate to new stepwise sharded workflows
1280
+ 2. **Phase 4 Restructured**: Update automation expecting old Phase 4 structure
1281
+ 3. **Agent Compilation Required**: Custom agents must use new creation workflow
1282
+
1283
+ ## [6.0.0-alpha.12]
1284
+
1285
+ **Release: November 19, 2025**
1286
+
1287
+ ### ๐Ÿ› Bug Fixes
1288
+
1289
+ - Added missing `yaml` dependency to fix `MODULE_NOT_FOUND` error when running `npx bmad-method install`
1290
+
1291
+ ## [6.0.0-alpha.11]
1292
+
1293
+ **Release: November 18, 2025**
1294
+
1295
+ ### ๐Ÿš€ Agent Installation Revolution
1296
+
1297
+ - **bmad agent-install CLI**: Interactive agent installation with persona customization
1298
+ - **4 Reference Agents**: commit-poet, journal-keeper, security-engineer, trend-analyst
1299
+ - **Agent Compilation Engine**: YAML โ†’ XML with smart handler injection
1300
+ - **60 Communication Presets**: Pure communication styles for agent personas
1301
+
1302
+ ### ๐Ÿ“š BMB Agent Builder Enhancement
1303
+
1304
+ - **Complete Documentation Suite**: 7 new guides for agent architecture and creation
1305
+ - **Expert Agent Sidecar Support**: Multi-file agents with templates and knowledge bases
1306
+ - **Unified Validation**: 160-line checklist shared across workflows
1307
+ - **BMM Agent Voices**: All 9 agents enhanced with distinct communication styles
1308
+
1309
+ ### ๐ŸŽฏ Workflow Architecture Change
1310
+
1311
+ - **Epic Creation Moved**: Now in Phase 3 after Architecture for technical context
1312
+ - **Excalidraw Distribution**: Diagram capabilities moved to role-appropriate agents
1313
+ - **Google Antigravity IDE**: New installer with flattened file naming
1314
+
1315
+ ### โš ๏ธ Breaking Changes
1316
+
1317
+ 1. **Frame Expert Retired**: Use role-appropriate agents for diagrams
1318
+ 2. **Agent Installation**: New bmad agent-install command replaces manual installation
1319
+ 3. **Epic Creation Phase**: Moved from Phase 2 to Phase 3
1320
+
1321
+ ## [6.0.0-alpha.10]
1322
+
1323
+ **Release: November 16, 2025**
1324
+
1325
+ - **Epics After Architecture**: Major milestone - technically-informed user stories created post-architecture
1326
+ - **Frame Expert Agent**: New Excalidraw specialist with 4 diagram workflows
1327
+ - **Time Estimate Prohibition**: Warnings across 33 workflows acknowledging AI's impact on development speed
1328
+ - **Platform-Specific Commands**: ide-only/web-only fields filter menu items by environment
1329
+ - **Agent Customization**: Enhanced memory/prompts merging via \*.customize.yaml files
1330
+
1331
+ ## [6.0.0-alpha.9]
1332
+
1333
+ **Release: November 12, 2025**
1334
+
1335
+ - **Intelligent File Discovery**: discover_inputs with FULL_LOAD, SELECTIVE_LOAD, INDEX_GUIDED strategies
1336
+ - **3-Track System**: Simplified from 5 levels to 3 intuitive tracks
1337
+ - **Web Bundles Guide**: Comprehensive documentation with 60-80% cost savings strategies
1338
+ - **Unified Output Structure**: Eliminated .ephemeral/ folders - single configurable output folder
1339
+ - **BMGD Phase 4**: Added 10 game development workflows with BMM patterns
1340
+
1341
+ ## [6.0.0-alpha.8]
1342
+
1343
+ **Release: November 9, 2025**
1344
+
1345
+ - **Configurable Installation**: Custom directories with .bmad hidden folder default
1346
+ - **Optimized Agent Loading**: CLI loads from installed files, eliminating duplication
1347
+ - **Party Mode Everywhere**: All web bundles include multi-agent collaboration
1348
+ - **Phase 4 Artifact Separation**: Stories, code reviews, sprint plans configurable outside docs
1349
+ - **Expanded Web Bundles**: All BMM, BMGD, CIS agents bundled with elicitation integration
1350
+
1351
+ ## [6.0.0-alpha.7]
1352
+
1353
+ **Release: November 7, 2025**
1354
+
1355
+ - **Workflow Vendoring**: Web bundler performs automatic cross-module dependency vendoring
1356
+ - **BMGD Module Extraction**: Game development split into standalone 4-phase structure
1357
+ - **Advanced Elicitation Fix**: Added missing CSV files to workflow bundles
1358
+ - **Claude Code Fix**: Resolved README slash command installation regression
1359
+
1360
+ ## [6.0.0-alpha.6]
1361
+
1362
+ **Release: November 4, 2025**
1363
+
1364
+ - **Critical Installer Fixes**: Fixed manifestPath error and option display issues
1365
+ - **Conditional Docs Installation**: Optional documentation to reduce production footprint
1366
+ - **Improved Installer UX**: Better formatting with descriptive labels and clearer feedback
1367
+ - **Issue Tracker Cleanup**: Closed 54 legacy v4 issues for focused v6 development
1368
+ - **Contributing Updates**: Removed references to non-existent branches
1369
+
1370
+ ## [6.0.0-alpha.5]
1371
+
1372
+ **Release: November 4, 2025**
1373
+
1374
+ - **3-Track Scale System**: Simplified from 5 levels to 3 intuitive preference-driven tracks
1375
+ - **Elicitation Modernization**: Replaced legacy XML tags with explicit invoke-task pattern
1376
+ - **PM/UX Evolution**: Added November 2025 industry research on AI Agent PMs
1377
+ - **Brownfield Reality Check**: Rewrote Phase 0 with 4 real-world scenarios
1378
+ - **Documentation Accuracy**: All agent capabilities now match YAML source of truth
1379
+
1380
+ ## [6.0.0-alpha.4]
1381
+
1382
+ **Release: November 2, 2025**
1383
+
1384
+ - **Documentation Hub**: Created 18 comprehensive guides (7000+ lines) with professional standards
1385
+ - **Paige Agent**: New technical documentation specialist across all BMM phases
1386
+ - **Quick Spec Flow**: Intelligent Level 0-1 planning with auto-stack detection
1387
+ - **Universal Shard-Doc**: Split large markdown documents with dual-strategy loading
1388
+ - **Intent-Driven Planning**: PRD and Product Brief transformed from template-filling to conversation
1389
+
1390
+ ## [6.0.0-alpha.3]
1391
+
1392
+ **Release: October 2025**
1393
+
1394
+ - **Codex Installer**: Custom prompts in `.codex/prompts/` directory structure
1395
+ - **Bug Fixes**: Various installer and workflow improvements
1396
+ - **Documentation**: Initial documentation structure established
1397
+
1398
+ ## [6.0.0-alpha.0]
1399
+
1400
+ **Release: September 28, 2025**
567
1401
 
568
- **Note**: Version 5.0.0 was skipped due to NPX registry issues that corrupted the version. Development continues with v6.0.0-alpha.0.
1402
+ - **Lean Core**: Simple common tasks and agents (bmad-web-orchestrator, bmad-master)
1403
+ - **BMad Method (BMM)**: Complete scale-adaptive rewrite supporting projects from small enhancements to massive undertakings
1404
+ - **BoMB**: BMad Builder for creating and converting modules, workflows, and agents
1405
+ - **CIS**: Creative Intelligence Suite for ideation and creative workflows
1406
+ - **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.
569
1407
 
570
1408
  ## [v4.43.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.43.0)
571
1409