bmad-method 6.0.0-alpha.5 → 6.0.0-alpha.7
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/.claude/settings.local.json +12 -6
- package/.github/workflows/{lint.yaml → quality.yaml} +19 -2
- package/.husky/pre-commit +4 -0
- package/CONTRIBUTING.md +1 -13
- package/README.md +59 -1
- package/bmad/_cfg/agent-manifest.csv +1 -13
- package/bmad/_cfg/files-manifest.csv +10 -256
- package/bmad/_cfg/ides/claude-code.yaml +2 -2
- package/bmad/_cfg/manifest.yaml +4 -5
- package/bmad/_cfg/task-manifest.csv +4 -1
- package/bmad/_cfg/tool-manifest.csv +1 -0
- package/bmad/_cfg/workflow-manifest.csv +2 -35
- package/bmad/bmb/config.yaml +2 -2
- package/bmad/bmb/workflows/audit-workflow/instructions.md +1 -1
- package/bmad/bmb/workflows/create-agent/instructions.md +25 -9
- package/bmad/bmb/workflows/create-module/module-structure.md +34 -0
- package/bmad/core/config.yaml +2 -2
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +61 -0
- package/package.json +5 -3
- package/src/core/tasks/adv-elicit.xml +1 -1
- package/src/modules/bmb/workflows/create-agent/instructions.md +25 -9
- package/src/modules/bmb/workflows/create-module/module-structure.md +34 -0
- package/src/modules/bmgd/README.md +208 -0
- package/src/modules/bmgd/_module-installer/install-config.yaml +66 -0
- package/src/modules/{bmm → bmgd}/agents/game-architect.agent.yaml +5 -12
- package/src/modules/{bmm → bmgd}/agents/game-designer.agent.yaml +10 -22
- package/src/modules/{bmm → bmgd}/agents/game-dev.agent.yaml +9 -10
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +70 -0
- package/{bmad/bmm → src/modules/bmgd}/teams/team-gamedev.yaml +3 -1
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/workflow.yaml +7 -7
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/workflow.yaml +9 -9
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +81 -0
- package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/narrative/workflow.yaml +6 -6
- package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/instructions.md +7 -18
- package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/workflow.yaml +16 -16
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/retrospective/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-done/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-ready/workflow.yaml +3 -1
- package/src/modules/bmm/_module-installer/install-config.yaml +5 -0
- package/src/modules/bmm/docs/README.md +18 -18
- package/src/modules/bmm/docs/agents-guide.md +1 -2
- package/src/modules/bmm/docs/brownfield-guide.md +10 -15
- package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
- package/src/modules/bmm/docs/faq.md +10 -12
- package/src/modules/bmm/docs/glossary.md +8 -9
- package/src/modules/bmm/docs/quick-spec-flow.md +7 -7
- package/src/modules/bmm/docs/quick-start.md +9 -9
- package/src/modules/bmm/docs/scale-adaptive-system.md +6 -6
- package/src/modules/bmm/docs/test-architecture.md +394 -0
- package/src/modules/bmm/docs/workflows-analysis.md +229 -529
- package/src/modules/bmm/docs/workflows-implementation.md +196 -1670
- package/src/modules/bmm/docs/workflows-planning.md +364 -849
- package/src/modules/bmm/docs/workflows-solutioning.md +268 -493
- package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +65 -32
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +4 -0
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +1 -1
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +34 -5
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +1 -1
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +8 -0
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +6 -0
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +47 -0
- package/src/modules/bmm/workflows/techdoc/documentation-standards.md +24 -1
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +50 -0
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +18 -11
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +18 -11
- package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +42 -65
- package/test/test-installation-components.js +214 -0
- package/tools/cli/bundlers/web-bundler.js +127 -8
- package/tools/cli/installers/lib/core/config-collector.js +39 -11
- package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
- package/tools/cli/installers/lib/core/installer.js +20 -9
- package/tools/cli/installers/lib/core/manifest-generator.js +3 -1
- package/tools/cli/installers/lib/core/manifest.js +6 -2
- package/tools/cli/installers/lib/ide/auggie.js +9 -20
- package/tools/cli/installers/lib/ide/claude-code.js +33 -3
- package/tools/cli/installers/lib/ide/cursor.js +17 -0
- package/tools/cli/installers/lib/modules/manager.js +134 -0
- package/tools/cli/lib/config.js +3 -1
- package/tools/cli/lib/ui.js +5 -5
- package/tools/cli/lib/yaml-format.js +2 -1
- package/tools/cli/lib/yaml-xml-builder.js +9 -1
- package/tools/schema/agent.js +3 -0
- package/v6-open-items.md +3 -9
- package/web-bundles/bmm/agents/analyst.xml +5028 -0
- package/web-bundles/bmm/agents/architect.xml +2047 -0
- package/web-bundles/bmm/agents/dev.xml +68 -0
- package/web-bundles/bmm/agents/pm.xml +3808 -0
- package/web-bundles/bmm/agents/sm.xml +77 -0
- package/web-bundles/bmm/agents/tea.xml +66 -0
- package/web-bundles/bmm/agents/tech-writer.xml +84 -0
- package/web-bundles/bmm/agents/ux-designer.xml +2018 -0
- package/web-bundles/bmm/teams/team-fullstack.xml +12039 -0
- package/.claude/commands/bmad/bmb/workflows/README.md +0 -67
- package/.claude/commands/bmad/bmm/agents/analyst.md +0 -67
- package/.claude/commands/bmad/bmm/agents/architect.md +0 -72
- package/.claude/commands/bmad/bmm/agents/dev.md +0 -69
- package/.claude/commands/bmad/bmm/agents/paige.md +0 -82
- package/.claude/commands/bmad/bmm/agents/pm.md +0 -76
- package/.claude/commands/bmad/bmm/agents/sm.md +0 -85
- package/.claude/commands/bmad/bmm/agents/tea.md +0 -72
- package/.claude/commands/bmad/bmm/agents/tech-writer.md +0 -82
- package/.claude/commands/bmad/bmm/agents/ux-designer.md +0 -71
- package/.claude/commands/bmad/bmm/workflows/README.md +0 -132
- package/.claude/commands/bmad/bmm/workflows/architecture.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/brainstorm-project.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/code-review.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/correct-course.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-epics-and-stories.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-story.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-ux-design.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/dev-story.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/document-project.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/epic-tech-context.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/narrative.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/prd.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/product-brief.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/research.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/retrospective.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/solutioning-gate-check.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/sprint-planning.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-context.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-done.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-ready.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/tech-spec-sm.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/tech-spec.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/workflow-init.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/workflow-status.md +0 -15
- package/.claude/commands/bmad/cis/agents/README.md +0 -104
- package/.claude/commands/bmad/cis/agents/brainstorming-coach.md +0 -62
- package/.claude/commands/bmad/cis/agents/creative-problem-solver.md +0 -62
- package/.claude/commands/bmad/cis/agents/design-thinking-coach.md +0 -62
- package/.claude/commands/bmad/cis/agents/innovation-strategist.md +0 -62
- package/.claude/commands/bmad/cis/agents/storyteller.md +0 -59
- package/.claude/commands/bmad/cis/workflows/README.md +0 -37
- package/.claude/commands/bmad/cis/workflows/design-thinking.md +0 -15
- package/.claude/commands/bmad/cis/workflows/innovation-strategy.md +0 -15
- package/.claude/commands/bmad/cis/workflows/problem-solving.md +0 -15
- package/.claude/commands/bmad/cis/workflows/storytelling.md +0 -15
- package/.claude/commands/bmad/core/workflows/README.md +0 -37
- package/bmad/_cfg/agents/bmm-analyst.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-architect.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-dev.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-paige.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-pm.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-sm.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-tea.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-tech-writer.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-ux-designer.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-brainstorming-coach.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-creative-problem-solver.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-design-thinking-coach.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-innovation-strategist.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-storyteller.customize.yaml +0 -42
- package/bmad/bmb/agents/bmad-builder.md.bak +0 -70
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -23
- package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -42
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -40
- package/bmad/bmb/workflows/edit-agent/workflow.yaml.bak +0 -33
- package/bmad/bmb/workflows/edit-module/workflow.yaml.bak +0 -34
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -27
- package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -29
- package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -32
- package/bmad/bmm/README.md +0 -128
- package/bmad/bmm/README.md.bak +0 -169
- package/bmad/bmm/agents/analyst.md +0 -67
- package/bmad/bmm/agents/analyst.md.bak +0 -67
- package/bmad/bmm/agents/architect.md +0 -72
- package/bmad/bmm/agents/architect.md.bak +0 -73
- package/bmad/bmm/agents/dev.md +0 -69
- package/bmad/bmm/agents/dev.md.bak +0 -69
- package/bmad/bmm/agents/paige.md.bak +0 -82
- package/bmad/bmm/agents/pm.md +0 -76
- package/bmad/bmm/agents/pm.md.bak +0 -76
- package/bmad/bmm/agents/sm.md +0 -85
- package/bmad/bmm/agents/sm.md.bak +0 -85
- package/bmad/bmm/agents/tea.md +0 -72
- package/bmad/bmm/agents/tea.md.bak +0 -72
- package/bmad/bmm/agents/tech-writer.md +0 -82
- package/bmad/bmm/agents/ux-designer.md +0 -71
- package/bmad/bmm/agents/ux-designer.md.bak +0 -71
- package/bmad/bmm/config.yaml +0 -17
- package/bmad/bmm/docs/README.md +0 -235
- package/bmad/bmm/docs/agents-guide.md +0 -1057
- package/bmad/bmm/docs/brownfield-guide.md +0 -759
- package/bmad/bmm/docs/enterprise-agentic-development.md +0 -680
- package/bmad/bmm/docs/faq.md +0 -589
- package/bmad/bmm/docs/glossary.md +0 -321
- package/bmad/bmm/docs/party-mode.md +0 -224
- package/bmad/bmm/docs/quick-spec-flow.md +0 -652
- package/bmad/bmm/docs/quick-start.md +0 -366
- package/bmad/bmm/docs/scale-adaptive-system.md +0 -599
- package/bmad/bmm/docs/troubleshooting.md +0 -680
- package/bmad/bmm/docs/workflow-architecture-reference.md +0 -371
- package/bmad/bmm/docs/workflow-document-project-reference.md +0 -487
- package/bmad/bmm/docs/workflows-analysis.md +0 -670
- package/bmad/bmm/docs/workflows-implementation.md +0 -1758
- package/bmad/bmm/docs/workflows-planning.md +0 -1086
- package/bmad/bmm/docs/workflows-solutioning.md +0 -726
- package/bmad/bmm/tasks/daily-standup.xml +0 -85
- package/bmad/bmm/teams/team-fullstack.yaml +0 -11
- package/bmad/bmm/testarch/knowledge/ci-burn-in.md +0 -675
- package/bmad/bmm/testarch/knowledge/component-tdd.md +0 -486
- package/bmad/bmm/testarch/knowledge/contract-testing.md +0 -957
- package/bmad/bmm/testarch/knowledge/data-factories.md +0 -500
- package/bmad/bmm/testarch/knowledge/email-auth.md +0 -721
- package/bmad/bmm/testarch/knowledge/error-handling.md +0 -725
- package/bmad/bmm/testarch/knowledge/feature-flags.md +0 -750
- package/bmad/bmm/testarch/knowledge/fixture-architecture.md +0 -401
- package/bmad/bmm/testarch/knowledge/network-first.md +0 -486
- package/bmad/bmm/testarch/knowledge/nfr-criteria.md +0 -670
- package/bmad/bmm/testarch/knowledge/playwright-config.md +0 -730
- package/bmad/bmm/testarch/knowledge/probability-impact.md +0 -601
- package/bmad/bmm/testarch/knowledge/risk-governance.md +0 -615
- package/bmad/bmm/testarch/knowledge/selective-testing.md +0 -732
- package/bmad/bmm/testarch/knowledge/selector-resilience.md +0 -527
- package/bmad/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
- package/bmad/bmm/testarch/knowledge/test-levels-framework.md +0 -473
- package/bmad/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
- package/bmad/bmm/testarch/knowledge/test-quality.md +0 -664
- package/bmad/bmm/testarch/knowledge/timing-debugging.md +0 -372
- package/bmad/bmm/testarch/knowledge/visual-debugging.md +0 -524
- package/bmad/bmm/testarch/tea-index.csv +0 -22
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -26
- package/bmad/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
- package/bmad/bmm/workflows/1-analysis/domain-research/template.md +0 -180
- package/bmad/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -36
- package/bmad/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
- package/bmad/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
- package/bmad/bmm/workflows/1-analysis/product-brief/template.md +0 -181
- package/bmad/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -45
- package/bmad/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
- package/bmad/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
- package/bmad/bmm/workflows/1-analysis/research/checklist.md +0 -299
- package/bmad/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
- package/bmad/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -439
- package/bmad/bmm/workflows/1-analysis/research/instructions-market.md +0 -679
- package/bmad/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
- package/bmad/bmm/workflows/1-analysis/research/instructions-technical.md +0 -538
- package/bmad/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
- package/bmad/bmm/workflows/1-analysis/research/template-market.md +0 -347
- package/bmad/bmm/workflows/1-analysis/research/template-technical.md +0 -245
- package/bmad/bmm/workflows/1-analysis/research/workflow.yaml +0 -44
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1319
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -64
- package/bmad/bmm/workflows/2-plan-workflows/narrative/workflow.yaml +0 -29
- package/bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -349
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -63
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -395
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -33
- package/bmad/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
- package/bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -423
- package/bmad/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
- package/bmad/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
- package/bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -46
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -214
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -58
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -200
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -451
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -1133
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -87
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -60
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml.bak +0 -60
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -175
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -322
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -64
- package/bmad/bmm/workflows/document-project/checklist.md +0 -245
- package/bmad/bmm/workflows/document-project/documentation-requirements.csv +0 -12
- package/bmad/bmm/workflows/document-project/instructions.md +0 -222
- package/bmad/bmm/workflows/document-project/templates/deep-dive-template.md +0 -345
- package/bmad/bmm/workflows/document-project/templates/index-template.md +0 -169
- package/bmad/bmm/workflows/document-project/templates/project-overview-template.md +0 -103
- package/bmad/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
- package/bmad/bmm/workflows/document-project/templates/source-tree-template.md +0 -135
- package/bmad/bmm/workflows/document-project/workflow.yaml +0 -34
- package/bmad/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
- package/bmad/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
- package/bmad/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
- package/bmad/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
- package/bmad/bmm/workflows/techdoc/documentation-standards.md +0 -239
- package/bmad/bmm/workflows/techdoc/documentation-standards.md.bak +0 -238
- package/bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
- package/bmad/bmm/workflows/testarch/atdd/checklist.md +0 -373
- package/bmad/bmm/workflows/testarch/atdd/instructions.md +0 -785
- package/bmad/bmm/workflows/testarch/atdd/workflow.yaml +0 -52
- package/bmad/bmm/workflows/testarch/automate/checklist.md +0 -580
- package/bmad/bmm/workflows/testarch/automate/instructions.md +0 -1303
- package/bmad/bmm/workflows/testarch/automate/workflow.yaml +0 -61
- package/bmad/bmm/workflows/testarch/ci/checklist.md +0 -246
- package/bmad/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
- package/bmad/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
- package/bmad/bmm/workflows/testarch/ci/instructions.md +0 -517
- package/bmad/bmm/workflows/testarch/ci/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/framework/checklist.md +0 -321
- package/bmad/bmm/workflows/testarch/framework/instructions.md +0 -455
- package/bmad/bmm/workflows/testarch/framework/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
- package/bmad/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
- package/bmad/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
- package/bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -56
- package/bmad/bmm/workflows/testarch/test-design/checklist.md +0 -234
- package/bmad/bmm/workflows/testarch/test-design/instructions.md +0 -621
- package/bmad/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
- package/bmad/bmm/workflows/testarch/test-design/workflow.yaml +0 -52
- package/bmad/bmm/workflows/testarch/test-review/checklist.md +0 -470
- package/bmad/bmm/workflows/testarch/test-review/instructions.md +0 -608
- package/bmad/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
- package/bmad/bmm/workflows/testarch/test-review/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/trace/checklist.md +0 -654
- package/bmad/bmm/workflows/testarch/trace/instructions.md +0 -1045
- package/bmad/bmm/workflows/testarch/trace/trace-template.md +0 -673
- package/bmad/bmm/workflows/testarch/trace/workflow.yaml +0 -66
- package/bmad/bmm/workflows/workflow-status/init/instructions.md +0 -771
- package/bmad/bmm/workflows/workflow-status/init/workflow.yaml +0 -27
- package/bmad/bmm/workflows/workflow-status/init/workflow.yaml.bak +0 -27
- package/bmad/bmm/workflows/workflow-status/instructions.md +0 -386
- package/bmad/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -120
- package/bmad/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -108
- package/bmad/bmm/workflows/workflow-status/paths/game-design.yaml +0 -75
- package/bmad/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -97
- package/bmad/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -88
- package/bmad/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
- package/bmad/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
- package/bmad/bmm/workflows/workflow-status/project-levels.yaml +0 -59
- package/bmad/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +0 -49
- package/bmad/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -31
- package/bmad/bmm/workflows/workflow-status/workflow.yaml +0 -28
- package/bmad/cis/README.md +0 -153
- package/bmad/cis/agents/README.md +0 -104
- package/bmad/cis/agents/brainstorming-coach.md +0 -62
- package/bmad/cis/agents/brainstorming-coach.md.bak +0 -62
- package/bmad/cis/agents/creative-problem-solver.md +0 -62
- package/bmad/cis/agents/creative-problem-solver.md.bak +0 -62
- package/bmad/cis/agents/design-thinking-coach.md +0 -62
- package/bmad/cis/agents/design-thinking-coach.md.bak +0 -62
- package/bmad/cis/agents/innovation-strategist.md +0 -62
- package/bmad/cis/agents/innovation-strategist.md.bak +0 -62
- package/bmad/cis/agents/storyteller.md +0 -59
- package/bmad/cis/agents/storyteller.md.bak +0 -59
- package/bmad/cis/config.yaml +0 -10
- package/bmad/cis/teams/creative-squad.yaml +0 -6
- package/bmad/cis/workflows/README.md +0 -139
- package/bmad/cis/workflows/design-thinking/README.md +0 -56
- package/bmad/cis/workflows/design-thinking/design-methods.csv +0 -31
- package/bmad/cis/workflows/design-thinking/instructions.md +0 -200
- package/bmad/cis/workflows/design-thinking/template.md +0 -111
- package/bmad/cis/workflows/design-thinking/workflow.yaml +0 -32
- package/bmad/cis/workflows/innovation-strategy/README.md +0 -56
- package/bmad/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
- package/bmad/cis/workflows/innovation-strategy/instructions.md +0 -274
- package/bmad/cis/workflows/innovation-strategy/template.md +0 -189
- package/bmad/cis/workflows/innovation-strategy/workflow.yaml +0 -32
- package/bmad/cis/workflows/problem-solving/README.md +0 -56
- package/bmad/cis/workflows/problem-solving/instructions.md +0 -250
- package/bmad/cis/workflows/problem-solving/solving-methods.csv +0 -31
- package/bmad/cis/workflows/problem-solving/template.md +0 -165
- package/bmad/cis/workflows/problem-solving/workflow.yaml +0 -32
- package/bmad/cis/workflows/storytelling/README.md +0 -58
- package/bmad/cis/workflows/storytelling/instructions.md +0 -291
- package/bmad/cis/workflows/storytelling/story-types.csv +0 -26
- package/bmad/cis/workflows/storytelling/template.md +0 -113
- package/bmad/cis/workflows/storytelling/workflow.yaml +0 -32
- package/bmad/core/agents/bmad-master.md.bak +0 -71
- package/src/modules/bmm/docs/troubleshooting.md +0 -680
- package/src/modules/bmm/teams/team-gamedev.yaml +0 -14
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/workflow.yaml +0 -81
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/checklist.md +0 -139
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +0 -608
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/narrative-template.md +0 -195
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-brain-methods.csv +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-context.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/instructions.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/instructions.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/template.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/action-platformer.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/adventure.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/card-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/fighting.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/horror.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/idle-incremental.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/metroidvania.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/moba.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/party-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/puzzle.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/racing.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rhythm.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/roguelike.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rpg.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sandbox.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/shooter.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/simulation.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sports.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/strategy.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/survival.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/text-based.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/tower-defense.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/turn-based-tactics.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/visual-novel.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types.csv +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/gdd-template.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/instructions-gdd.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/checklist.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/instructions-narrative.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/narrative-template.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/architecture-patterns.yaml +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/architecture-template.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/checklist.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/decision-catalog.yaml +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/pattern-categories.csv +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/backlog_template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/AUDIT-REPORT.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/retrospective/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/sprint-status-template.yaml +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/context-template.xml +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-done/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-ready/instructions.md +0 -0
|
@@ -36,7 +36,7 @@ Understanding how BMM adapts to your needs:
|
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
39
|
-
## 🤖 Agents
|
|
39
|
+
## 🤖 Agents and Collaboration
|
|
40
40
|
|
|
41
41
|
Complete guide to BMM's AI agent team:
|
|
42
42
|
|
|
@@ -52,7 +52,7 @@ Complete guide to BMM's AI agent team:
|
|
|
52
52
|
- Example party compositions
|
|
53
53
|
- Multi-module integration (BMM + CIS + BMB + custom)
|
|
54
54
|
- Agent customization in party mode
|
|
55
|
-
- Best practices
|
|
55
|
+
- Best practices
|
|
56
56
|
|
|
57
57
|
---
|
|
58
58
|
|
|
@@ -65,7 +65,7 @@ Comprehensive guide for brownfield development:
|
|
|
65
65
|
- Track selection for brownfield
|
|
66
66
|
- Integration with existing patterns
|
|
67
67
|
- Phase-by-phase workflow guidance
|
|
68
|
-
- Common scenarios
|
|
68
|
+
- Common scenarios
|
|
69
69
|
|
|
70
70
|
---
|
|
71
71
|
|
|
@@ -75,7 +75,6 @@ Essential reference materials:
|
|
|
75
75
|
|
|
76
76
|
- **[Glossary](./glossary.md)** - Key terminology and concepts
|
|
77
77
|
- **[FAQ](./faq.md)** - Frequently asked questions across all topics
|
|
78
|
-
- **[Troubleshooting](./troubleshooting.md)** - Common issues and solutions
|
|
79
78
|
- **[Enterprise Agentic Development](./enterprise-agentic-development.md)** - Team collaboration strategies
|
|
80
79
|
|
|
81
80
|
---
|
|
@@ -99,7 +98,7 @@ Essential reference materials:
|
|
|
99
98
|
→ See [Scale Adaptive System](./scale-adaptive-system.md)
|
|
100
99
|
|
|
101
100
|
**Find specific commands or answers**
|
|
102
|
-
→ Check [FAQ](./faq.md)
|
|
101
|
+
→ Check [FAQ](./faq.md)
|
|
103
102
|
|
|
104
103
|
---
|
|
105
104
|
|
|
@@ -127,7 +126,7 @@ Comprehensive documentation for all BMM workflows organized by phase:
|
|
|
127
126
|
- Complete story lifecycle
|
|
128
127
|
- One-story-at-a-time discipline
|
|
129
128
|
|
|
130
|
-
- **[Testing & QA Workflows](./
|
|
129
|
+
- **[Testing & QA Workflows](./test-architecture.md)** - Comprehensive quality assurance (1,420 lines)
|
|
131
130
|
- Test strategy, automation, quality gates
|
|
132
131
|
- TEA agent and test healing
|
|
133
132
|
- BMad-integrated vs standalone modes
|
|
@@ -152,15 +151,16 @@ For detailed technical documentation on specific complex workflows:
|
|
|
152
151
|
|
|
153
152
|
---
|
|
154
153
|
|
|
155
|
-
## 🧪 Testing
|
|
154
|
+
## 🧪 Testing and Quality
|
|
156
155
|
|
|
157
156
|
Quality assurance guidance:
|
|
158
157
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
158
|
+
<!-- Test Architect documentation to be added -->
|
|
159
|
+
|
|
160
|
+
- Test design workflows
|
|
161
|
+
- Quality gates
|
|
162
|
+
- Risk assessment
|
|
163
|
+
- NFR validation
|
|
164
164
|
|
|
165
165
|
---
|
|
166
166
|
|
|
@@ -178,7 +178,7 @@ Understanding BMM components:
|
|
|
178
178
|
|
|
179
179
|
## 🌐 External Resources
|
|
180
180
|
|
|
181
|
-
### Community
|
|
181
|
+
### Community and Support
|
|
182
182
|
|
|
183
183
|
- **[Discord Community](https://discord.gg/gk8jAdXWmj)** - Get help from the community (#general-dev, #bugs-issues)
|
|
184
184
|
- **[GitHub Issues](https://github.com/bmad-code-org/BMAD-METHOD/issues)** - Report bugs or request features
|
|
@@ -212,12 +212,12 @@ flowchart TD
|
|
|
212
212
|
SAS --> IMPL
|
|
213
213
|
BF --> IMPL
|
|
214
214
|
|
|
215
|
-
IMPL --> REF[Quick References<br/>Glossary, FAQ
|
|
215
|
+
IMPL --> REF[Quick References<br/>Glossary, FAQ]
|
|
216
216
|
|
|
217
|
-
style START fill:#bfb,stroke:#333,stroke-width:2px
|
|
218
|
-
style QS fill:#bbf,stroke:#333,stroke-width:2px
|
|
219
|
-
style DECIDE fill:#ffb,stroke:#333,stroke-width:2px
|
|
220
|
-
style IMPL fill:#f9f,stroke:#333,stroke-width:2px
|
|
217
|
+
style START fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
218
|
+
style QS fill:#bbf,stroke:#333,stroke-width:2px,color:#000
|
|
219
|
+
style DECIDE fill:#ffb,stroke:#333,stroke-width:2px,color:#000
|
|
220
|
+
style IMPL fill:#f9f,stroke:#333,stroke-width:2px,color:#000
|
|
221
221
|
```
|
|
222
222
|
|
|
223
223
|
---
|
|
@@ -996,7 +996,7 @@ Quick reference for agent selection:
|
|
|
996
996
|
- [Phase 2: Planning Workflows](./workflows-planning.md)
|
|
997
997
|
- [Phase 3: Solutioning Workflows](./workflows-solutioning.md)
|
|
998
998
|
- [Phase 4: Implementation Workflows](./workflows-implementation.md)
|
|
999
|
-
|
|
999
|
+
<!-- Testing & QA Workflows documentation to be added -->
|
|
1000
1000
|
|
|
1001
1001
|
**Advanced References:**
|
|
1002
1002
|
|
|
@@ -1013,7 +1013,6 @@ Quick reference for agent selection:
|
|
|
1013
1013
|
|
|
1014
1014
|
- [Enterprise Agentic Development](./enterprise-agentic-development.md) - Team collaboration
|
|
1015
1015
|
- [FAQ](./faq.md) - Common questions
|
|
1016
|
-
- [Troubleshooting](./troubleshooting.md) - Problem resolution
|
|
1017
1016
|
- [Glossary](./glossary.md) - Terminology reference
|
|
1018
1017
|
|
|
1019
1018
|
---
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
|
|
13
13
|
- [Quick Reference](#quick-reference) - Commands and files
|
|
14
14
|
- [Common Scenarios](#common-scenarios) - Real-world examples
|
|
15
|
-
- [Troubleshooting](#troubleshooting) - Problem solutions
|
|
16
15
|
- [Best Practices](#best-practices) - Success tips
|
|
17
16
|
|
|
18
17
|
---
|
|
@@ -277,7 +276,7 @@ It's better to spend 10-30 minutes generating fresh, accurate docs than to waste
|
|
|
277
276
|
|
|
278
277
|
**When to skip:** Bug fixes, well-understood features, time-sensitive changes
|
|
279
278
|
|
|
280
|
-
See [Workflows
|
|
279
|
+
See the [Workflows section in BMM README](../README.md) for details.
|
|
281
280
|
|
|
282
281
|
### Phase 2: Planning (Required)
|
|
283
282
|
|
|
@@ -336,8 +335,8 @@ flowchart TD
|
|
|
336
335
|
CHECK -->|Yes| CREATE
|
|
337
336
|
CHECK -->|No| RETRO
|
|
338
337
|
|
|
339
|
-
style SPRINT fill:#bfb,stroke:#333,stroke-width:2px
|
|
340
|
-
style RETRO fill:#fbf,stroke:#333,stroke-width:2px
|
|
338
|
+
style SPRINT fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
339
|
+
style RETRO fill:#fbf,stroke:#333,stroke-width:2px,color:#000
|
|
341
340
|
```
|
|
342
341
|
|
|
343
342
|
**Status Progression:**
|
|
@@ -534,8 +533,6 @@ Document in tech-spec/architecture:
|
|
|
534
533
|
|
|
535
534
|
## Troubleshooting
|
|
536
535
|
|
|
537
|
-
For complete troubleshooting, see [Troubleshooting Guide](./troubleshooting.md).
|
|
538
|
-
|
|
539
536
|
### AI Agents Lack Codebase Understanding
|
|
540
537
|
|
|
541
538
|
**Symptoms:**
|
|
@@ -706,9 +703,9 @@ flowchart TD
|
|
|
706
703
|
PRD --> IMPL
|
|
707
704
|
PRD2 --> IMPL
|
|
708
705
|
|
|
709
|
-
style START fill:#f9f,stroke:#333,stroke-width:2px
|
|
710
|
-
style DOC fill:#ffb,stroke:#333,stroke-width:2px
|
|
711
|
-
style IMPL fill:#bfb,stroke:#333,stroke-width:2px
|
|
706
|
+
style START fill:#f9f,stroke:#333,stroke-width:2px,color:#000
|
|
707
|
+
style DOC fill:#ffb,stroke:#333,stroke-width:2px,color:#000
|
|
708
|
+
style IMPL fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
712
709
|
```
|
|
713
710
|
|
|
714
711
|
---
|
|
@@ -735,12 +732,11 @@ flowchart TD
|
|
|
735
732
|
- **[Quick Start Guide](./quick-start.md)** - Getting started with BMM
|
|
736
733
|
- **[Glossary](./glossary.md)** - Key terminology
|
|
737
734
|
- **[FAQ](./faq.md)** - Common questions
|
|
738
|
-
- **[
|
|
739
|
-
- **[Workflows Guide](../workflows/README.md)** - Complete workflow reference
|
|
735
|
+
- **[Workflow Documentation](./README.md#-workflow-guides)** - Complete workflow reference
|
|
740
736
|
|
|
741
737
|
---
|
|
742
738
|
|
|
743
|
-
## Support
|
|
739
|
+
## Support and Resources
|
|
744
740
|
|
|
745
741
|
**Community:**
|
|
746
742
|
|
|
@@ -750,9 +746,8 @@ flowchart TD
|
|
|
750
746
|
|
|
751
747
|
**Documentation:**
|
|
752
748
|
|
|
753
|
-
- [
|
|
754
|
-
- [
|
|
755
|
-
- [BMM Module README](../README.md)
|
|
749
|
+
- [Test Architect Guide](./test-architecture.md) - Comprehensive testing strategy
|
|
750
|
+
- [BMM Module README](../README.md) - Complete module and workflow reference
|
|
756
751
|
|
|
757
752
|
---
|
|
758
753
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
## Table of Contents
|
|
10
10
|
|
|
11
11
|
- [The Paradigm Shift](#the-paradigm-shift)
|
|
12
|
-
- [The Evolving Role of Product Managers
|
|
12
|
+
- [The Evolving Role of Product Managers and UX Designers](#the-evolving-role-of-product-managers-and-ux-designers)
|
|
13
13
|
- [How BMad Method Enables PM/UX Technical Evolution](#how-bmad-method-enables-pmux-technical-evolution)
|
|
14
14
|
- [Team Collaboration Patterns](#team-collaboration-patterns)
|
|
15
15
|
- [Work Distribution Strategies](#work-distribution-strategies)
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
|
|
60
60
|
---
|
|
61
61
|
|
|
62
|
-
## The Evolving Role of Product Managers
|
|
62
|
+
## The Evolving Role of Product Managers and UX Designers
|
|
63
63
|
|
|
64
64
|
### The Future is Now
|
|
65
65
|
|
|
@@ -672,7 +672,7 @@ PMs write BMad PRDs → Stories auto-fed to cloud AI agents → Parallel impleme
|
|
|
672
672
|
- [FAQ](./faq.md) - Common questions
|
|
673
673
|
- [Scale Adaptive System](./scale-adaptive-system.md) - Project levels explained
|
|
674
674
|
- [Quick Start Guide](./quick-start.md) - Getting started
|
|
675
|
-
- [
|
|
675
|
+
- [Workflow Documentation](./README.md#-workflow-guides) - Complete workflow reference
|
|
676
676
|
- [Agents Guide](./agents-guide.md) - Understanding BMad agents
|
|
677
677
|
|
|
678
678
|
---
|
|
@@ -8,11 +8,11 @@ Quick answers to common questions about the BMad Method Module.
|
|
|
8
8
|
|
|
9
9
|
- [Getting Started](#getting-started)
|
|
10
10
|
- [Choosing the Right Level](#choosing-the-right-level)
|
|
11
|
-
- [Workflows
|
|
11
|
+
- [Workflows and Phases](#workflows-and-phases)
|
|
12
12
|
- [Planning Documents](#planning-documents)
|
|
13
13
|
- [Implementation](#implementation)
|
|
14
14
|
- [Brownfield Development](#brownfield-development)
|
|
15
|
-
- [Tools
|
|
15
|
+
- [Tools and Technical](#tools-and-technical)
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
@@ -26,7 +26,7 @@ Quick answers to common questions about the BMad Method Module.
|
|
|
26
26
|
- Creates the tracking status file
|
|
27
27
|
- Routes you to the correct starting workflow
|
|
28
28
|
|
|
29
|
-
For experienced users: use the [Quick Reference](./quick-start.md#quick-reference-agent
|
|
29
|
+
For experienced users: use the [Quick Reference](./quick-start.md#quick-reference-agent-document-mapping) to go directly to the right agent/workflow.
|
|
30
30
|
|
|
31
31
|
### Q: Why do I need fresh chats for each workflow?
|
|
32
32
|
|
|
@@ -108,7 +108,7 @@ The overlap (5-10 stories) is intentional. Choose based on:
|
|
|
108
108
|
|
|
109
109
|
---
|
|
110
110
|
|
|
111
|
-
## Workflows
|
|
111
|
+
## Workflows and Phases
|
|
112
112
|
|
|
113
113
|
### Q: What's the difference between workflow-status and workflow-init?
|
|
114
114
|
|
|
@@ -339,7 +339,7 @@ BMM respects your choice - it won't force modernization, but it will offer it.
|
|
|
339
339
|
|
|
340
340
|
---
|
|
341
341
|
|
|
342
|
-
## Tools
|
|
342
|
+
## Tools and Technical
|
|
343
343
|
|
|
344
344
|
### Q: Why are my Mermaid diagrams not rendering?
|
|
345
345
|
|
|
@@ -399,7 +399,7 @@ Use them together for best results.
|
|
|
399
399
|
|
|
400
400
|
**Why model quality matters:** BMM workflows require LLMs that can follow multi-step processes, maintain context across phases, and implement code that adheres to specifications. Tools with weaker models will struggle with workflow adherence and code quality.
|
|
401
401
|
|
|
402
|
-
See [IDE Setup Guides](
|
|
402
|
+
See [IDE Setup Guides](https://github.com/bmad-code-org/BMAD-METHOD/tree/main/docs/ide-info) for configuration specifics.
|
|
403
403
|
|
|
404
404
|
### Q: Can I customize agents?
|
|
405
405
|
|
|
@@ -557,11 +557,10 @@ Trust your expertise - BMM supports your decisions.
|
|
|
557
557
|
|
|
558
558
|
**A:**
|
|
559
559
|
|
|
560
|
-
1.
|
|
561
|
-
2.
|
|
562
|
-
3.
|
|
563
|
-
4.
|
|
564
|
-
5. Watch [YouTube Tutorials](https://www.youtube.com/@BMadCode)
|
|
560
|
+
1. Search [Complete Documentation](./README.md) for related topics
|
|
561
|
+
2. Ask in [Discord Community](https://discord.gg/gk8jAdXWmj) (#general-dev)
|
|
562
|
+
3. Open a [GitHub Issue](https://github.com/bmad-code-org/BMAD-METHOD/issues)
|
|
563
|
+
4. Watch [YouTube Tutorials](https://www.youtube.com/@BMadCode)
|
|
565
564
|
|
|
566
565
|
### Q: How do I report a bug or request a feature?
|
|
567
566
|
|
|
@@ -580,7 +579,6 @@ Please include:
|
|
|
580
579
|
|
|
581
580
|
- [Quick Start Guide](./quick-start.md) - Get started with BMM
|
|
582
581
|
- [Glossary](./glossary.md) - Terminology reference
|
|
583
|
-
- [Troubleshooting](./troubleshooting.md) - Problem resolution
|
|
584
582
|
- [Scale Adaptive System](./scale-adaptive-system.md) - Understanding levels
|
|
585
583
|
- [Brownfield Guide](./brownfield-guide.md) - Existing codebase workflows
|
|
586
584
|
|
|
@@ -7,11 +7,11 @@ Comprehensive terminology reference for the BMad Method Module.
|
|
|
7
7
|
## Navigation
|
|
8
8
|
|
|
9
9
|
- [Core Concepts](#core-concepts)
|
|
10
|
-
- [Scale
|
|
10
|
+
- [Scale and Complexity](#scale-and-complexity)
|
|
11
11
|
- [Planning Documents](#planning-documents)
|
|
12
|
-
- [Workflow
|
|
13
|
-
- [Agents
|
|
14
|
-
- [Status
|
|
12
|
+
- [Workflow and Phases](#workflow-and-phases)
|
|
13
|
+
- [Agents and Roles](#agents-and-roles)
|
|
14
|
+
- [Status and Tracking](#status-and-tracking)
|
|
15
15
|
- [Project Types](#project-types)
|
|
16
16
|
- [Implementation Terms](#implementation-terms)
|
|
17
17
|
|
|
@@ -41,7 +41,7 @@ A multi-step guided process that orchestrates AI agent activities to produce spe
|
|
|
41
41
|
|
|
42
42
|
---
|
|
43
43
|
|
|
44
|
-
## Scale
|
|
44
|
+
## Scale and Complexity
|
|
45
45
|
|
|
46
46
|
### Quick Flow Track
|
|
47
47
|
|
|
@@ -99,7 +99,7 @@ Game development equivalent of PRD, created by Game Designer agent for game proj
|
|
|
99
99
|
|
|
100
100
|
---
|
|
101
101
|
|
|
102
|
-
## Workflow
|
|
102
|
+
## Workflow and Phases
|
|
103
103
|
|
|
104
104
|
### Phase 0: Documentation (Prerequisite)
|
|
105
105
|
|
|
@@ -135,7 +135,7 @@ Dynamic technical guidance generated for each story via epic-tech-context and st
|
|
|
135
135
|
|
|
136
136
|
---
|
|
137
137
|
|
|
138
|
-
## Agents
|
|
138
|
+
## Agents and Roles
|
|
139
139
|
|
|
140
140
|
### PM (Product Manager)
|
|
141
141
|
|
|
@@ -183,7 +183,7 @@ Multi-agent collaboration feature where all installed agents (19+ from BMM, CIS,
|
|
|
183
183
|
|
|
184
184
|
---
|
|
185
185
|
|
|
186
|
-
## Status
|
|
186
|
+
## Status and Tracking
|
|
187
187
|
|
|
188
188
|
### bmm-workflow-status.yaml
|
|
189
189
|
|
|
@@ -318,4 +318,3 @@ Quick Spec Flow feature that automatically detects existing code style, naming c
|
|
|
318
318
|
- [Brownfield Guide](./brownfield-guide.md) - Working with existing codebases
|
|
319
319
|
- [Quick Spec Flow](./quick-spec-flow.md) - Fast-track for Quick Flow track
|
|
320
320
|
- [FAQ](./faq.md) - Common questions
|
|
321
|
-
- [Troubleshooting](./troubleshooting.md) - Problem resolution
|
|
@@ -60,10 +60,10 @@ flowchart TD
|
|
|
60
60
|
STORIES --> IMPL
|
|
61
61
|
IMPL --> DONE
|
|
62
62
|
|
|
63
|
-
style START fill:#bfb,stroke:#333,stroke-width:2px
|
|
64
|
-
style OPTIONAL fill:#ffb,stroke:#333,stroke-width:2px,stroke-dasharray: 5 5
|
|
65
|
-
style IMPL fill:#bbf,stroke:#333,stroke-width:2px
|
|
66
|
-
style DONE fill:#f9f,stroke:#333,stroke-width:3px
|
|
63
|
+
style START fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
64
|
+
style OPTIONAL fill:#ffb,stroke:#333,stroke-width:2px,stroke-dasharray: 5 5,color:#000
|
|
65
|
+
style IMPL fill:#bbf,stroke:#333,stroke-width:2px,color:#000
|
|
66
|
+
style DONE fill:#f9f,stroke:#333,stroke-width:3px,color:#000
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
---
|
|
@@ -277,7 +277,7 @@ For user-facing changes, Quick Spec Flow captures:
|
|
|
277
277
|
|
|
278
278
|
---
|
|
279
279
|
|
|
280
|
-
## Auto-Validation
|
|
280
|
+
## Auto-Validation and Quality Assurance
|
|
281
281
|
|
|
282
282
|
Quick Spec Flow **automatically validates** everything:
|
|
283
283
|
|
|
@@ -543,7 +543,7 @@ Quick Spec Flow is **fully standalone**:
|
|
|
543
543
|
|
|
544
544
|
---
|
|
545
545
|
|
|
546
|
-
## Tips
|
|
546
|
+
## Tips and Best Practices
|
|
547
547
|
|
|
548
548
|
### 1. **Be Specific in Discovery**
|
|
549
549
|
|
|
@@ -643,7 +643,7 @@ Quick Spec Flow is your **fast path from idea to implementation** for:
|
|
|
643
643
|
## Next Steps
|
|
644
644
|
|
|
645
645
|
- **Try it now:** Load PM agent and describe a small change
|
|
646
|
-
- **Learn more:** See
|
|
646
|
+
- **Learn more:** See the [BMM Workflow Guides](./README.md#-workflow-guides) for comprehensive workflow documentation
|
|
647
647
|
- **Need help deciding?** Run `workflow-init` to get a recommendation
|
|
648
648
|
- **Have questions?** Join us on Discord: https://discord.gg/gk8jAdXWmj
|
|
649
649
|
|
|
@@ -37,9 +37,9 @@ The interactive installer will guide you through setup and create a `bmad/` fold
|
|
|
37
37
|
|
|
38
38
|
### Step 1: Initialize Your Workflow
|
|
39
39
|
|
|
40
|
-
1. **Load the Analyst agent** in your IDE - See your IDE-specific instructions in [docs/ide-info](
|
|
41
|
-
- [Claude Code](
|
|
42
|
-
- [VS Code/Cursor/Windsurf](
|
|
40
|
+
1. **Load the Analyst agent** in your IDE - See your IDE-specific instructions in [docs/ide-info](https://github.com/bmad-code-org/BMAD-METHOD/tree/main/docs/ide-info) for how to activate agents:
|
|
41
|
+
- [Claude Code](https://github.com/bmad-code-org/BMAD-METHOD/blob/main/docs/ide-info/claude-code.md)
|
|
42
|
+
- [VS Code/Cursor/Windsurf](https://github.com/bmad-code-org/BMAD-METHOD/tree/main/docs/ide-info) - Check your IDE folder
|
|
43
43
|
- Other IDEs also supported
|
|
44
44
|
2. **Wait for the agent's menu** to appear
|
|
45
45
|
3. **Tell the agent**: "Run workflow-init" or type "\*workflow-init" or select the menu item number
|
|
@@ -107,7 +107,7 @@ The next TRULY REQUIRED step is:
|
|
|
107
107
|
|
|
108
108
|
When an agent tells you to run a workflow (like `prd`):
|
|
109
109
|
|
|
110
|
-
1. **Start a new chat** with the specified agent (e.g., PM) - See [docs/ide-info](
|
|
110
|
+
1. **Start a new chat** with the specified agent (e.g., PM) - See [docs/ide-info](https://github.com/bmad-code-org/BMAD-METHOD/tree/main/docs/ide-info) for your IDE's specific instructions
|
|
111
111
|
2. **Wait for the menu** to appear
|
|
112
112
|
3. **Tell the agent** to run it using any of these formats:
|
|
113
113
|
- Type the shorthand: `*prd`
|
|
@@ -323,10 +323,10 @@ flowchart LR
|
|
|
323
323
|
P2 --> P3
|
|
324
324
|
P3 --> P4
|
|
325
325
|
|
|
326
|
-
style P1 fill:#bbf,stroke:#333,stroke-width:2px
|
|
327
|
-
style P2 fill:#bfb,stroke:#333,stroke-width:2px
|
|
328
|
-
style P3 fill:#ffb,stroke:#333,stroke-width:2px
|
|
329
|
-
style P4 fill:#fbf,stroke:#333,stroke-width:2px
|
|
326
|
+
style P1 fill:#bbf,stroke:#333,stroke-width:2px,color:#000
|
|
327
|
+
style P2 fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
328
|
+
style P3 fill:#ffb,stroke:#333,stroke-width:2px,color:#000
|
|
329
|
+
style P4 fill:#fbf,stroke:#333,stroke-width:2px,color:#000
|
|
330
330
|
```
|
|
331
331
|
|
|
332
332
|
## Common Questions
|
|
@@ -350,7 +350,7 @@ A: Yes, once you learn the flow. Use the Quick Reference in Step 2 to go directl
|
|
|
350
350
|
|
|
351
351
|
- **During workflows**: Agents guide you with questions and explanations
|
|
352
352
|
- **Community**: [Discord](https://discord.gg/gk8jAdXWmj) - #general-dev, #bugs-issues
|
|
353
|
-
- **Complete guide**: [BMM
|
|
353
|
+
- **Complete guide**: [BMM Workflow Documentation](./README.md#-workflow-guides)
|
|
354
354
|
- **YouTube tutorials**: [BMad Code Channel](https://www.youtube.com/@BMadCode)
|
|
355
355
|
|
|
356
356
|
---
|
|
@@ -51,9 +51,9 @@ flowchart TD
|
|
|
51
51
|
Q1 -->|Yes| QF[Quick Flow<br/>Tech-spec only]
|
|
52
52
|
Q1 -->|Uncertain| M
|
|
53
53
|
|
|
54
|
-
style QF fill:#bfb,stroke:#333,stroke-width:2px
|
|
55
|
-
style M fill:#bbf,stroke:#333,stroke-width:2px
|
|
56
|
-
style E fill:#f9f,stroke:#333,stroke-width:2px
|
|
54
|
+
style QF fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
55
|
+
style M fill:#bbf,stroke:#333,stroke-width:2px,color:#000
|
|
56
|
+
style E fill:#f9f,stroke:#333,stroke-width:2px,color:#000
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
### Quick Keywords
|
|
@@ -389,8 +389,8 @@ flowchart TD
|
|
|
389
389
|
TRACK -->|Method| M[PRD + Arch]
|
|
390
390
|
TRACK -->|Enterprise| E[PRD + Arch + Sec/Ops]
|
|
391
391
|
|
|
392
|
-
style DOC fill:#ffb,stroke:#333,stroke-width:2px
|
|
393
|
-
style TRACK fill:#bfb,stroke:#333,stroke-width:2px
|
|
392
|
+
style DOC fill:#ffb,stroke:#333,stroke-width:2px,color:#000
|
|
393
|
+
style TRACK fill:#bfb,stroke:#333,stroke-width:2px,color:#000
|
|
394
394
|
```
|
|
395
395
|
|
|
396
396
|
---
|
|
@@ -592,7 +592,7 @@ Run `workflow-init` on existing projects to migrate to new tracking system. It d
|
|
|
592
592
|
- **[Brownfield Guide](./brownfield-guide.md)** - Existing codebase workflows
|
|
593
593
|
- **[Glossary](./glossary.md)** - Complete terminology
|
|
594
594
|
- **[FAQ](./faq.md)** - Common questions
|
|
595
|
-
- **[Workflows Guide](
|
|
595
|
+
- **[Workflows Guide](./README.md#-workflow-guides)** - Complete workflow reference
|
|
596
596
|
|
|
597
597
|
---
|
|
598
598
|
|