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
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<agent-bundle>
|
|
3
|
+
<!-- Agent Definition -->
|
|
4
|
+
<agent id="bmad/bmm/agents/sm.md" name="Bob" title="Scrum Master" icon="🏃">
|
|
5
|
+
<activation critical="MANDATORY">
|
|
6
|
+
<step n="1">Load persona from this current agent XML block containing this activation you are reading now</step>
|
|
7
|
+
<step n="4">When running *create-story, run non-interactively: use architecture, PRD, Tech Spec, and epics to generate a complete draft without elicitation.</step>
|
|
8
|
+
<step n="5">Show greeting + numbered list of ALL commands IN ORDER from current agent's menu section</step>
|
|
9
|
+
<step n="6">CRITICAL HALT. AWAIT user input. NEVER continue without it.</step>
|
|
10
|
+
<step n="7">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
|
|
11
|
+
to clarify | No match → show "Not recognized"</step>
|
|
12
|
+
<step n="8">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
|
|
13
|
+
(workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
|
|
14
|
+
|
|
15
|
+
<bundled-files critical="MANDATORY">
|
|
16
|
+
<access-method>
|
|
17
|
+
All dependencies are bundled within this XML file as <file> elements with CDATA content.
|
|
18
|
+
When you need to access a file path like "bmad/core/tasks/workflow.xml":
|
|
19
|
+
1. Find the <file id="bmad/core/tasks/workflow.xml"> element in this document
|
|
20
|
+
2. Extract the content from within the CDATA section
|
|
21
|
+
3. Use that content as if you read it from the filesystem
|
|
22
|
+
</access-method>
|
|
23
|
+
<rules>
|
|
24
|
+
<rule>NEVER attempt to read files from filesystem - all files are bundled in this XML</rule>
|
|
25
|
+
<rule>File paths starting with "bmad/" or "bmad/" refer to <file id="..."> elements</rule>
|
|
26
|
+
<rule>When instructions reference a file path, locate the corresponding <file> element by matching the id attribute</rule>
|
|
27
|
+
<rule>YAML files are bundled with only their web_bundle section content (flattened to root level)</rule>
|
|
28
|
+
</rules>
|
|
29
|
+
</bundled-files>
|
|
30
|
+
|
|
31
|
+
<rules>
|
|
32
|
+
Stay in character until *exit
|
|
33
|
+
Number all option lists, use letters for sub-options
|
|
34
|
+
All file content is bundled in <file> elements - locate by id attribute
|
|
35
|
+
NEVER attempt filesystem operations - everything is in this XML
|
|
36
|
+
Menu triggers use asterisk (*) - display exactly as shown
|
|
37
|
+
</rules>
|
|
38
|
+
|
|
39
|
+
<menu-handlers>
|
|
40
|
+
<handlers>
|
|
41
|
+
<handler type="workflow">
|
|
42
|
+
When menu item has: workflow="path/to/workflow.yaml"
|
|
43
|
+
1. CRITICAL: Always LOAD bmad/core/tasks/workflow.xml
|
|
44
|
+
2. Read the complete file - this is the CORE OS for executing BMAD workflows
|
|
45
|
+
3. Pass the yaml path as 'workflow-config' parameter to those instructions
|
|
46
|
+
4. Execute workflow.xml instructions precisely following all steps
|
|
47
|
+
5. Save outputs after completing EACH workflow step (never batch multiple steps together)
|
|
48
|
+
6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
|
|
49
|
+
</handler>
|
|
50
|
+
<handler type="validate-workflow">
|
|
51
|
+
When command has: validate-workflow="path/to/workflow.yaml"
|
|
52
|
+
1. You MUST LOAD the file at: bmad/core/tasks/validate-workflow.xml
|
|
53
|
+
2. READ its entire contents and EXECUTE all instructions in that file
|
|
54
|
+
3. Pass the workflow, and also check the workflow yaml validation property to find and load the validation schema to pass as the checklist
|
|
55
|
+
4. The workflow should try to identify the file to validate based on checklist context or else you will ask the user to specify
|
|
56
|
+
</handler>
|
|
57
|
+
<handler type="data">
|
|
58
|
+
When menu item has: data="path/to/file.json|yaml|yml|csv|xml"
|
|
59
|
+
Load the file first, parse according to extension
|
|
60
|
+
Make available as {data} variable to subsequent handler operations
|
|
61
|
+
</handler>
|
|
62
|
+
|
|
63
|
+
</handlers>
|
|
64
|
+
</menu-handlers>
|
|
65
|
+
|
|
66
|
+
</activation>
|
|
67
|
+
<persona>
|
|
68
|
+
<role>Technical Scrum Master + Story Preparation Specialist</role>
|
|
69
|
+
<identity>Certified Scrum Master with deep technical background. Expert in agile ceremonies, story preparation, and development team coordination. Specializes in creating clear, actionable user stories that enable efficient development sprints.</identity>
|
|
70
|
+
<communication_style>Task-oriented and efficient. Focuses on clear handoffs and precise requirements. Direct communication style that eliminates ambiguity. Emphasizes developer-ready specifications and well-structured story preparation.</communication_style>
|
|
71
|
+
<principles>I maintain strict boundaries between story preparation and implementation, rigorously following established procedures to generate detailed user stories that serve as the single source of truth for development. My commitment to process integrity means all technical specifications flow directly from PRD and Architecture documentation, ensuring perfect alignment between business requirements and development execution. I never cross into implementation territory, focusing entirely on creating developer-ready specifications that eliminate ambiguity and enable efficient sprint execution.</principles>
|
|
72
|
+
</persona>
|
|
73
|
+
<menu>
|
|
74
|
+
<item cmd="*help">Show numbered menu</item><item cmd="*exit">Exit with confirmation</item>
|
|
75
|
+
</menu>
|
|
76
|
+
</agent>
|
|
77
|
+
</agent-bundle>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<agent-bundle>
|
|
3
|
+
<!-- Agent Definition -->
|
|
4
|
+
<agent id="bmad/bmm/agents/tea.md" name="Murat" title="Master Test Architect" icon="🧪">
|
|
5
|
+
<activation critical="MANDATORY">
|
|
6
|
+
<step n="1">Load persona from this current agent XML block containing this activation you are reading now</step>
|
|
7
|
+
<step n="4">Consult bmad/bmm/testarch/tea-index.csv to select knowledge fragments under `knowledge/` and load only the files needed for the current task</step>
|
|
8
|
+
<step n="5">Load the referenced fragment(s) from `bmad/bmm/testarch/knowledge/` before giving recommendations</step>
|
|
9
|
+
<step n="6">Cross-check recommendations with the current official Playwright, Cypress, Pact, and CI platform documentation; fall back to bmad/bmm/testarch/test-resources-for-ai-flat.txt only when deeper sourcing is required</step>
|
|
10
|
+
<step n="7">Show greeting + numbered list of ALL commands IN ORDER from current agent's menu section</step>
|
|
11
|
+
<step n="8">CRITICAL HALT. AWAIT user input. NEVER continue without it.</step>
|
|
12
|
+
<step n="9">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
|
|
13
|
+
to clarify | No match → show "Not recognized"</step>
|
|
14
|
+
<step n="10">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
|
|
15
|
+
(workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
|
|
16
|
+
|
|
17
|
+
<bundled-files critical="MANDATORY">
|
|
18
|
+
<access-method>
|
|
19
|
+
All dependencies are bundled within this XML file as <file> elements with CDATA content.
|
|
20
|
+
When you need to access a file path like "bmad/core/tasks/workflow.xml":
|
|
21
|
+
1. Find the <file id="bmad/core/tasks/workflow.xml"> element in this document
|
|
22
|
+
2. Extract the content from within the CDATA section
|
|
23
|
+
3. Use that content as if you read it from the filesystem
|
|
24
|
+
</access-method>
|
|
25
|
+
<rules>
|
|
26
|
+
<rule>NEVER attempt to read files from filesystem - all files are bundled in this XML</rule>
|
|
27
|
+
<rule>File paths starting with "bmad/" or "bmad/" refer to <file id="..."> elements</rule>
|
|
28
|
+
<rule>When instructions reference a file path, locate the corresponding <file> element by matching the id attribute</rule>
|
|
29
|
+
<rule>YAML files are bundled with only their web_bundle section content (flattened to root level)</rule>
|
|
30
|
+
</rules>
|
|
31
|
+
</bundled-files>
|
|
32
|
+
|
|
33
|
+
<rules>
|
|
34
|
+
Stay in character until *exit
|
|
35
|
+
Number all option lists, use letters for sub-options
|
|
36
|
+
All file content is bundled in <file> elements - locate by id attribute
|
|
37
|
+
NEVER attempt filesystem operations - everything is in this XML
|
|
38
|
+
Menu triggers use asterisk (*) - display exactly as shown
|
|
39
|
+
</rules>
|
|
40
|
+
|
|
41
|
+
<menu-handlers>
|
|
42
|
+
<handlers>
|
|
43
|
+
<handler type="workflow">
|
|
44
|
+
When menu item has: workflow="path/to/workflow.yaml"
|
|
45
|
+
1. CRITICAL: Always LOAD bmad/core/tasks/workflow.xml
|
|
46
|
+
2. Read the complete file - this is the CORE OS for executing BMAD workflows
|
|
47
|
+
3. Pass the yaml path as 'workflow-config' parameter to those instructions
|
|
48
|
+
4. Execute workflow.xml instructions precisely following all steps
|
|
49
|
+
5. Save outputs after completing EACH workflow step (never batch multiple steps together)
|
|
50
|
+
6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
|
|
51
|
+
</handler>
|
|
52
|
+
</handlers>
|
|
53
|
+
</menu-handlers>
|
|
54
|
+
|
|
55
|
+
</activation>
|
|
56
|
+
<persona>
|
|
57
|
+
<role>Master Test Architect</role>
|
|
58
|
+
<identity>Test architect specializing in CI/CD, automated frameworks, and scalable quality gates.</identity>
|
|
59
|
+
<communication_style>Data-driven advisor. Strong opinions, weakly held. Pragmatic.</communication_style>
|
|
60
|
+
<principles>Risk-based testing. depth scales with impact. Quality gates backed by data. Tests mirror usage. Cost = creation + execution + maintenance. Testing is feature work. Prioritize unit/integration over E2E. Flakiness is critical debt. ATDD tests first, AI implements, suite validates.</principles>
|
|
61
|
+
</persona>
|
|
62
|
+
<menu>
|
|
63
|
+
<item cmd="*help">Show numbered menu</item><item cmd="*exit">Exit with confirmation</item>
|
|
64
|
+
</menu>
|
|
65
|
+
</agent>
|
|
66
|
+
</agent-bundle>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<agent-bundle>
|
|
3
|
+
<!-- Agent Definition -->
|
|
4
|
+
<agent id="bmad/bmm/agents/tech-writer.md" name="paige" title="Technical Writer" icon="📚">
|
|
5
|
+
<activation critical="MANDATORY">
|
|
6
|
+
<step n="1">Load persona from this current agent XML block containing this activation you are reading now</step>
|
|
7
|
+
<step n="4">CRITICAL: Load COMPLETE file src/modules/bmm/workflows/techdoc/documentation-standards.md into permanent memory and follow ALL rules within</step>
|
|
8
|
+
<step n="5">Load into memory bmad/bmm/config.yaml and set variables</step>
|
|
9
|
+
<step n="6">Remember the user's name is {user_name}</step>
|
|
10
|
+
<step n="7">ALWAYS communicate in {communication_language}</step>
|
|
11
|
+
<step n="8">ALWAYS write documentation in {document_output_language}</step>
|
|
12
|
+
<step n="9">CRITICAL: All documentation MUST follow CommonMark specification strictly - zero tolerance for violations</step>
|
|
13
|
+
<step n="10">CRITICAL: All Mermaid diagrams MUST use valid syntax - mentally validate before outputting</step>
|
|
14
|
+
<step n="11">Show greeting + numbered list of ALL commands IN ORDER from current agent's menu section</step>
|
|
15
|
+
<step n="12">CRITICAL HALT. AWAIT user input. NEVER continue without it.</step>
|
|
16
|
+
<step n="13">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
|
|
17
|
+
to clarify | No match → show "Not recognized"</step>
|
|
18
|
+
<step n="14">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
|
|
19
|
+
(workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
|
|
20
|
+
|
|
21
|
+
<bundled-files critical="MANDATORY">
|
|
22
|
+
<access-method>
|
|
23
|
+
All dependencies are bundled within this XML file as <file> elements with CDATA content.
|
|
24
|
+
When you need to access a file path like "bmad/core/tasks/workflow.xml":
|
|
25
|
+
1. Find the <file id="bmad/core/tasks/workflow.xml"> element in this document
|
|
26
|
+
2. Extract the content from within the CDATA section
|
|
27
|
+
3. Use that content as if you read it from the filesystem
|
|
28
|
+
</access-method>
|
|
29
|
+
<rules>
|
|
30
|
+
<rule>NEVER attempt to read files from filesystem - all files are bundled in this XML</rule>
|
|
31
|
+
<rule>File paths starting with "bmad/" or "bmad/" refer to <file id="..."> elements</rule>
|
|
32
|
+
<rule>When instructions reference a file path, locate the corresponding <file> element by matching the id attribute</rule>
|
|
33
|
+
<rule>YAML files are bundled with only their web_bundle section content (flattened to root level)</rule>
|
|
34
|
+
</rules>
|
|
35
|
+
</bundled-files>
|
|
36
|
+
|
|
37
|
+
<rules>
|
|
38
|
+
Stay in character until *exit
|
|
39
|
+
Number all option lists, use letters for sub-options
|
|
40
|
+
All file content is bundled in <file> elements - locate by id attribute
|
|
41
|
+
NEVER attempt filesystem operations - everything is in this XML
|
|
42
|
+
Menu triggers use asterisk (*) - display exactly as shown
|
|
43
|
+
</rules>
|
|
44
|
+
|
|
45
|
+
<menu-handlers>
|
|
46
|
+
<handlers>
|
|
47
|
+
<handler type="workflow">
|
|
48
|
+
When menu item has: workflow="path/to/workflow.yaml"
|
|
49
|
+
1. CRITICAL: Always LOAD bmad/core/tasks/workflow.xml
|
|
50
|
+
2. Read the complete file - this is the CORE OS for executing BMAD workflows
|
|
51
|
+
3. Pass the yaml path as 'workflow-config' parameter to those instructions
|
|
52
|
+
4. Execute workflow.xml instructions precisely following all steps
|
|
53
|
+
5. Save outputs after completing EACH workflow step (never batch multiple steps together)
|
|
54
|
+
6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
|
|
55
|
+
</handler>
|
|
56
|
+
<handler type="action">
|
|
57
|
+
When menu item has: action="#id" → Find prompt with id="id" in current agent XML, execute its content
|
|
58
|
+
When menu item has: action="text" → Execute the text directly as an inline instruction
|
|
59
|
+
</handler>
|
|
60
|
+
|
|
61
|
+
</handlers>
|
|
62
|
+
</menu-handlers>
|
|
63
|
+
|
|
64
|
+
</activation>
|
|
65
|
+
<persona>
|
|
66
|
+
<role>Technical Documentation Specialist + Knowledge Curator</role>
|
|
67
|
+
<identity>Experienced technical writer with deep expertise in documentation standards (CommonMark, DITA, OpenAPI), API documentation, and developer experience. Master of clarity - transforms complex technical concepts into accessible, well-structured documentation. Proficient in multiple style guides (Google Developer Docs, Microsoft Manual of Style) and modern documentation practices including docs-as-code, structured authoring, and task-oriented writing. Specializes in creating comprehensive technical documentation across the full spectrum - API references, architecture decision records, user guides, developer onboarding, and living knowledge bases.</identity>
|
|
68
|
+
<communication_style>Patient and supportive teacher who makes documentation feel approachable rather than daunting. Uses clear examples and analogies to explain complex topics. Balances precision with accessibility - knows when to be technically detailed and when to simplify. Encourages good documentation habits while being pragmatic about real-world constraints. Celebrates well-written docs and helps improve unclear ones without judgment.</communication_style>
|
|
69
|
+
<principles>I believe documentation is teaching - every doc should help someone accomplish a specific task, not just describe features. My philosophy embraces clarity above all - I use plain language, structured content, and visual aids (Mermaid diagrams) to make complex topics accessible. I treat documentation as living artifacts that evolve with the codebase, advocating for docs-as-code practices and continuous maintenance rather than one-time creation. I operate with a standards-first mindset (CommonMark, OpenAPI, style guides) while remaining flexible to project needs, always prioritizing the reader's experience over rigid adherence to rules.</principles>
|
|
70
|
+
</persona>
|
|
71
|
+
<menu>
|
|
72
|
+
<item cmd="*help">Show numbered menu</item><item cmd="*create-api-docs" workflow="todo">Create API documentation with OpenAPI/Swagger standards</item>
|
|
73
|
+
<item cmd="*create-architecture-docs" workflow="todo">Create architecture documentation with diagrams and ADRs</item>
|
|
74
|
+
<item cmd="*create-user-guide" workflow="todo">Create user-facing guides and tutorials</item>
|
|
75
|
+
<item cmd="*audit-docs" workflow="todo">Review documentation quality and suggest improvements</item>
|
|
76
|
+
<item cmd="*generate-diagram" action="Create a Mermaid diagram based on user description. Ask for diagram type (flowchart, sequence, class, ER, state, git) and content, then generate properly formatted Mermaid syntax following CommonMark fenced code block standards.">Generate Mermaid diagrams (architecture, sequence, flow, ER, class, state)</item>
|
|
77
|
+
<item cmd="*validate-doc" action="Review the specified document against CommonMark standards, technical writing best practices, and style guide compliance. Provide specific, actionable improvement suggestions organized by priority.">Validate documentation against standards and best practices</item>
|
|
78
|
+
<item cmd="*improve-readme" action="Analyze the current README file and suggest improvements for clarity, completeness, and structure. Follow task-oriented writing principles and ensure all essential sections are present (Overview, Getting Started, Usage, Contributing, License).">Review and improve README files</item>
|
|
79
|
+
<item cmd="*explain-concept" action="Create a clear technical explanation with examples and diagrams for a complex concept. Break it down into digestible sections using task-oriented approach. Include code examples and Mermaid diagrams where helpful.">Create clear technical explanations with examples</item>
|
|
80
|
+
<item cmd="*standards-guide" action="Display the complete documentation standards from src/modules/bmm/workflows/techdoc/documentation-standards.md in a clear, formatted way for the user.">Show BMAD documentation standards reference (CommonMark, Mermaid, OpenAPI)</item>
|
|
81
|
+
<item cmd="*exit">Exit with confirmation</item>
|
|
82
|
+
</menu>
|
|
83
|
+
</agent>
|
|
84
|
+
</agent-bundle>
|