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
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
# Epic and Story Decomposition - Bite-Sized Implementation Planning
|
|
2
|
-
|
|
3
|
-
<critical>The workflow execution engine is governed by: {project-root}/bmad/core/tasks/workflow.xml</critical>
|
|
4
|
-
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
|
5
|
-
<critical>This workflow transforms requirements into BITE-SIZED STORIES for limited context agents</critical>
|
|
6
|
-
<critical>EVERY story must be completable by a single limited context window dev agent in one session</critical>
|
|
7
|
-
<critical>Communicate all responses in {communication_language} and adapt deeply to {user_skill_level}</critical>
|
|
8
|
-
<critical>Generate all documents in {document_output_language}</critical>
|
|
9
|
-
<critical>LIVING DOCUMENT: Write to epics.md continuously as you work - never wait until the end</critical>
|
|
10
|
-
|
|
11
|
-
<workflow>
|
|
12
|
-
|
|
13
|
-
<step n="0" goal="Load context and requirements">
|
|
14
|
-
<action>Welcome the {user_name} to the project inception high level epic and story planning.
|
|
15
|
-
|
|
16
|
-
Load required documents:
|
|
17
|
-
|
|
18
|
-
1. PRD.md (must exist - fuzzy match on name, might be a folder with an index and smaller sharded files also)
|
|
19
|
-
2. domain-brief.md (if exists)
|
|
20
|
-
3. product-brief.md (if exists)
|
|
21
|
-
|
|
22
|
-
Extract from PRD:
|
|
23
|
-
|
|
24
|
-
- Functional requirements
|
|
25
|
-
- Non-functional requirements
|
|
26
|
-
- Domain considerations
|
|
27
|
-
- Project type
|
|
28
|
-
- MVP scope vs growth features
|
|
29
|
-
|
|
30
|
-
If continuing from PRD workflow:
|
|
31
|
-
"Great! Now let's break down your requirements into actionable epics and bite-sized stories that development agents can implement independently."
|
|
32
|
-
|
|
33
|
-
If starting fresh:
|
|
34
|
-
"I'll help you transform your PRD into organized epics with implementable stories. Each story will be small enough for a single dev agent to complete in one session."</action>
|
|
35
|
-
</step>
|
|
36
|
-
|
|
37
|
-
<step n="1" goal="Form epics from natural groupings">
|
|
38
|
-
<action>Transform requirements into epics organically
|
|
39
|
-
|
|
40
|
-
INTENT: Find natural boundaries that make sense for THIS product
|
|
41
|
-
|
|
42
|
-
Look at the requirements and find patterns:
|
|
43
|
-
|
|
44
|
-
- Features that work together
|
|
45
|
-
- User journeys that connect
|
|
46
|
-
- Technical systems that relate
|
|
47
|
-
- Business capabilities that group
|
|
48
|
-
- Domain requirements that cluster (compliance, validation, etc.)
|
|
49
|
-
|
|
50
|
-
Examples of natural epic formation:
|
|
51
|
-
|
|
52
|
-
- Auth features → "User Management" epic
|
|
53
|
-
- Payment features → "Monetization" epic
|
|
54
|
-
- Social features → "Community" epic
|
|
55
|
-
- Admin features → "Administration" epic
|
|
56
|
-
- Compliance requirements → "Regulatory Compliance" epic
|
|
57
|
-
- API endpoints → "API Infrastructure" epic
|
|
58
|
-
|
|
59
|
-
But let the product guide you - don't force standard patterns
|
|
60
|
-
|
|
61
|
-
Each epic should:
|
|
62
|
-
|
|
63
|
-
- Have a clear business goal
|
|
64
|
-
- Be independently valuable
|
|
65
|
-
- Contain 3-8 related features
|
|
66
|
-
- Be completable in 1-2 sprints
|
|
67
|
-
|
|
68
|
-
Name epics based on value, not technical components:
|
|
69
|
-
GOOD: "User Onboarding", "Content Discovery", "Team Collaboration"
|
|
70
|
-
NOT: "Database", "Frontend", "API"
|
|
71
|
-
|
|
72
|
-
If domain considerations exist:
|
|
73
|
-
|
|
74
|
-
- Create dedicated compliance/validation epics
|
|
75
|
-
- Note special expertise needed per epic
|
|
76
|
-
- Flag epics with regulatory dependencies
|
|
77
|
-
|
|
78
|
-
Present epic groupings conversationally:
|
|
79
|
-
"Based on your requirements, I see these natural epic groupings:
|
|
80
|
-
|
|
81
|
-
1. [Epic Name] - [Brief description]
|
|
82
|
-
2. [Epic Name] - [Brief description]
|
|
83
|
-
3. [Epic Name] - [Brief description]
|
|
84
|
-
|
|
85
|
-
Does this organization make sense for how you think about the product?"</action>
|
|
86
|
-
|
|
87
|
-
<template-output>epics_structure</template-output>
|
|
88
|
-
</step>
|
|
89
|
-
|
|
90
|
-
<step n="2" goal="Decompose into bite-sized stories">
|
|
91
|
-
<critical>Small vertical sliced small stories are best for agentic dumb developers to implement without forgetting things</critical>
|
|
92
|
-
|
|
93
|
-
<action>Break each epic into small, implementable stories
|
|
94
|
-
|
|
95
|
-
INTENT: Create stories that one dev agent can complete independently
|
|
96
|
-
|
|
97
|
-
For each epic, decompose into stories that are:
|
|
98
|
-
|
|
99
|
-
- Small enough for single context window
|
|
100
|
-
- Clear enough for autonomous implementation
|
|
101
|
-
- Independent enough to develop in parallel when possible
|
|
102
|
-
- Specific enough to have clear acceptance criteria
|
|
103
|
-
|
|
104
|
-
GOOD story examples:
|
|
105
|
-
|
|
106
|
-
- "Create login API endpoint that accepts email/password and returns JWT"
|
|
107
|
-
- "Build user profile component with avatar upload to S3"
|
|
108
|
-
- "Add password reset email template and sending logic"
|
|
109
|
-
- "Implement rate limiting on auth endpoints (5 attempts per minute)"
|
|
110
|
-
- "Create HIPAA-compliant audit log for patient data access"
|
|
111
|
-
- "Build FDA 21 CFR Part 11 electronic signature component"
|
|
112
|
-
|
|
113
|
-
BAD story examples:
|
|
114
|
-
|
|
115
|
-
- "Build complete authentication system" (too big)
|
|
116
|
-
- "Handle user management" (too vague)
|
|
117
|
-
- "Make it secure" (not specific)
|
|
118
|
-
- "Integrate everything" (requires multiple contexts)
|
|
119
|
-
|
|
120
|
-
Story format:
|
|
121
|
-
"As a [user type], I want [specific feature], so that [clear value]"
|
|
122
|
-
|
|
123
|
-
Technical notes to include:
|
|
124
|
-
|
|
125
|
-
- Affected files/components if known
|
|
126
|
-
- Required endpoints/methods
|
|
127
|
-
- Data structures needed
|
|
128
|
-
- Specific validation rules
|
|
129
|
-
- Compliance requirements if applicable
|
|
130
|
-
- Dependencies on other stories
|
|
131
|
-
|
|
132
|
-
Domain-aware story creation:
|
|
133
|
-
|
|
134
|
-
- For healthcare: Include specific regulations per story
|
|
135
|
-
- For fintech: Note PCI/security requirements per story
|
|
136
|
-
- For govtech: Flag accessibility needs per story
|
|
137
|
-
- For aerospace: Include safety/validation requirements
|
|
138
|
-
|
|
139
|
-
Check each story:
|
|
140
|
-
|
|
141
|
-
- Can this be explained in <1000 words?
|
|
142
|
-
- Can one agent complete without another's output?
|
|
143
|
-
- Is the scope crystal clear?
|
|
144
|
-
- Are success criteria obvious?
|
|
145
|
-
- Are domain requirements specified?
|
|
146
|
-
|
|
147
|
-
If too big → split into smaller stories
|
|
148
|
-
If too vague → add specifics
|
|
149
|
-
If dependent → note the dependency clearly
|
|
150
|
-
If domain-critical → flag compliance needs</action>
|
|
151
|
-
|
|
152
|
-
<template-output>epic_1_stories</template-output>
|
|
153
|
-
<template-output>epic_2_stories</template-output>
|
|
154
|
-
<template-output>epic_3_stories</template-output>
|
|
155
|
-
|
|
156
|
-
<!-- Continue for each epic discovered -->
|
|
157
|
-
</step>
|
|
158
|
-
|
|
159
|
-
<step n="3" goal="Sequence for smart implementation">
|
|
160
|
-
<action>Order stories for successful development
|
|
161
|
-
|
|
162
|
-
INTENT: Create a logical flow that minimizes blockers and maximizes progress
|
|
163
|
-
|
|
164
|
-
Consider dependencies:
|
|
165
|
-
TECHNICAL:
|
|
166
|
-
|
|
167
|
-
- Authentication before protected features
|
|
168
|
-
- Data models before business logic
|
|
169
|
-
- Core features before enhancements
|
|
170
|
-
- API before frontend that uses it
|
|
171
|
-
|
|
172
|
-
DOMAIN:
|
|
173
|
-
|
|
174
|
-
- Compliance infrastructure before features
|
|
175
|
-
- Validation framework before clinical features
|
|
176
|
-
- Audit logging before financial transactions
|
|
177
|
-
- Safety systems before operational features
|
|
178
|
-
|
|
179
|
-
PRACTICAL:
|
|
180
|
-
|
|
181
|
-
- What gives visible progress early?
|
|
182
|
-
- What reduces risk soonest?
|
|
183
|
-
- What enables parallel work?
|
|
184
|
-
- What delivers value fastest?
|
|
185
|
-
|
|
186
|
-
Create implementation phases:
|
|
187
|
-
|
|
188
|
-
Phase 1 - Foundation:
|
|
189
|
-
|
|
190
|
-
- Core data models
|
|
191
|
-
- Authentication/authorization
|
|
192
|
-
- Basic infrastructure
|
|
193
|
-
- Essential APIs
|
|
194
|
-
- Compliance foundation (if domain requires)
|
|
195
|
-
|
|
196
|
-
Phase 2 - Core Features:
|
|
197
|
-
|
|
198
|
-
- MVP functionality
|
|
199
|
-
- Key user flows
|
|
200
|
-
- Basic UI/UX
|
|
201
|
-
- Critical integrations
|
|
202
|
-
- Domain validations (if applicable)
|
|
203
|
-
|
|
204
|
-
Phase 3 - Enhancement:
|
|
205
|
-
|
|
206
|
-
- Polish and refinement
|
|
207
|
-
- Additional features
|
|
208
|
-
- Performance optimization
|
|
209
|
-
- Extended functionality
|
|
210
|
-
- Advanced compliance features
|
|
211
|
-
|
|
212
|
-
Phase 4 - Growth:
|
|
213
|
-
|
|
214
|
-
- Analytics and monitoring
|
|
215
|
-
- Advanced features
|
|
216
|
-
- Scaling preparations
|
|
217
|
-
- Nice-to-have additions
|
|
218
|
-
|
|
219
|
-
For complex domains, add gates:
|
|
220
|
-
|
|
221
|
-
- "Gate: Security audit before payment processing"
|
|
222
|
-
- "Gate: Clinical validation before patient features"
|
|
223
|
-
- "Gate: Compliance review before launch"
|
|
224
|
-
|
|
225
|
-
Present the sequencing conversationally:
|
|
226
|
-
"Here's a smart implementation order:
|
|
227
|
-
|
|
228
|
-
**Phase 1 (Foundation) - Week 1-2:**
|
|
229
|
-
|
|
230
|
-
- Story 1.1: [Description]
|
|
231
|
-
- Story 1.2: [Description] (can parallel with 1.1)
|
|
232
|
-
- Story 1.3: [Description] (depends on 1.1)
|
|
233
|
-
|
|
234
|
-
**Phase 2 (Core) - Week 3-4:**
|
|
235
|
-
[Continue...]
|
|
236
|
-
|
|
237
|
-
This gives you something working by [milestone] and allows [X] stories to run in parallel."</action>
|
|
238
|
-
|
|
239
|
-
<template-output>implementation_sequence</template-output>
|
|
240
|
-
<template-output>development_phases</template-output>
|
|
241
|
-
<template-output>dependency_graph</template-output>
|
|
242
|
-
</step>
|
|
243
|
-
|
|
244
|
-
<step n="4" goal="Validate story sizing and clarity">
|
|
245
|
-
<action>Review all stories for dev agent compatibility
|
|
246
|
-
|
|
247
|
-
Run through each story and verify:
|
|
248
|
-
|
|
249
|
-
SIZE CHECK:
|
|
250
|
-
|
|
251
|
-
- Story description < 500 words
|
|
252
|
-
- Clear inputs and outputs defined
|
|
253
|
-
- Single responsibility principle
|
|
254
|
-
- No hidden complexity
|
|
255
|
-
|
|
256
|
-
CLARITY CHECK:
|
|
257
|
-
|
|
258
|
-
- Acceptance criteria explicit
|
|
259
|
-
- Technical approach clear
|
|
260
|
-
- No ambiguous requirements
|
|
261
|
-
- Success measurable
|
|
262
|
-
|
|
263
|
-
DEPENDENCY CHECK:
|
|
264
|
-
|
|
265
|
-
- Dependencies documented
|
|
266
|
-
- Can start with clear inputs
|
|
267
|
-
- Outputs well-defined
|
|
268
|
-
- Parallel opportunities noted
|
|
269
|
-
|
|
270
|
-
DOMAIN CHECK (if applicable):
|
|
271
|
-
|
|
272
|
-
- Compliance requirements stated
|
|
273
|
-
- Validation criteria defined
|
|
274
|
-
- Regulatory references included
|
|
275
|
-
- Special expertise noted
|
|
276
|
-
|
|
277
|
-
If any issues found:
|
|
278
|
-
"Story [X] seems too large. Let me split it:
|
|
279
|
-
|
|
280
|
-
- [Smaller story 1]
|
|
281
|
-
- [Smaller story 2]"
|
|
282
|
-
|
|
283
|
-
"Story [Y] needs clarification on [aspect]. How should we handle [specific question]?"
|
|
284
|
-
|
|
285
|
-
Final validation:
|
|
286
|
-
"All stories are now sized for 200k context limits.
|
|
287
|
-
|
|
288
|
-
- Total stories: [count]
|
|
289
|
-
- Can run in parallel: [count]
|
|
290
|
-
- Sequential dependencies: [count]
|
|
291
|
-
- Estimated completion: [timeframe]"</action>
|
|
292
|
-
|
|
293
|
-
<template-output>story_validation</template-output>
|
|
294
|
-
</step>
|
|
295
|
-
|
|
296
|
-
<step n="5" goal="Create development guidance">
|
|
297
|
-
<action>Add practical guidance for implementation teams
|
|
298
|
-
|
|
299
|
-
Create quick reference for development:
|
|
300
|
-
|
|
301
|
-
GETTING STARTED:
|
|
302
|
-
"Start with Phase 1 stories - multiple can run in parallel.
|
|
303
|
-
Key files to create first: [list]
|
|
304
|
-
Recommended agent allocation: [suggestion]"
|
|
305
|
-
|
|
306
|
-
DOMAIN GUIDANCE (if applicable):
|
|
307
|
-
"Critical compliance checkpoints:
|
|
308
|
-
|
|
309
|
-
- After story [X]: Run [validation]
|
|
310
|
-
- Before story [Y]: Review [regulation]
|
|
311
|
-
- Throughout: Maintain [audit trail]"
|
|
312
|
-
|
|
313
|
-
TECHNICAL NOTES:
|
|
314
|
-
"Architecture decisions needed:
|
|
315
|
-
|
|
316
|
-
- [Decision 1] affects stories [A, B, C]
|
|
317
|
-
- [Decision 2] blocks story [D]
|
|
318
|
-
|
|
319
|
-
Consider these patterns:
|
|
320
|
-
|
|
321
|
-
- [Pattern] for [epic]
|
|
322
|
-
- [Pattern] for [requirement]"
|
|
323
|
-
|
|
324
|
-
RISK MITIGATION:
|
|
325
|
-
"Watch out for:
|
|
326
|
-
|
|
327
|
-
- [Risk] in story [X]
|
|
328
|
-
- [Complexity] in epic [Y]
|
|
329
|
-
- [Dependency] between [A] and [B]"
|
|
330
|
-
|
|
331
|
-
SUCCESS METRICS:
|
|
332
|
-
"You'll know Phase 1 is complete when:
|
|
333
|
-
|
|
334
|
-
- [Measurable outcome]
|
|
335
|
-
- [Testable feature]
|
|
336
|
-
- [Validation passed]"</action>
|
|
337
|
-
|
|
338
|
-
<template-output>implementation_guidance</template-output>
|
|
339
|
-
</step>
|
|
340
|
-
|
|
341
|
-
<step n="6" goal="Finalize and prepare handoff">
|
|
342
|
-
<action>Complete the epics document and prepare for development
|
|
343
|
-
|
|
344
|
-
Review what we've created:
|
|
345
|
-
"We've successfully decomposed your requirements into:
|
|
346
|
-
|
|
347
|
-
- [x] epics
|
|
348
|
-
- [Y] total stories
|
|
349
|
-
- [Z] phases of development
|
|
350
|
-
|
|
351
|
-
Every story is sized for a single dev agent to complete independently."
|
|
352
|
-
|
|
353
|
-
Highlight key achievements:
|
|
354
|
-
|
|
355
|
-
- Stories respect 200k context limit
|
|
356
|
-
- Dependencies clearly mapped
|
|
357
|
-
- Domain requirements integrated
|
|
358
|
-
- Parallel development enabled
|
|
359
|
-
|
|
360
|
-
Save completed epics.md with:
|
|
361
|
-
|
|
362
|
-
- Full epic descriptions
|
|
363
|
-
- All stories with acceptance criteria
|
|
364
|
-
- Implementation sequence
|
|
365
|
-
- Development phases
|
|
366
|
-
- Dependency notes
|
|
367
|
-
- Domain compliance requirements (if applicable)</action>
|
|
368
|
-
|
|
369
|
-
<output>**✅ Epic Decomposition Complete, {user_name}!**
|
|
370
|
-
|
|
371
|
-
Your requirements are now organized into **{epic_count} epics** with **{story_count} bite-sized stories**.
|
|
372
|
-
|
|
373
|
-
**Created:**
|
|
374
|
-
|
|
375
|
-
- **epics.md** - Complete epic breakdown with implementable stories
|
|
376
|
-
|
|
377
|
-
**Key Stats:**
|
|
378
|
-
|
|
379
|
-
- Average story size: Fits in 200k context
|
|
380
|
-
- Parallel stories: {parallel_count} can run simultaneously
|
|
381
|
-
- Sequential chains: {sequential_count} dependency chains
|
|
382
|
-
- Estimated velocity: {velocity_estimate}
|
|
383
|
-
|
|
384
|
-
**Next Steps:**
|
|
385
|
-
|
|
386
|
-
1. Review epics.md for the complete breakdown
|
|
387
|
-
2. Start Phase 1 implementation with parallel stories
|
|
388
|
-
3. Use story IDs for tracking progress
|
|
389
|
-
|
|
390
|
-
Each story is crafted for a single dev agent to complete autonomously. No monoliths, no confusion, just clear implementation paths.
|
|
391
|
-
|
|
392
|
-
Ready to begin development with any story marked "can start immediately"!</output>
|
|
393
|
-
</step>
|
|
394
|
-
|
|
395
|
-
</workflow>
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# Epic and Story Decomposition Workflow
|
|
2
|
-
name: create-epics-and-stories
|
|
3
|
-
description: "Transform PRD requirements into bite-sized stories organized in epics for 200k context dev agents"
|
|
4
|
-
author: "BMad"
|
|
5
|
-
|
|
6
|
-
# Critical variables from config
|
|
7
|
-
config_source: "{project-root}/bmad/bmm/config.yaml"
|
|
8
|
-
project_name: "{config_source}:project_name"
|
|
9
|
-
output_folder: "{config_source}:output_folder"
|
|
10
|
-
user_name: "{config_source}:user_name"
|
|
11
|
-
communication_language: "{config_source}:communication_language"
|
|
12
|
-
document_output_language: "{config_source}:document_output_language"
|
|
13
|
-
user_skill_level: "{config_source}:user_skill_level"
|
|
14
|
-
date: system-generated
|
|
15
|
-
|
|
16
|
-
# Workflow components
|
|
17
|
-
installed_path: "{project-root}/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories"
|
|
18
|
-
instructions: "{installed_path}/instructions.md"
|
|
19
|
-
template: "{installed_path}/epics-template.md"
|
|
20
|
-
|
|
21
|
-
# Input files (from parent PRD workflow)
|
|
22
|
-
prd_file: "{output_folder}/PRD.md"
|
|
23
|
-
|
|
24
|
-
# Output files
|
|
25
|
-
default_output_file: "{output_folder}/epics.md"
|
|
26
|
-
|
|
27
|
-
# Optional input documents
|
|
28
|
-
recommended_inputs:
|
|
29
|
-
- prd: "{output_folder}/PRD.md"
|
|
30
|
-
- product_brief: "{output_folder}/product-brief.md"
|
|
31
|
-
- domain_brief: "{output_folder}/domain-brief.md"
|
|
32
|
-
|
|
33
|
-
standalone: true
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
domain,signals,complexity,key_concerns,required_knowledge,suggested_workflow,web_searches,special_sections
|
|
2
|
-
healthcare,"medical,diagnostic,clinical,FDA,patient,treatment,HIPAA,therapy,pharma,drug",high,"FDA approval;Clinical validation;HIPAA compliance;Patient safety;Medical device classification;Liability","Regulatory pathways;Clinical trial design;Medical standards;Data privacy;Integration requirements","domain-research","FDA software medical device guidance {date};HIPAA compliance software requirements;Medical software standards {date};Clinical validation software","clinical_requirements;regulatory_pathway;validation_methodology;safety_measures"
|
|
3
|
-
fintech,"payment,banking,trading,investment,crypto,wallet,transaction,KYC,AML,funds,fintech",high,"Regional compliance;Security standards;Audit requirements;Fraud prevention;Data protection","KYC/AML requirements;PCI DSS;Open banking;Regional laws (US/EU/APAC);Crypto regulations","domain-research","fintech regulations {date};payment processing compliance {date};open banking API standards;cryptocurrency regulations {date}","compliance_matrix;security_architecture;audit_requirements;fraud_prevention"
|
|
4
|
-
govtech,"government,federal,civic,public sector,citizen,municipal,voting",high,"Procurement rules;Security clearance;Accessibility (508);FedRAMP;Privacy;Transparency","Government procurement;Security frameworks;Accessibility standards;Privacy laws;Open data requirements","domain-research","government software procurement {date};FedRAMP compliance requirements;section 508 accessibility;government security standards","procurement_compliance;security_clearance;accessibility_standards;transparency_requirements"
|
|
5
|
-
edtech,"education,learning,student,teacher,curriculum,assessment,K-12,university,LMS",medium,"Student privacy (COPPA/FERPA);Accessibility;Content moderation;Age verification;Curriculum standards","Educational privacy laws;Learning standards;Accessibility requirements;Content guidelines;Assessment validity","domain-research","educational software privacy {date};COPPA FERPA compliance;WCAG education requirements;learning management standards","privacy_compliance;content_guidelines;accessibility_features;curriculum_alignment"
|
|
6
|
-
aerospace,"aircraft,spacecraft,aviation,drone,satellite,propulsion,flight,radar,navigation",high,"Safety certification;DO-178C compliance;Performance validation;Simulation accuracy;Export controls","Aviation standards;Safety analysis;Simulation validation;ITAR/export controls;Performance requirements","domain-research + technical-model","DO-178C software certification;aerospace simulation standards {date};ITAR export controls software;aviation safety requirements","safety_certification;simulation_validation;performance_requirements;export_compliance"
|
|
7
|
-
automotive,"vehicle,car,autonomous,ADAS,automotive,driving,EV,charging",high,"Safety standards;ISO 26262;V2X communication;Real-time requirements;Certification","Automotive standards;Functional safety;V2X protocols;Real-time systems;Testing requirements","domain-research","ISO 26262 automotive software;automotive safety standards {date};V2X communication protocols;EV charging standards","safety_standards;functional_safety;communication_protocols;certification_requirements"
|
|
8
|
-
scientific,"research,algorithm,simulation,modeling,computational,analysis,data science,ML,AI",medium,"Reproducibility;Validation methodology;Peer review;Performance;Accuracy;Computational resources","Scientific method;Statistical validity;Computational requirements;Domain expertise;Publication standards","technical-model","scientific computing best practices {date};research reproducibility standards;computational modeling validation;peer review software","validation_methodology;accuracy_metrics;reproducibility_plan;computational_requirements"
|
|
9
|
-
legaltech,"legal,law,contract,compliance,litigation,patent,attorney,court",high,"Legal ethics;Bar regulations;Data retention;Attorney-client privilege;Court system integration","Legal practice rules;Ethics requirements;Court filing systems;Document standards;Confidentiality","domain-research","legal technology ethics {date};law practice management software requirements;court filing system standards;attorney client privilege technology","ethics_compliance;data_retention;confidentiality_measures;court_integration"
|
|
10
|
-
insuretech,"insurance,claims,underwriting,actuarial,policy,risk,premium",high,"Insurance regulations;Actuarial standards;Data privacy;Fraud detection;State compliance","Insurance regulations by state;Actuarial methods;Risk modeling;Claims processing;Regulatory reporting","domain-research","insurance software regulations {date};actuarial standards software;insurance fraud detection;state insurance compliance","regulatory_requirements;risk_modeling;fraud_detection;reporting_compliance"
|
|
11
|
-
energy,"energy,utility,grid,solar,wind,power,electricity,oil,gas",high,"Grid compliance;NERC standards;Environmental regulations;Safety requirements;Real-time operations","Energy regulations;Grid standards;Environmental compliance;Safety protocols;SCADA systems","domain-research","energy sector software compliance {date};NERC CIP standards;smart grid requirements;renewable energy software standards","grid_compliance;safety_protocols;environmental_compliance;operational_requirements"
|
|
12
|
-
gaming,"game,player,gameplay,level,character,multiplayer,quest",redirect,"REDIRECT TO GAME WORKFLOWS","Game design","game-brief","NA","NA"
|
|
13
|
-
general,"",low,"Standard requirements;Basic security;User experience;Performance","General software practices","continue","software development best practices {date}","standard_requirements"
|