bmad-method 6.0.0-alpha.9 → 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 (931) 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 +1074 -674
  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 -396
  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 -206
  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 +39 -74
  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 -104
  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 -589
  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 -1161
  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 +1600 -272
  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 +183 -61
  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/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
  458. package/.github/ISSUE_TEMPLATE/idea_submission.md +0 -109
  459. package/.github/workflows/bundle-latest.yaml +0 -277
  460. package/.github/workflows/manual-release.yaml +0 -212
  461. package/docs/BUNDLE_DISTRIBUTION_SETUP.md +0 -95
  462. package/docs/agent-customization-guide.md +0 -208
  463. package/docs/document-sharding-guide.md +0 -447
  464. package/docs/ide-info/auggie.md +0 -31
  465. package/docs/ide-info/claude-code.md +0 -25
  466. package/docs/ide-info/cline.md +0 -31
  467. package/docs/ide-info/codex.md +0 -21
  468. package/docs/ide-info/crush.md +0 -30
  469. package/docs/ide-info/cursor.md +0 -25
  470. package/docs/ide-info/gemini.md +0 -25
  471. package/docs/ide-info/github-copilot.md +0 -26
  472. package/docs/ide-info/iflow.md +0 -33
  473. package/docs/ide-info/kilo.md +0 -24
  474. package/docs/ide-info/opencode.md +0 -24
  475. package/docs/ide-info/qwen.md +0 -25
  476. package/docs/ide-info/roo.md +0 -27
  477. package/docs/ide-info/trae.md +0 -25
  478. package/docs/ide-info/windsurf.md +0 -22
  479. package/docs/installers-bundlers/ide-injections.md +0 -186
  480. package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -388
  481. package/docs/installers-bundlers/web-bundler-usage.md +0 -54
  482. package/docs/v4-to-v6-upgrade.md +0 -227
  483. package/docs/web-bundles-gemini-gpt-guide.md +0 -473
  484. package/src/core/_module-installer/install-config.yaml +0 -35
  485. package/src/core/_module-installer/installer.js +0 -60
  486. package/src/core/agents/bmad-web-orchestrator.agent.xml +0 -113
  487. package/src/core/tasks/adv-elicit-methods.csv +0 -39
  488. package/src/core/tasks/advanced-elicitation.xml +0 -106
  489. package/src/core/tasks/validate-workflow.xml +0 -89
  490. package/src/core/tools/shard-doc.xml +0 -109
  491. package/src/core/workflows/brainstorming/README.md +0 -261
  492. package/src/core/workflows/brainstorming/instructions.md +0 -315
  493. package/src/core/workflows/brainstorming/workflow.yaml +0 -43
  494. package/src/core/workflows/party-mode/instructions.md +0 -183
  495. package/src/core/workflows/party-mode/workflow.yaml +0 -27
  496. package/src/modules/bmb/README.md +0 -194
  497. package/src/modules/bmb/_module-installer/install-config.yaml +0 -31
  498. package/src/modules/bmb/agents/bmad-builder.agent.yaml +0 -59
  499. package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -142
  500. package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
  501. package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
  502. package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
  503. package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
  504. package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
  505. package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
  506. package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -34
  507. package/src/modules/bmb/workflows/create-agent/README.md +0 -203
  508. package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -415
  509. package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
  510. package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
  511. package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +0 -174
  512. package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
  513. package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
  514. package/src/modules/bmb/workflows/create-agent/instructions.md +0 -456
  515. package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -49
  516. package/src/modules/bmb/workflows/create-module/README.md +0 -229
  517. package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
  518. package/src/modules/bmb/workflows/create-module/checklist.md +0 -235
  519. package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
  520. package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
  521. package/src/modules/bmb/workflows/create-module/instructions.md +0 -576
  522. package/src/modules/bmb/workflows/create-module/module-structure.md +0 -400
  523. package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -44
  524. package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
  525. package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  526. package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
  527. package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -724
  528. package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1306
  529. package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  530. package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
  531. package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  532. package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -65
  533. package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -42
  534. package/src/modules/bmb/workflows/edit-agent/README.md +0 -112
  535. package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
  536. package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -290
  537. package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -35
  538. package/src/modules/bmb/workflows/edit-module/README.md +0 -187
  539. package/src/modules/bmb/workflows/edit-module/checklist.md +0 -165
  540. package/src/modules/bmb/workflows/edit-module/instructions.md +0 -339
  541. package/src/modules/bmb/workflows/edit-module/workflow.yaml +0 -36
  542. package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
  543. package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
  544. package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
  545. package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -29
  546. package/src/modules/bmb/workflows/module-brief/README.md +0 -264
  547. package/src/modules/bmb/workflows/module-brief/checklist.md +0 -116
  548. package/src/modules/bmb/workflows/module-brief/instructions.md +0 -267
  549. package/src/modules/bmb/workflows/module-brief/template.md +0 -275
  550. package/src/modules/bmb/workflows/module-brief/workflow.yaml +0 -31
  551. package/src/modules/bmb/workflows/redoc/README.md +0 -87
  552. package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
  553. package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
  554. package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
  555. package/src/modules/bmgd/README.md +0 -208
  556. package/src/modules/bmgd/_module-installer/install-config.yaml +0 -54
  557. package/src/modules/bmgd/agents/game-architect.agent.yaml +0 -33
  558. package/src/modules/bmgd/agents/game-designer.agent.yaml +0 -40
  559. package/src/modules/bmgd/agents/game-dev.agent.yaml +0 -40
  560. package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +0 -75
  561. package/src/modules/bmgd/teams/default-party.csv +0 -10
  562. package/src/modules/bmgd/teams/team-gamedev.yaml +0 -18
  563. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +0 -26
  564. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-context.md +0 -115
  565. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +0 -128
  566. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +0 -41
  567. package/src/modules/bmgd/workflows/1-preproduction/game-brief/checklist.md +0 -128
  568. package/src/modules/bmgd/workflows/1-preproduction/game-brief/instructions.md +0 -371
  569. package/src/modules/bmgd/workflows/1-preproduction/game-brief/template.md +0 -205
  570. package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +0 -44
  571. package/src/modules/bmgd/workflows/2-design/gdd/checklist.md +0 -148
  572. package/src/modules/bmgd/workflows/2-design/gdd/game-types/action-platformer.md +0 -45
  573. package/src/modules/bmgd/workflows/2-design/gdd/game-types/adventure.md +0 -84
  574. package/src/modules/bmgd/workflows/2-design/gdd/game-types/card-game.md +0 -76
  575. package/src/modules/bmgd/workflows/2-design/gdd/game-types/fighting.md +0 -89
  576. package/src/modules/bmgd/workflows/2-design/gdd/game-types/horror.md +0 -86
  577. package/src/modules/bmgd/workflows/2-design/gdd/game-types/idle-incremental.md +0 -78
  578. package/src/modules/bmgd/workflows/2-design/gdd/game-types/metroidvania.md +0 -87
  579. package/src/modules/bmgd/workflows/2-design/gdd/game-types/moba.md +0 -74
  580. package/src/modules/bmgd/workflows/2-design/gdd/game-types/party-game.md +0 -79
  581. package/src/modules/bmgd/workflows/2-design/gdd/game-types/puzzle.md +0 -58
  582. package/src/modules/bmgd/workflows/2-design/gdd/game-types/racing.md +0 -88
  583. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rhythm.md +0 -79
  584. package/src/modules/bmgd/workflows/2-design/gdd/game-types/roguelike.md +0 -69
  585. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rpg.md +0 -70
  586. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sandbox.md +0 -79
  587. package/src/modules/bmgd/workflows/2-design/gdd/game-types/shooter.md +0 -62
  588. package/src/modules/bmgd/workflows/2-design/gdd/game-types/simulation.md +0 -73
  589. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sports.md +0 -75
  590. package/src/modules/bmgd/workflows/2-design/gdd/game-types/strategy.md +0 -71
  591. package/src/modules/bmgd/workflows/2-design/gdd/game-types/survival.md +0 -79
  592. package/src/modules/bmgd/workflows/2-design/gdd/game-types/text-based.md +0 -91
  593. package/src/modules/bmgd/workflows/2-design/gdd/game-types/tower-defense.md +0 -79
  594. package/src/modules/bmgd/workflows/2-design/gdd/game-types/turn-based-tactics.md +0 -88
  595. package/src/modules/bmgd/workflows/2-design/gdd/game-types/visual-novel.md +0 -89
  596. package/src/modules/bmgd/workflows/2-design/gdd/game-types.csv +0 -25
  597. package/src/modules/bmgd/workflows/2-design/gdd/gdd-template.md +0 -153
  598. package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -501
  599. package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +0 -81
  600. package/src/modules/bmgd/workflows/2-design/narrative/checklist.md +0 -139
  601. package/src/modules/bmgd/workflows/2-design/narrative/instructions-narrative.md +0 -603
  602. package/src/modules/bmgd/workflows/2-design/narrative/narrative-template.md +0 -195
  603. package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +0 -38
  604. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +0 -321
  605. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-template.md +0 -103
  606. package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +0 -240
  607. package/src/modules/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +0 -222
  608. package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +0 -699
  609. package/src/modules/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +0 -13
  610. package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +0 -67
  611. package/src/modules/bmgd/workflows/4-production/code-review/backlog_template.md +0 -12
  612. package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +0 -22
  613. package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -398
  614. package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +0 -57
  615. package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +0 -279
  616. package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +0 -206
  617. package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +0 -52
  618. package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +0 -240
  619. package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -256
  620. package/src/modules/bmgd/workflows/4-production/create-story/template.md +0 -51
  621. package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +0 -68
  622. package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +0 -38
  623. package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -267
  624. package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +0 -53
  625. package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
  626. package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -164
  627. package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
  628. package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -52
  629. package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +0 -1442
  630. package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +0 -52
  631. package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +0 -234
  632. package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +0 -55
  633. package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +0 -50
  634. package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
  635. package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
  636. package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -209
  637. package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -57
  638. package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
  639. package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -28
  640. package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
  641. package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -25
  642. package/src/modules/bmm/README.md +0 -128
  643. package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
  644. package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
  645. package/src/modules/bmm/_module-installer/install-config.yaml +0 -60
  646. package/src/modules/bmm/_module-installer/installer.js +0 -131
  647. package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +0 -35
  648. package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +0 -32
  649. package/src/modules/bmm/agents/analyst.agent.yaml +0 -48
  650. package/src/modules/bmm/agents/architect.agent.yaml +0 -42
  651. package/src/modules/bmm/agents/dev.agent.yaml +0 -40
  652. package/src/modules/bmm/agents/pm.agent.yaml +0 -61
  653. package/src/modules/bmm/agents/sm.agent.yaml +0 -72
  654. package/src/modules/bmm/agents/tea.agent.yaml +0 -65
  655. package/src/modules/bmm/agents/tech-writer.agent.yaml +0 -73
  656. package/src/modules/bmm/agents/ux-designer.agent.yaml +0 -38
  657. package/src/modules/bmm/docs/README.md +0 -235
  658. package/src/modules/bmm/docs/agents-guide.md +0 -1056
  659. package/src/modules/bmm/docs/brownfield-guide.md +0 -754
  660. package/src/modules/bmm/docs/enterprise-agentic-development.md +0 -680
  661. package/src/modules/bmm/docs/faq.md +0 -587
  662. package/src/modules/bmm/docs/glossary.md +0 -320
  663. package/src/modules/bmm/docs/party-mode.md +0 -224
  664. package/src/modules/bmm/docs/quick-spec-flow.md +0 -652
  665. package/src/modules/bmm/docs/quick-start.md +0 -366
  666. package/src/modules/bmm/docs/scale-adaptive-system.md +0 -599
  667. package/src/modules/bmm/docs/test-architecture.md +0 -394
  668. package/src/modules/bmm/docs/workflow-architecture-reference.md +0 -371
  669. package/src/modules/bmm/docs/workflow-document-project-reference.md +0 -487
  670. package/src/modules/bmm/docs/workflows-analysis.md +0 -370
  671. package/src/modules/bmm/docs/workflows-implementation.md +0 -284
  672. package/src/modules/bmm/docs/workflows-planning.md +0 -601
  673. package/src/modules/bmm/docs/workflows-solutioning.md +0 -501
  674. package/src/modules/bmm/teams/default-party.csv +0 -19
  675. package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +0 -675
  676. package/src/modules/bmm/testarch/knowledge/component-tdd.md +0 -486
  677. package/src/modules/bmm/testarch/knowledge/contract-testing.md +0 -957
  678. package/src/modules/bmm/testarch/knowledge/data-factories.md +0 -500
  679. package/src/modules/bmm/testarch/knowledge/email-auth.md +0 -721
  680. package/src/modules/bmm/testarch/knowledge/error-handling.md +0 -725
  681. package/src/modules/bmm/testarch/knowledge/feature-flags.md +0 -750
  682. package/src/modules/bmm/testarch/knowledge/fixture-architecture.md +0 -401
  683. package/src/modules/bmm/testarch/knowledge/network-first.md +0 -486
  684. package/src/modules/bmm/testarch/knowledge/nfr-criteria.md +0 -670
  685. package/src/modules/bmm/testarch/knowledge/playwright-config.md +0 -730
  686. package/src/modules/bmm/testarch/knowledge/probability-impact.md +0 -601
  687. package/src/modules/bmm/testarch/knowledge/risk-governance.md +0 -615
  688. package/src/modules/bmm/testarch/knowledge/selective-testing.md +0 -732
  689. package/src/modules/bmm/testarch/knowledge/selector-resilience.md +0 -527
  690. package/src/modules/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
  691. package/src/modules/bmm/testarch/knowledge/test-levels-framework.md +0 -473
  692. package/src/modules/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
  693. package/src/modules/bmm/testarch/knowledge/test-quality.md +0 -664
  694. package/src/modules/bmm/testarch/knowledge/timing-debugging.md +0 -372
  695. package/src/modules/bmm/testarch/knowledge/visual-debugging.md +0 -524
  696. package/src/modules/bmm/testarch/tea-index.csv +0 -22
  697. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
  698. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  699. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
  700. package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
  701. package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  702. package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -56
  703. package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  704. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -522
  705. package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  706. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -65
  707. package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  708. package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  709. package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
  710. package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  711. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -437
  712. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -674
  713. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
  714. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -533
  715. package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  716. package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
  717. package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  718. package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
  719. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  720. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1306
  721. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
  722. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -99
  723. package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -346
  724. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -80
  725. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -292
  726. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -53
  727. package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
  728. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -525
  729. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
  730. package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
  731. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -76
  732. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -217
  733. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -74
  734. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +0 -434
  735. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -978
  736. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  737. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  738. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -57
  739. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -321
  740. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  741. package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -240
  742. package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  743. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -696
  744. package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  745. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -96
  746. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -169
  747. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -302
  748. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
  749. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -66
  750. package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  751. package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
  752. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -398
  753. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -57
  754. package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +0 -279
  755. package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +0 -206
  756. package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -52
  757. package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +0 -240
  758. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -256
  759. package/src/modules/bmm/workflows/4-implementation/create-story/template.md +0 -51
  760. package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -68
  761. package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +0 -38
  762. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -267
  763. package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -53
  764. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  765. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -164
  766. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  767. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -52
  768. package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +0 -1442
  769. package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
  770. package/src/modules/bmm/workflows/4-implementation/sprint-planning/checklist.md +0 -33
  771. package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +0 -234
  772. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +0 -55
  773. package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -50
  774. package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  775. package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  776. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -209
  777. package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -57
  778. package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  779. package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -28
  780. package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  781. package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
  782. package/src/modules/bmm/workflows/document-project/checklist.md +0 -245
  783. package/src/modules/bmm/workflows/document-project/instructions.md +0 -222
  784. package/src/modules/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
  785. package/src/modules/bmm/workflows/document-project/workflow.yaml +0 -36
  786. package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
  787. package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  788. package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
  789. package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  790. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +0 -262
  791. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
  792. package/src/modules/bmm/workflows/testarch/atdd/checklist.md +0 -373
  793. package/src/modules/bmm/workflows/testarch/atdd/instructions.md +0 -785
  794. package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +0 -54
  795. package/src/modules/bmm/workflows/testarch/automate/checklist.md +0 -580
  796. package/src/modules/bmm/workflows/testarch/automate/instructions.md +0 -1303
  797. package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +0 -63
  798. package/src/modules/bmm/workflows/testarch/ci/checklist.md +0 -246
  799. package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
  800. package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
  801. package/src/modules/bmm/workflows/testarch/ci/instructions.md +0 -517
  802. package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +0 -55
  803. package/src/modules/bmm/workflows/testarch/framework/checklist.md +0 -321
  804. package/src/modules/bmm/workflows/testarch/framework/instructions.md +0 -455
  805. package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +0 -55
  806. package/src/modules/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
  807. package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
  808. package/src/modules/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
  809. package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -58
  810. package/src/modules/bmm/workflows/testarch/test-design/checklist.md +0 -234
  811. package/src/modules/bmm/workflows/testarch/test-design/instructions.md +0 -782
  812. package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
  813. package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +0 -58
  814. package/src/modules/bmm/workflows/testarch/test-review/checklist.md +0 -470
  815. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +0 -608
  816. package/src/modules/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
  817. package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +0 -55
  818. package/src/modules/bmm/workflows/testarch/trace/checklist.md +0 -654
  819. package/src/modules/bmm/workflows/testarch/trace/instructions.md +0 -1045
  820. package/src/modules/bmm/workflows/testarch/trace/trace-template.md +0 -673
  821. package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +0 -68
  822. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +0 -823
  823. package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +0 -29
  824. package/src/modules/bmm/workflows/workflow-status/instructions.md +0 -387
  825. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -120
  826. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -108
  827. package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -52
  828. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -104
  829. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -95
  830. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  831. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  832. package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +0 -59
  833. package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -24
  834. package/src/modules/bmm/workflows/workflow-status/workflow.yaml +0 -30
  835. package/src/modules/cis/README.md +0 -153
  836. package/src/modules/cis/_module-installer/install-config.yaml +0 -16
  837. package/src/modules/cis/_module-installer/installer.js +0 -92
  838. package/src/modules/cis/agents/README.md +0 -104
  839. package/src/modules/cis/agents/brainstorming-coach.agent.yaml +0 -28
  840. package/src/modules/cis/agents/creative-problem-solver.agent.yaml +0 -28
  841. package/src/modules/cis/agents/design-thinking-coach.agent.yaml +0 -28
  842. package/src/modules/cis/agents/innovation-strategist.agent.yaml +0 -28
  843. package/src/modules/cis/agents/storyteller.agent.yaml +0 -28
  844. package/src/modules/cis/teams/creative-squad.yaml +0 -7
  845. package/src/modules/cis/teams/default-party.csv +0 -11
  846. package/src/modules/cis/workflows/README.md +0 -139
  847. package/src/modules/cis/workflows/design-thinking/README.md +0 -56
  848. package/src/modules/cis/workflows/design-thinking/design-methods.csv +0 -31
  849. package/src/modules/cis/workflows/design-thinking/instructions.md +0 -200
  850. package/src/modules/cis/workflows/design-thinking/template.md +0 -111
  851. package/src/modules/cis/workflows/design-thinking/workflow.yaml +0 -43
  852. package/src/modules/cis/workflows/innovation-strategy/README.md +0 -56
  853. package/src/modules/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  854. package/src/modules/cis/workflows/innovation-strategy/instructions.md +0 -274
  855. package/src/modules/cis/workflows/innovation-strategy/template.md +0 -189
  856. package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +0 -43
  857. package/src/modules/cis/workflows/problem-solving/README.md +0 -56
  858. package/src/modules/cis/workflows/problem-solving/instructions.md +0 -250
  859. package/src/modules/cis/workflows/problem-solving/solving-methods.csv +0 -31
  860. package/src/modules/cis/workflows/problem-solving/template.md +0 -165
  861. package/src/modules/cis/workflows/problem-solving/workflow.yaml +0 -43
  862. package/src/modules/cis/workflows/storytelling/README.md +0 -58
  863. package/src/modules/cis/workflows/storytelling/instructions.md +0 -291
  864. package/src/modules/cis/workflows/storytelling/story-types.csv +0 -26
  865. package/src/modules/cis/workflows/storytelling/template.md +0 -113
  866. package/src/modules/cis/workflows/storytelling/workflow.yaml +0 -43
  867. package/src/utility/models/agent-activation-ide.xml +0 -51
  868. package/src/utility/models/agent-activation-web.xml +0 -60
  869. package/src/utility/models/agent-command-header.md +0 -1
  870. package/src/utility/models/agent-config-template.md +0 -23
  871. package/src/utility/models/agent-in-team-activation.xml +0 -3
  872. package/src/utility/models/fragments/activation-rules.xml +0 -8
  873. package/src/utility/models/fragments/activation-steps.xml +0 -16
  874. package/src/utility/models/fragments/handler-action.xml +0 -4
  875. package/src/utility/models/fragments/handler-exec.xml +0 -5
  876. package/src/utility/models/fragments/handler-tmpl.xml +0 -5
  877. package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
  878. package/src/utility/models/fragments/handler-workflow.xml +0 -9
  879. package/src/utility/models/fragments/menu-handlers.xml +0 -6
  880. package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
  881. package/src/utility/templates/agent.customize.template.yaml +0 -42
  882. package/test/fixtures/agent-schema/invalid/metadata/core-agent-with-module.agent.yaml +0 -26
  883. package/test/fixtures/agent-schema/invalid/metadata/module-agent-missing-module.agent.yaml +0 -25
  884. package/test/fixtures/agent-schema/invalid/metadata/wrong-module-value.agent.yaml +0 -26
  885. package/tools/cli/bundlers/bundle-web.js +0 -179
  886. package/tools/cli/bundlers/test-analyst.js +0 -28
  887. package/tools/cli/bundlers/test-bundler.js +0 -118
  888. package/tools/cli/bundlers/web-bundler.js +0 -1667
  889. package/tools/cli/commands/build.js +0 -458
  890. package/tools/cli/commands/list.js +0 -28
  891. package/tools/cli/commands/update.js +0 -28
  892. package/tools/cli/installers/lib/ide/auggie.js +0 -179
  893. package/tools/cli/installers/lib/ide/claude-code.js +0 -471
  894. package/tools/cli/installers/lib/ide/cline.js +0 -220
  895. package/tools/cli/installers/lib/ide/crush.js +0 -240
  896. package/tools/cli/installers/lib/ide/cursor.js +0 -352
  897. package/tools/cli/installers/lib/ide/gemini.js +0 -206
  898. package/tools/cli/installers/lib/ide/iflow.js +0 -125
  899. package/tools/cli/installers/lib/ide/opencode.js +0 -212
  900. package/tools/cli/installers/lib/ide/qwen.js +0 -318
  901. package/tools/cli/installers/lib/ide/roo.js +0 -253
  902. package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
  903. package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
  904. package/tools/cli/installers/lib/ide/trae.js +0 -266
  905. package/tools/cli/installers/lib/ide/windsurf.js +0 -211
  906. package/tools/cli/lib/replace-project-root.js +0 -239
  907. package/tools/cli/regenerate-manifests.js +0 -28
  908. package/tools/cli/test-yaml-builder.js +0 -43
  909. package/tools/flattener/aggregate.js +0 -76
  910. package/tools/flattener/binary.js +0 -80
  911. package/tools/flattener/discovery.js +0 -71
  912. package/tools/flattener/files.js +0 -35
  913. package/tools/flattener/ignoreRules.js +0 -172
  914. package/tools/flattener/main.js +0 -483
  915. package/tools/flattener/projectRoot.js +0 -201
  916. package/tools/flattener/prompts.js +0 -44
  917. package/tools/flattener/stats.helpers.js +0 -368
  918. package/tools/flattener/stats.js +0 -75
  919. package/tools/flattener/test-matrix.js +0 -409
  920. package/tools/flattener/xml.js +0 -88
  921. package/tools/validate-bundles.js +0 -87
  922. package/v6-open-items.md +0 -17
  923. /package/src/{modules/bmm → bmm}/teams/team-fullstack.yaml +0 -0
  924. /package/src/{modules/bmgd/workflows/4-production → bmm/workflows/4-implementation}/sprint-planning/checklist.md +0 -0
  925. /package/src/{modules/bmm → bmm}/workflows/document-project/documentation-requirements.csv +0 -0
  926. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/deep-dive-template.md +0 -0
  927. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/index-template.md +0 -0
  928. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/project-overview-template.md +0 -0
  929. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/source-tree-template.md +0 -0
  930. /package/src/utility/{models/fragments/handler-data.xml → agent-components/handler-data.txt} +0 -0
  931. /package/{src/utility/models/action-command-header.md → tools/cli/installers/lib/ide/templates/split/.gitkeep} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,1009 +1,1409 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [6.0.0]
