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