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