4
4
 
5
- ## [6.0.0-alpha.9]
5
+ V6 Stable Release! The End of Beta!
6
6
 
7
- **Release: November 12, 2025**
7
+ ### 🎁 Features
8
8
 
9
- This alpha release introduces major workflow engine enhancements, comprehensive documentation, and significant simplification of project structure and configuration.
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
10
13
 
11
- ### 🚀 Workflow Engine Revolution
14
+ ### 🐛 Bug Fixes
12
15
 
13
- **Intelligent File Discovery Protocol:**
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
14
24
 
15
- - New reusable `discover_inputs` protocol for automatic file loading across all workflows
16
- - Three intelligent loading strategies:
17
- - FULL_LOAD: Loads all sharded documents for comprehensive context
18
- - SELECTIVE_LOAD: Targets specific shards via template variables
19
- - INDEX_GUIDED: Analyzes table of contents and intelligently loads relevant sections
20
- - Auto-discovers whole vs sharded documents with automatic fallback
21
- - Transparent reporting of loaded content with file counts
22
- - Implemented across all BMM Phase 1-4 workflows and new BMGD Phase 4 workflows
25
+ ### ♻️ Refactoring
23
26
 
24
- **Track-Based Project System:**
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
25
29
 
26
- - Replaced confusing "Level 0-4" terminology with intuitive track names:
27
- - **quick-flow**: Bug fixes and small features (replaces Level 0-1)
28
- - **bmad-method**: Full planning track (replaces Level 2-3)
29
- - **enterprise-bmad-method**: Extended planning (replaces Level 4)
30
- - Updated all workflows to be track-aware rather than level-dependent
30
+ ### 📚 Documentation
31
31
 
