bmad-method 6.0.0-alpha.9 → 6.0.2

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