32
- ### 📚 Comprehensive Documentation
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
33
35
 
34
- **New Guides Added:**
36
+ ---
35
37
 
36
- - **Agent Customization Guide:** Complete instructions for customizing agent names, personas, memories, and behaviors
37
- - **Web Bundles & Platform Guide:** Comprehensive guide for using BMad agents in Gemini Gems and Custom GPTs
38
- - Critical setup rules with exact configuration requirements
39
- - Cost-saving strategies (60-80% savings via web planning → local implementation)
40
- - Platform comparison and recommendations
38
+ ## [6.0.0-Beta.8]
41
39
 
42
- ### 🏗️ Configuration & Structure Improvements
40
+ **Release: February 8, 2026**
43
41
 
44
- **Unified Output Folder Structure:**
42
+ ### 🌟 Key Highlights
45
43
 
46
- - Single `output_folder` for ALL AI-generated artifacts (default: "docs")
47
- - **REMOVED: `.ephemeral/` and `.bmad-ephemeral/` folders are completely eliminated**
48
- - Phase 4 ephemeral content now organized within output folder as `sprint_artifacts`:
49
- - Default path: `docs/sprint-artifacts/` (configurable during install)
50
- - Contains: stories, epic context, story context, sprint plans, code reviews
51
- - Can be set to `docs/stories/` for backward compatibility
52
- - Eliminated confusing separate folder proliferation
53
- - Clearer prompts during installation
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
54
48
 
55
- **Dynamic Path Configuration:**
49
+ ### 🎁 Features
56
50
 
57
- - Replaced hardcoded `.bmad` paths with `{bmad_folder}` placeholder throughout
58
- - Users can now fully customize installation folder names
59
- - Improved flexibility and reduced coupling to specific directory structures
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)
60
56
 
61
- ### 🎯 Tech-Spec Workflow Revolution
57
+ ### 🐛 Bug Fixes
62
58
 
63
- **Intent-Based Intelligence:**
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)
64
69
 
65
- - Removed 150+ lines of hardcoded stack detection examples
66
- - Replaced prescriptive instructions with adaptive intelligent guidance
67
- - Stack detection now automatically adapts to ANY project type
68
- - Consolidated story generation into single unified workflow
69
- - 50% fewer workflow files while maintaining full functionality
70
+ ### ♻️ Refactoring
70
71
 
71
- ### 🎮 BMGD Phase 4 Implementation
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)
72
76
 
73
- **Complete Game Development Workflows:**
77
+ ### 📚 Documentation
74
78
 
75
- - Added 10 Phase 4 production workflows for game development
76
- - Includes: code-review, sprint-planning, story creation, retrospectives
77
- - All workflows follow BMM patterns with game-specific adaptations
78
- - Unified with BMM workflows to eliminate duplication
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)
79
83
 
80
- ### 🌐 Web Bundle Enhancements
84
+ ### 🔧 Maintenance
81
85
 
82
- **GitHub Pages Support:**
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)
83
88
 
84
- - Web bundles can now be hosted directly on GitHub Pages
85
- - Automatic directory browsing and zip download functionality
86
- - Improved distribution setup documentation
89
+ ---
87
90
 
88
- **Testing Architecture:**
91
+ ## [6.0.0-Beta.7]
89
92
 
90
- - New test design workflow for Phase 3 architecture level
91
- - Comprehensive testing strategy generation
93
+ **Release: February 4, 2026**
92
94
 
93
- ### 🔧 Code Quality & Maintenance
95
+ ### 🌟 Key Highlights
94
96
 
95
- **Major Cleanup:**
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
96
99
 
97
- - Removed 200+ files that shouldn't be version controlled
98
- - Cleaned up 21 pre-generated XML bundles (users generate fresh)
99
- - Fixed corrupted variable patterns throughout workflows
100
- - Standardized variable naming conventions
101
- - Removed duplicate BMGD workflows (now shares BMM Phase 4)
100
+ ### 🎁 Features
102
101
 
103
- **Bug Fixes:**
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)
104
104
 
105
- - Fixed story status handling (accepts both "review" and "ready-for-review")
106
- - Corrected sprint artifact paths and undefined variables
107
- - Fixed installer quick install mode
108
- - Removed injected bad formatting characters
109
- - Enhanced shard document tool to prevent confusion with whole/sharded versions
105
+ ### ♻️ Refactoring
110
106
 
111
- ### 💡 Developer Experience
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)
112
110
 
113
- **Enhanced Workflow Management:**
111
+ ---
114
112
 
115
- - Better error handling and user guidance
116
- - Exit/continue options when prerequisites missing
117
- - Improved validation checklists with modern formatting
118
- - Clearer instructions and adaptive conversation goals
113
+ ## [6.0.0-Beta.6]
119
114
 
120
- **Variable Standardization:**
115
+ **Release: February 4, 2026**
121
116
 
122
- - Consistent hyphenated format: `{output-folder}`
123
- - Renamed unclear variables: `{dev_ephemeral_location}` → `{sprint_artifacts}`
124
- - Fixed 40+ workflows with standardized variable patterns
117
+ ### 🌟 Key Highlights
125
118
 
126
- ### 📈 Impact Summary
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)
127
123
 
128
- - **98 source files modified** (299 insertions, 6,567 deletions)
129
- - **40+ workflows updated** with track system and standardization
130
- - **12 duplicate workflows eliminated** through consolidation
131
- - **3 installer configs simplified** with major folder improvements
132
- - **2 comprehensive guides added** for customization and platform usage
124
+ ### 🎁 Features
133
125
 
134
- ### ⚠️ Breaking Changes
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)
135
130
 
136
- - Level-based terminology (Level 0-4) replaced with track names
137
- - Folder structure changes may require reconfiguration for existing projects
138
- - Variable name changes in workflows (backward compatibility maintained where possible)
131
+ ### 🐛 Bug Fixes
139
132
 
140
- ### 🔄 Migration Notes
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)
141
137
 
142
- **Important Folder Structure Changes:**
138
+ ### ♻️ Refactoring
143
139
 
144
- - **The `.ephemeral/` folder is completely gone** - Phase 4 ephemeral content no longer uses a separate folder
145
- - Phase 4 artifacts (epic context, stories, story context, sprint plans, code reviews) now live in `{output_folder}/{sprint_artifacts}`
146
- - New default location: `docs/sprint-artifacts/` (was previously `.bmad-ephemeral/` or similar)
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)
147
143
 
148
- **Migration Options:**
144
+ ### 📚 Documentation
149
145
 
150
- 1. **If you have existing `docs/stories/` content:**
151
- - Move all content from `docs/stories/` to `docs/sprint-artifacts/`
152
- - Update any references or scripts pointing to the old location
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)
153
148
 
154
- 2. **To keep using `docs/stories/` location:**
155
- - During the new version install, set sprint_artifacts to "stories" when prompted
156
- - This maintains backward compatibility with your existing structure
149
+ ### 🔧 Maintenance
157
150
 
158
- 3. **Clean migration checklist:**
159
- - Delete old `.ephemeral/` folder if it exists
160
- - Delete old `.bmad-ephemeral/` folder if it exists
161
- - Move Phase 4 artifacts to new location or configure installer to use existing path
162
- - Update to new track terminology in configurations (quick-flow, bmad-method, enterprise-bmad-method)
163
- - Regenerate web bundles using `npm run bundle` for latest changes
164
- - Update any custom workflows to use new `discover_inputs` protocol
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)
165
153
 
166
- ## [6.0.0-alpha.8]
154
+ ---
167
155
 
168
- **Release: November 9, 2025**
156
+ ## [6.0.0-Beta.5]
169
157
 
170
- This alpha release focuses on installation flexibility, artifact organization, and comprehensive web bundle enhancements for better multi-agent collaboration.
158
+ ### 🎁 Features
171
159
 
172
- ### 🎯 Installation Path Enhancements
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
173
162
 
174
- **Configurable Installation Directory:**
163
+ ### 🐛 Bug Fixes
175
164
 
176
- - Users can now specify custom installation directories during setup
177
- - Changed default installation to `.bmad` (hidden directory) for cleaner project organization
178
- - Reduces visual clutter in project root by hiding BMAD infrastructure files
179
- - VS Code settings updated to work with new `.bmad` directory structure
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)
180
175
 
181
- **Ephemeral File Handling:**
176
+ ### 📚 Documentation
182
177
 
183
- - Updated phase 4 implementation workflows to use ephemeral file locations
184
- - Better separation between documentation and implementation artifacts
185
- - Phase 4 items (stories, code review, sprint plan, context files) can now be stored outside docs folder
186
- - Installer includes questions for artifact path selection
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)
187
180
 
188
- ### 🚀 CLI & Agent Loading Improvements
181
+ ### 🔧 Maintenance
189
182
 
190
- **Optimized Agent Loading:**
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
191
185
 
192
- - CLI commands now load from installed agent files instead of maintaining duplicates
193
- - Eliminates duplication between source and installed agent definitions
194
- - Reduces maintenance burden and ensures consistency
186
+ ---
195
187
 
196
- **Installer UX Enhancements:**
188
+ ## [6.0.0-Beta.4]
197
189
 
198
- - Enhanced installer interface with version display
199
- - Better visual feedback during installation process
190
+ ### 🐛 Bug Fixes
200
191
 
201
- ### 🌐 Web Bundle Enhancements
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
202
194
 
203
- **Party Mode Support:**
195
+ ---
204
196
 
205
- - All web bundles (single agent and team) now include party mode for multi-agent collaboration
206
- - Users can invoke multi-agent discussions from any bundled agent
207
- - Added default-party.csv files to bmm, bmgd, and cis modules with customizable party configurations
197
+ ## [6.0.0-Beta.3]
208
198
 
209
- **Advanced Elicitation Integration:**
199
+ ### 🌟 Key Highlights
210
200
 
211
- - Integrated advanced elicitation capabilities into standalone agents
212
- - All 39 elicitation methods now available in web bundles
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
213
204
 
214
- **Expanded Agent Bundles:**
205
+ ### 🔧 Features & Improvements
215
206
 
216
- - New web bundle outputs for all agents: analyst, architect, dev, pm, sm, tea, tech-writer, ux-designer
217
- - Game development agents: game-designer, game-dev, game-architect, game-scrum-master
218
- - Creative Intelligence Suite agents fully bundled
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
219
210
 
220
- **Team Customization:**
211
+ **IDE Integration:**
212
+ - **Gemini CLI TOML Format** (#1431): Previous update accidentally switched Gemini to md instead of toml.
221
213
 
222
- - Customizable party configurations per module
223
- - Users can define which agents participate in party mode discussions
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
224
216
 
225
- ### 🔧 Phase 4 Workflow Updates
217
+ ### 🐛 Bug Fixes
226
218
 
227
- **Artifact Separation (In Progress):**
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
228
223
 
229
- - Initiated separation of phase 4 implementation artifacts from documentation
230
- - Dedicated artifact path for stories, code review, sprint plan, context files
231
- - Updated workflow.yaml files for:
232
- - code-review workflow
233
- - sprint-planning workflow
234
- - story-context workflow
235
- - epic-tech-context workflow
236
- - retrospective workflow
237
- - Configuration support added for artifact path selection during installation
224
+ ## [6.0.0-Beta.2]
238
225
 
239
- ### 🛠️ IDE Integration
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.
240
230
 
241
- **Gemini TOML:**
231
+ ## [6.0.0-Beta.1]
242
232
 
243
- - Improved with clear loading instructions using @ commands
244
- - Better documentation for Gemini CLI users
233
+ **Release: January 2026 - Alpha to Beta Transition**
245
234
 
246
- **Agent Launcher Templates:**
235
+ ### 🎉 Beta Release
247
236
 
248
- - Agent launcher markdown files now use centralized critical indication templates
249
- - Improved consistency across IDE configurations
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
250
239
 
251
- **GitHub Copilot:**
240
+ ### 🌟 Key Highlights
252
241
 
253
- - Updated tool names to match official VS Code documentation (November 2025)
254
- - Better integration with latest Copilot features
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
255
246
 
256
- ### 🐛 Bug Fixes
247
+ ### 🚀 Major Features
248
+
249
+ **bmad-help - Intelligent Guidance System:**
250
+
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
256
+
257
+ **Module Restructuring:**
258
+
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` |
264
+
265
+ ### 🔧 Installer & CLI Improvements
266
+
267
+ **UnifiedInstaller Architecture:**
257
268
 
258
- - Fixed duplicate manifest entries by deduplicating module lists using Set
259
- - Cleaned up legacy `bmad/`, `bmd/`, and `web-bundles/` directories on installation
260
- - Various improvements to phase 4 workflow artifact handling
261
- - Better error handling in web bundler
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
262
277
 
263
- ### 📦 Infrastructure Changes
278
+ **Windows Compatibility Fix:**
264
279
 
265
- - New agent and action command header models for standardization
266
- - Enhanced web-bundle-activation-steps fragment
267
- - Updated web-bundler.js to support new structure
268
- - Improved party mode instructions and workflow orchestration
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
269
282
 
270
- ### 📊 Impact Summary
283
+ ### 📚 Documentation Updates
284
+
285
+ **Significant docsite improvements:**
286
+
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
295
+
296
+ More documentation updates coming soon.
297
+
298
+ ### 🐛 Bug Fixes
271
299
 
272
- This release brings significant improvements to installation flexibility and multi-agent collaboration:
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
273
307
 
274
- - **Flexibility:** Configurable installation paths for different project preferences
275
- - **Organization:** Cleaner project structure with hidden `.bmad` directory
276
- - **Collaboration:** Comprehensive party mode support in all web bundles
277
- - **Consistency:** Optimized agent loading eliminates duplication
278
- - **Artifact Management:** Better separation of documentation vs implementation artifacts
308
+ ### 📊 Statistics
309
+
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
279
315
 
280
316
  ---
281
317
 
282
- ## [6.0.0-alpha.7]
318
+ ## [6.0.0-alpha.23]
283
319
 
284
- **Release: November 7, 2025**
320
+ **Release: January 11, 2026**
285
321
 
286
- This alpha release focuses on web bundle improvements, module extraction, and enhanced workflow vendoring capabilities.
322
+ ### 🌟 Key Highlights
287
323
 
288
- ### 🌐 Web Bundler Improvements
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
289
330
 
290
- **Workflow Vendoring:**
331
+ ### 📚 Documentation Platform Revolution
291
332
 
292
- - Web bundler now performs workflow vendoring before bundling agents
293
- - Workflows referenced via `workflow-install` attributes are automatically copied from source to destination
294
- - Similar to module installer behavior, ensuring consistency
295
- - Config_source is updated in vendored workflows to reference target module
296
- - Fixes missing dependency warnings for cross-module workflow references
333
+ **Astro/Starlight Migration:**
297
334
 
298
- **Enhanced Dependency Resolution:**
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
299
340
 
300
- - Improved workflow dependency detection and bundling
301
- - Better handling of workflows with `web_bundle: false` flag
302
- - Menu items for non-web workflows are now properly excluded from bundles
303
- - Shows positive "✓ No missing dependencies" message when all dependencies resolved
341
+ **Diataxis Framework Implementation:**
304
342
 
305
- **Advanced Elicitation Fix:**
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
306
348
 
307
- - Added missing `adv-elicit-methods.csv` to workflow bundles
308
- - Includes CSV in all workflows using `adv-elicit.xml`:
309
- - architecture workflow
310
- - prd workflow
311
- - tech-spec workflow
312
- - Fixes runtime failures when advanced elicitation is invoked in bundled workflows
349
+ **Link Management & Quality:**
313
350
 
314
- ### 🎮 BMGD Module Extraction
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
315
356
 
316
- **Game Development Module:**
357
+ ### 🔧 Workflow Creator & Validator (Major Feature)
317
358
 
318
- - Extracted game development functionality from BMM into standalone BMGD module
319
- - Moved agents: game-designer, game-dev, game-architect from BMM to BMGD
320
- - Moved team config: team-gamedev
321
- - Created new Game Dev Scrum Master agent using workflow vendoring pattern
359
+ **Workflow Creation Tool:**
322
360
 
323
- **Reorganized Game Dev Workflows:**
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
324
367
 
325
- Industry-standard game development phases:
368
+ **Workflow Quality Improvements:**
326
369
 
327
- - **Phase 1 (Preproduction):** brainstorm-game, game-brief
328
- - **Phase 2 (Design):** gdd (Game Design Document), narrative
329
- - **Phase 3 (Technical):** game-architecture
330
- - **Phase 4 (Production):** Vendors BMM workflows (dev-story, code-review, sprint-planning, etc.)
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
331
374
 
332
- **Workflow Vendoring Implementation:**
375
+ ### 🧪 TEA Documentation Expansion
333
376
 
334
- - Game Dev SM agent uses `workflow-install` to vendor BMM phase 4 workflows
335
- - Enables module independence while sharing proven workflows
336
- - Sets pattern for future module extractions and specializations
377
+ **Comprehensive Testing Guides:**
337
378
 
338
- ### 🔧 IDE Installation Improvements
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
339
386
 
340
- **Claude Code Fix:**
387
+ ### 💡 Brainstorming Workflow Overhaul
341
388
 
342
- - Fixed regression preventing README file slash commands from installing
343
- - Cleaned up bmad folders in tools directory on installation
344
- - Better handling of IDE-specific configuration files
389
+ **Research-Backed Procedural Rigor:**
345
390
 
346
- ### 📚 Documentation Updates
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
347
397
 
348
- **TEA Agent Documentation:**
398
+ **Exploration Menu Improvements:**
349
399
 
350
- - Updated Test Architect documentation to align with BMad 4-phase methodology
351
- - Better integration with overall workflow structure
352
- - Clearer role definitions and responsibilities
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
353
404
 
354
- **Diagram Improvements:**
405
+ ### 🖥️ Cursor IDE Modernization
355
406
 
356
- - More visual documentation updates
357
- - Enhanced Mermaid diagram drafts
358
- - Better workflow visualization
407
+ **Command-Based Architecture:**
359
408
 
360
- ### 🐛 Bug Fixes
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
361
416
 
362
- - Fixed missing `adv-elicit-methods.csv` in workflow bundles
363
- - Removed menu items for workflows with `web_bundle: false`
364
- - Fixed IDE installation regression for Claude Code README commands
365
- - Improved workflow vendoring dependency resolution
417
+ **Agent Builder & Validation:**
366
418
 
367
- ### 🔄 Breaking Changes
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
368
424
 
369
- **Module Structure:**
425
+ ### 🐛 Bug Fixes & Quality Improvements
370
426
 
371
- - Game development functionality moved from BMM to BMGD module
372
- - Existing projects using game dev agents should reinstall to get new module structure
373
- - No functional changes - agents work the same way in new location
427
+ **Critical Fixes:**
374
428
 
375
- ### 📊 Impact Summary
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
376
435
 
377
- This release establishes better module organization and cross-module workflow sharing:
436
+ **Workflow & Variable Fixes:**
378
437
 
379
- - **Modularity:** BMGD extraction demonstrates clean module separation pattern
380
- - **Reusability:** Workflow vendoring enables sharing proven workflows across modules
381
- - **Reliability:** Advanced elicitation now works correctly in all web bundles
382
- - **Flexibility:** Modules can be specialized while leveraging core workflows
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
383
468
 
384
469
  ---
385
470
 
386
- ## [6.0.0-alpha.6]
471
+ ## [6.0.0-alpha.22]
387
472
 
388
- **Release: November 4, 2025**
473
+ **Release: December 31, 2025**
389
474
 
390
- This alpha release focuses on installation flexibility, improved UX, and bug fixes for the installer system.
475
+ ### 🌟 Key Highlights
391
476
 
392
- ### 🐛 Bug Fixes
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
393
483
 
394
- **Installer Fixes:**
484
+ ### 🤖 Unified Agent Workflow (Major Feature)
395
485
 
396
- - Fixed manifestPath error in ide-config-manager causing installation failures
397
- - Fixed installer option display to show full labels instead of just values for single/multi-select
398
- - Better error handling during installation process
486
+ **Consolidated Architecture:**
399
487
 
400
- **Documentation Installation:**
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
401
493
 
402
- - Add conditional documentation installation feature
403
- - Users can now opt out of installing docs to reduce installation footprint
404
- - New `install_user_docs` configuration option (defaults to true)
405
- - Useful for production environments or users who prefer online documentation
494
+ ### 📚 Agent Knowledge System
406
495
 
407
- ### 🎨 User Experience Improvements
496
+ **Data File Architecture:**
408
497
 
409
- **Installer UX:**
498
+ Located in `src/modules/bmb/workflows/agent/data/`:
410
499
 
411
- - Improved config question display with descriptive labels
412
- - Better formatting for single and multi-select options
413
- - Clearer feedback during installation process
414
- - More intuitive option selection
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
415
514
 
416
- ### 📖 Documentation Updates
515
+ **Reference Examples:**
417
516
 
418
- **Contributing Guidelines:**
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
419
520
 
420
- - Updated CONTRIBUTING.md to remove references to non-existent 'next' branch
421
- - Clearer contribution workflow instructions
422
- - Better alignment with actual repository structure
521
+ **Templates:**
423
522
 
424
- ### 🧹 Maintenance
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)
425
526
 
426
- **Issue Tracker Cleanup:**
527
+ ### 🌍 Deep Language Integration
427
528
 
428
- - Closed 54 legacy v4 issues (older than 1 month)
429
- - Maintains clean issue tracker focused on v6 development
430
- - Improved issue management and prioritization
529
+ **Progressive Workflow Language Support:**
431
530
 
432
- ### 📊 Impact Summary
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
433
539
 
434
- This release improves installation reliability and user experience:
540
+ ### 📖 Core Module Documentation
435
541
 
436
- - **Reliability:** Fixed critical installer bugs preventing successful installations
437
- - **Flexibility:** Optional documentation installation for different use cases
438
- - **Clarity:** Better UX with descriptive labels and clearer feedback
439
- - **Maintenance:** Clean issue tracker focused on current development
542
+ **New Core Documentation Structure:**
440
543
 
441
- ---
544
+ `docs/modules/core/`:
442
545
 
443
- ## [6.0.0-alpha.5]
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
444
554
 
445
- **Release: November 4, 2025**
555
+ **Advanced Elicitation Moved:**
446
556
 
447
- 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.
557
+ - **From**: `docs/` root
558
+ - **To**: `src/core/workflows/advanced-elicitation/`
559
+ - **Status**: Now a proper core workflow with methods.csv
448
560
 
449
- ### 🎯 3-Track Scale System - Revolutionary Simplification
561
+ ### 📚 BMAD Core Concepts Documentation
450
562
 
451
- **From 5 Levels to 3 Clear Tracks:**
563
+ **New Documentation Structure:**
452
564
 
453
- The BMM scale system has been dramatically simplified from a confusing 5-level hierarchy (Levels 0-4) to 3 intuitive, preference-driven tracks:
565
+ `docs/bmad-core-concepts/`:
454
566
 
455
- - **Quick Flow** - Fast, lightweight development for small changes and quick iterations
456
- - **BMad Method** - Balanced approach for most development projects
457
- - **Enterprise Method** - Comprehensive methodology for large-scale, mission-critical systems
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
458
577
 
459
- **Key Changes:**
578
+ **Documentation Cleanup:**
460
579
 
461
- - Replaced `project_level` variable with `project_track` throughout all workflows
462
- - Updated 8 workflow path YAML files to reflect new track naming (removed level-based paths)
463
- - Simplified workflow-init to guide users based on preference, not artificial "levels"
464
- - Updated all documentation to reference tracks instead of levels
465
- - Eliminated confusing "target_scale" variable (no longer needed)
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
466
585
 
467
- **Impact:**
586
+ ### 🔧 Create-Tech-Spec Sharded Conversion
468
587
 
469
- 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.
588
+ **Monolithic to Sharded:**
470
589
 
471
- **Documentation Updated:**
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)
472
593
 
473
- - `scale-adaptive-system.md` - Complete rewrite around 3-track methodology (756 line overhaul)
474
- - `quick-start.md` - Updated to reference tracks
475
- - `brownfield-guide.md` - Track-based guidance instead of level-based
476
- - `glossary.md` - New track definitions, removed level references
477
- - `workflow-status/init/instructions.md` - Major rewrite for track-based initialization (865 lines)
594
+ ### 🔨 Additional Improvements
478
595
 
479
- ### ✨ Workflow Modernization & Standardization
596
+ **Workflow Status Path Fixes:**
480
597
 
481
- **1. Elicitation System Modernization:**
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
482
600
 
483
- - Removed legacy `<elicit-required />` XML tag from core workflow.xml
484
- - Replaced with explicit `<invoke-task halt="true">advanced-elicitation.xml</invoke-task>` pattern
485
- - More self-documenting and eliminates confusing indirection layer
486
- - Added strategic elicitation points across all planning workflows:
487
- - **PRD:** After success criteria, scope, functional requirements, and final review
488
- - **Create-Epics-And-Stories:** After epic proposals and each epic's stories
489
- - **Architecture:** After decisions, structure, patterns, implementation patterns, and final doc
490
- - Updated audit-workflow to remove obsolete elicit-required tag scanning
601
+ **Documentation Updates:**
491
602
 
492
- **2. Input Document Discovery Streamlined:**
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
493
607
 
494
- - Replaced verbose 19-line "Input Document Discovery" sections with single critical tag
495
- - New concise format: `<critical>Input documents specified in workflow.yaml input_file_patterns...</critical>`
496
- - Eliminates duplication (workflow.yaml already defines patterns - why repeat them?)
497
- - Updated across 6 workflows: PRD, create-epics-and-stories, architecture, tech-spec, UX, gate-check
498
- - **Saved ~114 lines of repeated bloat**
608
+ **BMB Documentation Streamlining:**
499
609
 
500
- **3. Epic/Story Template Standardization:**
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/
501
613
 
502
- - Replaced hardcoded 8-epic templates with clean repeating patterns using N/M variables
503
- - Added BDD-style acceptance criteria (Given/When/Then/And) for better clarity
504
- - Removed instructional bloat from templates (moved to instructions.md where it belongs)
505
- - **Principle:** Templates show OUTPUT structure, instructions show PROCESS
506
- - Applied to both create-epics-and-stories and tech-spec workflows
507
- - Templates now use HTML comments to clearly indicate repeating sections
614
+ **Windows Inquirer Fix:**
508
615
 
509
- **4. Workflow.yaml Pattern Consistency:**
616
+ - **Another Default Addition**: Additional inquirer default value setting for better Windows multiselection support
510
617
 
511
- - Standardized `input_file_patterns` across all workflows
512
- - Separated `recommended_inputs` (semantic WHAT) from `input_file_patterns` (file discovery WHERE)
513
- - Removed duplication between recommended_inputs file paths and input_file_patterns
514
- - Create-epics-and-stories now uses proper whole/sharded pattern like architecture workflow
515
- - Solutioning-gate-check cleaned up to use semantic descriptions not file paths
618
+ **Code Quality:**
516
619
 
517
- **Files Changed:** 18 files across core, planning, and solutioning workflows
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
518
624
 
519
- ### 📚 Documentation Accuracy Overhaul
625
+ ---
520
626
 
521
- **Agent YAML as Source of Truth:**
627
+ ## [6.0.0-alpha.21]
522
628
 
523
- Fixed critical documentation inaccuracies by treating agent YAML files as the authoritative source:
629
+ **Release: December 27, 2025**
524
630
 
525
- **agents-guide.md Corrections:**
631
+ ### 🌟 Key Highlights
526
632
 
527
- - Fixed Game Developer workflow names (dev-story develop-story, added story-done)
528
- - Added agent name "Paige" to Technical Writer (matches naming pattern)
529
- - Corrected epic-tech-context ownership (Architect SM agent across all docs)
530
- - Updated agent reference tables to reflect actual capabilities from YAML configs
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
531
638
 
532
- **workflows-implementation.md Corrections:**
639
+ ### 🎯 Consistent Menu System (Major Feature)
533
640
 
534
- - Fixed epic-tech-context agent attribution in 3 locations (Architect → SM)
535
- - Updated multi-agent workflow ownership table
536
- - Aligned all workflow descriptions with actual agent YAML definitions
641
+ **Standardized 2-Letter Codes:**
537
642
 
538
- **Impact:** Zero hallucination risk - documentation now accurately reflects what agents can actually do.
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
539
647
 
540
- ### 🏗️ Brownfield Development Reality Check
648
+ **Agent Updates:**
541
649
 
542
- **Rewrote brownfield-guide.md Phase 0 Section:**
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
543
655
 
544
- Replaced oversimplified 3-scenario model with **real-world guidance** for messy brownfield projects:
656
+ ### 📁 Planning Artifacts Architecture
545
657
 
546
- **New Scenarios (4 instead of 3):**
658
+ **Content Segregation Implementation:**
547
659
 
548
- - **Scenario A:** No documentation `document-project` workflow (existing)
549
- - **Scenario B:** Docs exist but massive/outdated/incomplete **document-project** (NEW - very common case)
550
- - **Scenario C:** Good docs but massive files → **shard-doc → index-docs** (NEW - handles >500 line files)
551
- - **Scenario D:** Confirmed AI-optimized docs → Skip Phase 0 (correctly marked as RARE)
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
552
670
 
553
- **Key Additions:**
671
+ **File Organization:**
554
672
 
555
- - Default recommendation: "Run document-project unless you have confirmed, trusted, AI-optimized docs"
556
- - Quality assessment checklist (current, AI-optimized, comprehensive, trusted)
557
- - Massive document handling guidance (>500 lines, 10+ sections triggers shard-doc)
558
- - Explicit explanation of why regenerating is better than indexing bad docs
559
- - Impact explanation: how outdated docs break AI workflows (token limits, wrong assumptions, broken integrations)
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
560
676
 
561
- **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.
677
+ ### 🪟 Windows Installer Fixes
562
678
 
563
- ### 🚀 PM/UX Evolution for Enterprise Agentic Development
679
+ **Inquirer Multiselection Fix:**
564
680
 
565
- **New Section: The Evolving Role of Product Managers & UX Designers**
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(?)
566
683
 
567
- Added comprehensive forward-looking guidance based on **November 2025 industry research**:
684
+ ### 🤖 Agent System Improvements
568
685
 
569
- **Industry Trends:**
686
+ **Auto-Injected Features:**
570
687
 
571
- - 56% of product professionals cite AI/ML as top strategic focus
572
- - PRD-to-Code automation: build and deploy apps in 10-15 minutes (current state)
573
- - By 2026: Roles converging into "Full-Stack Product Lead" (PM + Design + Engineering)
574
- - Very high salaries for AI Agent PMs who orchestrate autonomous development systems
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
575
692
 
576
- **Role Transformation:**
693
+ **Agent Normalization:**
577
694
 
578
- - PMs evolving from spec writers code orchestrators
579
- - Writing AI-optimized PRDs that **feed agentic pipelines directly**
580
- - UX designers generating production code with Figma-to-code tools
581
- - Technical fluency becoming **table stakes**, not optional
582
- - Reviewing PRs from AI agents alongside human developers
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
583
699
 
584
- **How BMad Method Enables This Future (10 Ways):**
700
+ ### 🔧 Bug Fixes & Cleanup
585
701
 
586
- 1. AI-Executable PRD Generation - PRDs become work packages for cloud agents
587
- 2. Automated Epic/Story Breakdown - No more manual story refinement sessions
588
- 3. Human-in-the-Loop Architecture - PMs learn while validating technical decisions
589
- 4. Cloud Agentic Pipeline Vision - Current (2025) + Future (2026) roadmap with diagrams
590
- 5. UX Design Integration - Designs validated through working prototypes
591
- 6. PM Technical Skills Development - Learn by doing through conversational workflows
592
- 7. Organizational Leverage - 1 PM → 20-50 AI agents (5-10× productivity multiplier)
593
- 8. Quality Consistency - What gets built matches what was specified
594
- 9. Rapid Prototyping - Hours to validate ideas vs months
595
- 10. Career Path Evolution - Positions PMs for emerging AI Agent PM, Full-Stack Product Lead roles
702
+ **Docusaurus Merge Recovery:**
596
703
 
597
- **Cloud Agentic Pipeline Vision:**
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
598
707
 
599
- ```
600
- Current (2025): PM PRD → Stories → Human devs + BMad agents → PRs → Review → Deploy
601
- Future (2026): PM PRD Stories Cloud AI agents → Auto PRs → Review → Auto-merge → Deploy
602
- Time savings: 6-8 weeks 2-5 days
603
- ```
708
+ **Code Quality:**
709
+
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
713
+
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
718
+
719
+ ---
720
+
721
+ ## [6.0.0-alpha.20]
722
+
723
+ **Release: December 23, 2025**
724
+
725
+ ### 🌟 Key Highlights
726
+
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
604
734
 
605
- **What Remains Human:**
735
+ ### 🪟 Windows Installer (hopefully) Fixed
606
736
 
607
- - Product vision, empathy, creativity, judgment, ethics
608
- - PMs spend MORE time on human elements (AI handles execution)
609
- - Product leaders become "builder-thinkers" not just spec writers
737
+ **Inquirer Upgrade:**
610
738
 
611
- ### 📖 Document Tightening
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
612
742
 
613
- **enterprise-agentic-development.md Overhaul:**
743
+ ### 🎯 Path Segregation Implementation (Major Feature)
614
744
 
615
- - Reduced from 1207 → 640 lines (47% reduction)
616
- - 10× more BMad-centric - every section ties back to how BMad enables the future
617
- - Removed redundant examples, consolidated sections, kept actionable insights
618
- - Stronger value propositions for PMs, UX, enterprise teams throughout
745
+ **Revolutionary Content Organization:**
619
746
 
620
- **Key Message:** "The future isn't AI replacing PMs—it's AI-augmented PMs becoming 10× more powerful through BMad Method."
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
621
753
 
622
- ### 🛠️ Infrastructure & Quality
754
+ **Documentation Cleanup:**
623
755
 
624
- **Agent Naming Consistency:**
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
625
759
 
626
- - Renamed `paige.agent.yaml` `tech-writer.agent.yaml` (matches agent naming pattern)
627
- - Updated all references across documentation and workflow files
760
+ ### 💬 Installation Experience Enhancements
628
761
 
629
- **README Updates:**
762
+ **Custom Installation Messages:**
630
763
 
631
- - Updated local installation instructions
632
- - Better hierarchy and clearer CTAs in root README
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
633
768
 
634
- ### 🔄 Breaking Changes
769
+ **Core Module Improvements:**
635
770
 
636
- **Variable Renames:**
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
637
774
 
638
- - `project_level` `project_track` in PRD and all planning workflows
639
- - Removed `target_scale` variable (no longer needed with 3-track system)
775
+ ### 🔧 Upgrade & Configuration Management
640
776
 
641
- **Workflow Path Files:**
777
+ **Two-Version Auto Upgrade:**
642
778
 
643
- - Removed 9 level-based workflow paths (brownfield-level-0, greenfield-level-3, etc.)
644
- - Added 6 new track-based workflow paths (quick-flow-greenfield, method-brownfield, enterprise-greenfield, etc.)
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
645
783
 
646
- **Workflow Triggers:**
784
+ ### 🤖 Workflow Improvements
647
785
 
648
- - Tech-spec workflow descriptions updated to reference tracks not levels
786
+ **Quick-Dev Workflow Refactor (PR #1182):**
649
787
 
650
- ### 📊 Impact Summary
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
651
792
 
652
- These changes bring BMM from alpha.4's solid foundation to alpha.5's **production-ready professionalism**:
793
+ **BMGD Workflow Fixes:**
653
794
 
654
- - **Accuracy:** Documentation matches YAML source of truth (zero hallucination risk)
655
- - **Simplicity:** 3-track system eliminates decision paralysis and artificial complexity
656
- - **Reality:** Brownfield guidance handles messy real-world scenarios, not idealized ones
657
- - **Forward-looking:** PM/UX evolution section positions BMad as essential framework for emerging roles
658
- - **Consistency:** Standardized elicitation, input discovery, and template patterns across all workflows
659
- - **Maintainability:** 47% documentation reduction + ~114 lines of bloat removed from workflows
660
- - **Actionable:** Concrete workflows, commands, examples throughout all guidance
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)
661
798
 
662
- Users now have **trustworthy, reality-based, future-oriented guidance** for using BMad Method in both current workflows and emerging agentic development patterns.
799
+ ### 🎨 Code Quality & Refactoring
663
800
 
664
- ### 📦 Files Changed
801
+ **Persona Streamlining (PR #1167):**
665
802
 
666
- **Core & Infrastructure (3 files):**
803
+ - **Quick-Flow-Solo-Dev Persona**: Streamlined for clarity and accuracy
804
+ - **Improved Agent Behavior**: More focused and efficient solo development support
667
805
 
668
- - `bmad/core/tasks/workflow.xml` - Removed elicit-required tag
669
- - `src/core/tasks/workflow.xml` - Removed elicit-required tag
670
- - `package.json` - Version bump
806
+ **Package Management:**
671
807
 
672
- **Documentation (8 files):**
808
+ - **package-lock.json Sync**: Ensured version consistency (PR #1168)
809
+ - **Dependency Cleanup**: Reduced package-lock bloat significantly
673
810
 
674
- - `src/modules/bmm/docs/README.md` - Track references
675
- - `src/modules/bmm/docs/agents-guide.md` - Accuracy fixes, agent ownership corrections
676
- - `src/modules/bmm/docs/brownfield-guide.md` - Phase 0 reality check, track migration
677
- - `src/modules/bmm/docs/enterprise-agentic-development.md` - PM/UX evolution, 47% reduction
678
- - `src/modules/bmm/docs/faq.md` - Track references
679
- - `src/modules/bmm/docs/glossary.md` - Track definitions, removed levels
680
- - `src/modules/bmm/docs/quick-spec-flow.md` - Track references
681
- - `src/modules/bmm/docs/scale-adaptive-system.md` - Complete 3-track rewrite
811
+ **Prettier Configuration:**
682
812
 
683
- **Workflow Paths (14 files):**
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
684
816
 
685
- - Removed: 9 level-based paths (brownfield-level-0 through greenfield-level-4)
686
- - Added: 6 track-based paths (quick-flow/method/enterprise × greenfield/brownfield)
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
687
830
 
688
- **Planning Workflows (11 files):**
831
+ **File Organization:**
689
832
 
690
- - PRD workflow: Elicitation, track migration, input discovery, checklist updates
691
- - Create-epics-and-stories: Template rebuild, BDD format, elicitation, input patterns
692
- - Tech-spec: Template rebuild, BDD format, input discovery
693
- - Architecture: Elicitation points, input discovery
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
694
837
 
695
- **Solutioning Workflows (2 files):**
838
+ ### 📊 Statistics
696
839
 
697
- - UX Design: Input discovery streamlined
698
- - Gate-check: Input pattern cleanup, semantic descriptions
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
699
845
 
700
- **Build & Utilities (2 files):**
846
+ ## [6.0.0-alpha.19]
701
847
 
702
- - Audit workflow: Updated tag scanner (removed elicit-required)
703
- - Workflow status init: Track-based initialization logic
848
+ **Release: December 18, 2025**
704
849
 
705
- **Total: 40+ files changed**
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
706
863
 
707
864
  ---
708
865
 
709
- ### Installation
866
+ ## [6.0.0-alpha.18]
710
867
 
711
- ```bash
712
- npx bmad-method@6.0.0-alpha.5 install
713
- ```
868
+ **Release: December 18, 2025**
714
869
 
715
- For upgrading from alpha.4:
870
+ ### 🎮 BMGD Module - Complete Game Development Module Updated
716
871
 
717
- ```bash
718
- # Backup your customizations first
719
- npx bmad-method@6.0.0-alpha.5 install
720
- ```
872
+ **Massive BMGD Overhaul:**
873
+
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
721
913
 
722
- ### Migration Notes
914
+ ### 🤖 Agent Management Improved
723
915
 
724
- If upgrading from v6.0.0-alpha.4:
916
+ **Agent Recompile Feature:**
725
917
 
726
- 1. **Scale System Change:** The 5-level system (Levels 0-4) is now 3 tracks (Quick Flow, BMad Method, Enterprise Method)
727
- - Existing projects continue to work - workflows auto-detect track from context
728
- - New projects will use track-based initialization
729
- - Review `docs/scale-adaptive-system.md` for the new mental model
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
730
922
 
731
- 2. **Workflow Improvements:**
732
- - Better elicitation at strategic decision points (you'll be asked for input more frequently)
733
- - Cleaner templates with BDD acceptance criteria
734
- - More consistent input document discovery
923
+ **Agent Customization Enhancement:**
735
924
 
736
- 3. **Documentation Accuracy:**
737
- - Agent capabilities now match YAML definitions exactly
738
- - Brownfield guidance handles real-world messy scenarios
739
- - PM/UX evolution section shows future of AI-driven development
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
740
929
 
741
- 4. **Agent Naming:** Technical Writer agent file renamed (paige.agent.yaml → tech-writer.agent.yaml)
742
- - No functional impact - just internal naming consistency
930
+ ### 🔧 Installation & Module Management
743
931
 
744
- 5. **No Breaking Changes:** Existing project structures, workflow outputs, and customizations remain compatible
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
745
960
 
746
961
  ---
747
962
 
748
- ## [6.0.0-alpha.4]
963
+ ## [6.0.0-alpha.17]
749
964
 
750
- **Release: November 2, 2025**
965
+ **Release: December 16, 2025**
966
+
967
+ ### 🚀 Revolutionary Installer Overhaul
968
+
969
+ **Unified Installation Experience:**
751
970
 
752
- 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.
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
753
976
 
754
- ### 📚 Complete Documentation Overhaul
977
+ **Custom Content Installation Revolution:**
755
978
 
756
- **New Documentation Hub** (`src/modules/bmm/docs/`)
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
757
984
 
758
- - Created centralized documentation system with 18 comprehensive guides (7000+ lines)
759
- - Clear learning paths for greenfield, brownfield, and quick spec flows
760
- - Professional technical writing standards throughout all documentation
761
- - Reading time estimates and cross-referenced navigation
985
+ ### 🧠 Revolutionary Agent Memory & Visibility System
762
986
 
763
- **New Documentation Files:**
987
+ **Breaking Through Dot-Folder Limitations:**
764
988
 
765
- - `README.md` - Complete documentation hub with topic navigation
766
- - `quick-start.md` - 15-minute getting started guide
767
- - `agents-guide.md` - Comprehensive 12-agent reference (45 min read)
768
- - `party-mode.md` - Multi-agent collaboration guide (20 min read)
769
- - `scale-adaptive-system.md` - Deep dive on Levels 0-4 (42 min read)
770
- - `brownfield-guide.md` - Existing codebase development (53 min read)
771
- - `quick-spec-flow.md` - Rapid Level 0-1 development (26 min read)
772
- - `workflows-analysis.md` - Phase 1 workflows deep-dive (12 min read)
773
- - `workflows-planning.md` - Phase 2 workflows deep-dive (19 min read)
774
- - `workflows-solutioning.md` - Phase 3 workflows deep-dive (13 min read)
775
- - `workflows-implementation.md` - Phase 4 workflows deep-dive (33 min read)
776
- - `workflows-testing.md` - Testing & QA workflows (29 min read)
777
- - `workflow-architecture-reference.md` - Architecture workflow technical reference
778
- - `workflow-document-project-reference.md` - Document-project workflow technical reference
779
- - `enterprise-agentic-development.md` - Team collaboration patterns
780
- - `faq.md` - Comprehensive Q&A covering all common questions
781
- - `glossary.md` - Complete BMM terminology reference
782
- - `troubleshooting.md` - Common issues and solutions guide
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
783
993
 
784
- **Documentation Improvements:**
994
+ **Content Location Strategy:**
785
995
 
786
- - Removed version/date footers (git handles versioning automatically)
787
- - Agent customization docs now include full rebuild process
788
- - Consistent professional formatting and structure across all docs
789
- - Better separation of user documentation vs developer reference
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
790
1001
 
791
- ### 🤖 New Agent: Paige (Documentation Guide)
1002
+ ### 🎯 Future-Ready Architecture
792
1003
 
793
- Introduced Paige, a specialized technical documentation agent:
1004
+ **Content Organization Preview:**
794
1005
 
795
- - **Expertise:** Professional technical writing, information architecture, documentation structure
796
- - **Integration:** Available across all BMM phases for continuous documentation support
797
- - **Customizable:** Like all BMM agents, can be customized via sidecar files
798
- - **Status:** Work in progress - will evolve as documentation needs grow
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
799
1010
 
800
- ### 🚀 Quick Spec Flow - Intelligent Level 0-1 Planning
1011
+ ### 🎯 Sample Modules & Documentation
801
1012
 
802
- **Major Tech-Spec Workflow Transformation:**
1013
+ **Comprehensive Examples:**
803
1014
 
804
- - Transformed from template-filling into context-aware intelligent planning system
805
- - Ideal for bug fixes, single endpoint additions, and small isolated changes
806
- - Auto-detects project stack (package.json, requirements.txt, etc.)
807
- - Analyzes brownfield codebases for conventions and patterns
808
- - Integrates WebSearch for current framework versions and best practices
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
809
1019
 
810
- **Context-Aware Intelligence:**
1020
+ ### 🔧 Bug Fixes & Optimizations
811
1021
 
812
- - Interactive level detection (Level 0 vs Level 1)
813
- - Brownfield convention detection with user confirmation
814
- - Comprehensive context discovery (stack, patterns, dependencies, test frameworks)
815
- - Auto-validation with quality scoring (no manual checklist needed)
816
- - UX/UI considerations capture for user-facing changes
1022
+ **Installer Improvements:**
817
1023
 
818
- **Enhanced Tech-Spec Template:**
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
819
1028
 
820
- - Expanded from 8 to 23 sections for complete planning context
821
- - New sections: Development Context, UX/UI Considerations, Integration Points
822
- - Developer Resources section with file paths and testing guidance
823
- - All sections populated via template-output tags during workflow
1029
+ **Code Quality:**
824
1030
 
825
- **Story Generation Improvements:**
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
826
1034
 
827
- - Level 0: Extract single story from comprehensive tech-spec
828
- - Level 1: Story sequence validation with acceptance criteria quality checks
829
- - User Story Template includes Dev Agent Record sections for implementation tracking
830
- - Complete epic template rewrite with proper variable structure
1035
+ **BMM Phase 4 Workflow Improvements:**
831
1036
 
832
- **Phase 4 Integration:**
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
833
1042
 
834
- - Story Context and Create Story workflows now recognize tech-spec as authoritative source
835
- - Seamless integration between Quick Spec Flow and traditional BMM workflows
836
- - Tech-spec provides brownfield analysis, framework details, and existing patterns
1043
+ ### 📊 Statistics
837
1044
 
838
- ### 📦 Universal Document Sharding
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
839
1049
 
840
- **New Capability: Shard-Doc Workflow**
1050
+ ### 🌟 Key Highlights
841
1051
 
842
- - Split large markdown documents into organized, smaller files based on sections
843
- - Dual-strategy loading: include individual shards OR single large document
844
- - Configurable section level (default: level 2 headings)
845
- - Automatic index.md generation with navigation links
846
- - Ideal for large guides, API documentation, and knowledge bases
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)
847
1058
 
848
- **Use Cases:**
1059
+ ## [6.0.0-alpha.16]
849
1060
 
850
- - Breaking down massive planning documents for better context management
851
- - Creating navigable documentation hierarchies
852
- - Managing agent knowledge bases efficiently
853
- - Optimizing context window usage during development
1061
+ **Release: December 10, 2025**
854
1062
 
855
- **Integration:**
1063
+ ### 🔧 Temporary Changes & Fixes
856
1064
 
857
- - Available as BMad Core workflow: `/bmad:core:tools:shard-doc`
858
- - Works with any markdown document in your project
859
- - Preserves original file with automatic backups
860
- - Generated shards maintain formatting and structure
1065
+ **Installation Improvements:**
861
1066
 
862
- ### 🔧 Planning Workflow Enhancements
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
863
1070
 
864
- **Intent-Driven Discovery (Product Brief & PRD):**
1071
+ **Path Resolution Improvements:**
865
1072
 
866
- - Transformed from rigid template-filling to natural conversational discovery
867
- - Adaptive questioning based on project context (hobby/startup/enterprise)
868
- - Real-time document building instead of end-of-session generation
869
- - Skill-level aware facilitation (expert/intermediate/beginner)
870
- - Context detection from user responses to guide exploration depth
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
871
1076
 
872
- **Product Brief Workflow (96% BMAD v6 compliance):**
1077
+ **Cleanup Changes:**
873
1078
 
874
- - Intent-driven facilitation with context-appropriate probing
875
- - Living document approach with continuous template updates
876
- - Enhanced discovery areas: problem exploration, solution vision, user understanding
877
- - Ruthless MVP scope management with feature prioritization
878
- - Template improvements with context-aware conditional sections
1079
+ - **Example Modules Removal**: Temporarily removed example modules to prevent accidental installation
1080
+ - **Memory Management**: Improved sidecar file handling for custom modules
879
1081
 
880
- **PRD Workflow (improved from 65% to 85%+ compliance):**
1082
+ ### 📊 Statistics
881
1083
 
882
- - Fixed critical config issues (missing date variable, status file extension mismatch)
883
- - Scale-adaptive intelligence with project type detection (API/Web App/Mobile/SaaS)
884
- - Domain complexity mapping (14 domain types with specialized considerations)
885
- - Enhanced requirements coverage: project-type specific sections, domain considerations
886
- - Separated epic planning into dedicated create-epics-and-stories child workflow
1084
+ - **336 files changed** with path fixes and improvements
1085
+ - **4 commits** since alpha.15
887
1086
 
888
- **Architecture Workflow:**
1087
+ ---
1088
+
1089
+ ## [6.0.0-alpha.15]
889
1090
 
890
- - Better integration with PRD outputs
891
- - Domain complexity context support
892
- - Enhanced technical decision capture framework
1091
+ **Release: December 7, 2025**
893
1092
 
894
- ### 🛠️ Research Workflow Improvements
1093
+ ### 🔧 Module Installation Standardization
895
1094
 
896
- **Enhanced Research Capabilities:**
1095
+ **Unified Module Configuration:**
897
1096
 
898
- - Updated to use web search more frequently for current information
899
- - Better understanding of current date context for finding latest documentation
900
- - Improved deep research prompt generation options
901
- - More accurate and up-to-date research results
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
902
1101
 
903
- ### 🎨 User Experience Improvements
1102
+ **Custom Content Installation Revolution:**
904
1103
 
905
- **Installer Updates:**
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
906
1108
 
907
- - Improved installation notes and guidance
908
- - Better command examples (shard-doc uses npx command pattern)
1109
+ ### 🤖 Code Review Integration Expansion
909
1110
 
910
- **Workflow Cleanup:**
1111
+ **AI Review Tools:**
911
1112
 
912
- - Removed unused voice hooks functionality
913
- - Cleaned up backup and temporary files
914
- - Better workflow naming consistency
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
915
1117
 
916
- ### 📋 Infrastructure & Quality
1118
+ ### 📚 Documentation Improvements
917
1119
 
918
- **Agent & Workflow Manifests:**
1120
+ **Documentation Restructuring:**
919
1121
 
920
- - Added Paige to agent manifest
921
- - Updated workflow manifest with new and restructured workflows
922
- - Better workflow-to-agent mappings across all documentation
923
- - Updated files manifest with all new documentation
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
924
1126
 
925
- **Module Organization:**
1127
+ ### 🧹 Cleanup & Optimization
926
1128
 
927
- - Streamlined BMM README to lean signpost format
928
- - Polished root README with better hierarchy and clear CTAs
929
- - Moved documentation from root `docs/` to module-specific locations
930
- - Better separation of user docs vs developer reference
1129
+ **Memory Management:**
931
1130
 
932
- **Data Infrastructure:**
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
933
1134
 
934
- - New CSV data files for project types and domain complexity
935
- - Enhanced workflow configuration with runtime variables
936
- - Better template variable mapping and tracking
1135
+ **Installer Improvements:**
937
1136
 
938
- ### 🔄 Breaking Changes
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
939
1140
 
940
- **File Removals:**
1141
+ ### 📊 Statistics
941
1142
 
942
- - Removed `src/modules/bmm/workflows/2-plan-workflows/prd/epics-template.md` (replaced by create-epics-and-stories child workflow)
1143
+ - **77 files changed** with 2,852 additions and 607 deletions
1144
+ - **15 commits** since alpha.14
943
1145
 
944
- **Workflow Trigger Changes:**
1146
+ ### ⚠️ Breaking Changes
945
1147
 
946
- - PM agent: `prd` `create-prd`
947
- - New workflow triggers: `create-epics-and-stories`, `validate-prd`
948
- - Game Designer agent triggers renamed for consistency
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
949
1152
 
950
- ### 📖 What's Next (Beta Roadmap)
1153
+ ### 📦 New Dependencies
951
1154
 
952
- - Knowledge base integration for enhanced context management
953
- - Web bundle functionality completion
954
- - Additional specialized agents based on community feedback
955
- - Enhanced multi-agent collaboration patterns
956
- - Performance optimizations for large projects
1155
+ - No new dependencies added in this release
957
1156
 
958
1157
  ---
959
1158
 
960
- ### Installation
1159
+ ## [6.0.0-alpha.14]
961
1160
 
962
- ```bash
963
- npx bmad-method@6.0.0-alpha.4 install
964
- ```
1161
+ **Release: December 7, 2025**
965
1162
 
966
- For upgrading from alpha.3:
1163
+ ### 🔧 Installation & Configuration Revolution
967
1164
 
968
- ```bash
969
- # Backup your customizations first
970
- npx bmad-method@6.0.0-alpha.4 install
971
- ```
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:**
972
1219
 
973
- ### Migration Notes
1220
+ - **Compact Format**: Streamlined plain-text notifications
1221
+ - **Bug Fixes**: Resolved notification delivery issues
974
1222
 
975
- If upgrading from v6.0.0-alpha.3:
1223
+ **Example Mental Wellness Module (MWM):**
976
1224
 
977
- 1. New documentation is available in `bmad/bmm/docs/` - review the README.md for navigation
978
- 2. Tech-spec workflow now has enhanced capabilities - review `docs/quick-spec-flow.md`
979
- 3. Product Brief and PRD workflows have new conversational approaches
980
- 4. Paige agent is now available for documentation tasks
981
- 5. No breaking changes to existing project structures
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
982
1250
 
983
1251
  ---
984
1252
 
985
- ## [6.0.0-alpha.3]
1253
+ ## [6.0.0-alpha.13]
986
1254
 
987
- ### Codex Installer
1255
+ **Release: November 30, 2025**
988
1256
 
989
- - Codex installer uses custom prompts in `.codex/prompts/`, instead of `AGENTS.md`
1257
+ ### 🏗️ Revolutionary Workflow Architecture
990
1258
 
991
- ## [6.0.0-alpha.0]
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
992
1263
 
993
- **Release: September 28, 2025**
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]
994
1292
 
995
- Initial alpha release of a major rewrite and overhaul improvement of past versions.
1293
+ **Release: November 18, 2025**
996
1294
 
997
- ### Major New Features
1295
+ ### 🚀 Agent Installation Revolution
998
1296
 
999
- - **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.
1000
- - **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.
1001
- - **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
1002
- - **CIS**: The Creative Intelligence Suite (AKA CIS)
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
1003
1301
 
1004
- ## [v6.0.0] - SKIPPED
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**
1005
1401
 
1006
- **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.
1007
1407
 
1008
1408
  ## [v4.43.0](https://github.com/bmad-code-org/BMAD-METHOD/releases/tag/v4.43.0)
1009
1409