bmad-method 6.0.0-alpha.1 → 6.0.0-alpha.11
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/.github/ISSUE_TEMPLATE/idea_submission.md +1 -1
- package/.github/workflows/bundle-latest.yaml +277 -0
- package/.github/workflows/manual-release.yaml +64 -17
- package/.github/workflows/{lint.yaml → quality.yaml} +19 -2
- package/.husky/pre-commit +4 -0
- package/.prettierignore +4 -0
- package/.vscode/settings.json +3 -1
- package/CHANGELOG.md +321 -12
- package/CONTRIBUTING.md +1 -13
- package/README.md +138 -187
- package/docs/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
- package/docs/agent-customization-guide.md +208 -0
- package/docs/custom-agent-installation.md +169 -0
- package/docs/document-sharding-guide.md +449 -0
- package/docs/ide-info/crush.md +1 -1
- package/docs/ide-info/cursor.md +7 -7
- package/docs/ide-info/iflow.md +3 -3
- package/docs/ide-info/opencode.md +1 -1
- package/docs/index.md +227 -0
- package/docs/installers-bundlers/ide-injections.md +2 -2
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +80 -19
- package/docs/v4-to-v6-upgrade.md +21 -19
- package/docs/v6-open-items.md +17 -0
- package/docs/web-bundles-gemini-gpt-guide.md +473 -0
- package/eslint.config.mjs +2 -0
- package/package.json +6 -3
- package/src/core/_module-installer/install-config.yaml +17 -10
- package/src/core/_module-installer/installer.js +0 -8
- package/src/core/agents/bmad-master.agent.yaml +5 -5
- package/src/core/agents/bmad-web-orchestrator.agent.xml +8 -17
- package/src/core/resources/excalidraw/README.md +160 -0
- package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
- package/src/core/resources/excalidraw/library-loader.md +50 -0
- package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
- package/src/core/tasks/advanced-elicitation-methods.csv +21 -0
- package/{bmad/core/tasks/adv-elicit.xml → src/core/tasks/advanced-elicitation.xml} +6 -4
- package/src/core/tasks/index-docs.xml +1 -1
- package/src/core/tasks/validate-workflow.xml +1 -1
- package/src/core/tasks/workflow.xml +126 -22
- package/src/core/tools/shard-doc.xml +54 -45
- package/src/core/workflows/brainstorming/README.md +6 -16
- package/src/core/workflows/brainstorming/instructions.md +6 -5
- package/src/core/workflows/brainstorming/template.md +4 -0
- package/src/core/workflows/brainstorming/workflow.yaml +8 -13
- package/src/core/workflows/party-mode/instructions.md +2 -7
- package/src/core/workflows/party-mode/workflow.yaml +11 -6
- package/src/modules/bmb/README.md +135 -73
- package/src/modules/bmb/_module-installer/install-config.yaml +9 -4
- package/src/modules/bmb/agents/bmad-builder.agent.yaml +11 -12
- package/src/modules/bmb/docs/agent-compilation.md +340 -0
- package/src/modules/bmb/docs/agent-menu-patterns.md +524 -0
- package/src/modules/bmb/docs/expert-agent-architecture.md +364 -0
- package/src/modules/bmb/docs/index.md +55 -0
- package/src/modules/bmb/docs/module-agent-architecture.md +367 -0
- package/src/modules/bmb/docs/simple-agent-architecture.md +288 -0
- package/src/modules/bmb/docs/understanding-agent-types.md +184 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/README.md +242 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/breakthroughs.md +24 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/instructions.md +108 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/memories.md +46 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/mood-patterns.md +39 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +152 -0
- package/src/modules/bmb/reference/agents/module-examples/README.md +50 -0
- package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +53 -0
- package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +57 -0
- package/src/modules/bmb/reference/agents/simple-examples/README.md +223 -0
- package/src/modules/bmb/reference/agents/simple-examples/commit-poet.agent.yaml +126 -0
- package/src/modules/bmb/reference/readme.md +3 -0
- package/src/modules/bmb/workflows/audit-workflow/checklist.md +5 -6
- package/src/modules/bmb/workflows/audit-workflow/instructions.md +6 -6
- package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +2 -2
- package/src/modules/bmb/workflows/convert-legacy/README.md +5 -5
- package/src/modules/bmb/workflows/convert-legacy/checklist.md +2 -2
- package/src/modules/bmb/workflows/convert-legacy/instructions.md +17 -17
- package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +6 -10
- package/src/modules/bmb/workflows/create-agent/agent-validation-checklist.md +174 -0
- package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +99 -120
- package/src/modules/bmb/workflows/create-agent/communication-presets.csv +61 -0
- package/src/modules/bmb/workflows/create-agent/instructions.md +171 -82
- package/src/modules/bmb/workflows/create-agent/workflow.yaml +26 -20
- package/src/modules/bmb/workflows/create-module/README.md +163 -154
- package/src/modules/bmb/workflows/create-module/checklist.md +1 -10
- package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +1 -1
- package/src/modules/bmb/workflows/create-module/instructions.md +13 -17
- package/src/modules/bmb/workflows/create-module/module-structure.md +39 -5
- package/src/modules/bmb/workflows/create-module/workflow.yaml +21 -13
- package/src/modules/bmb/workflows/create-workflow/README.md +4 -4
- package/src/modules/bmb/workflows/create-workflow/checklist.md +1 -1
- package/src/modules/bmb/workflows/create-workflow/instructions.md +46 -37
- package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +219 -42
- package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +4 -2
- package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +12 -16
- package/src/modules/bmb/workflows/create-workflow/workflow.yaml +7 -8
- package/src/modules/bmb/workflows/edit-agent/README.md +174 -47
- package/src/modules/bmb/workflows/edit-agent/instructions.md +399 -35
- package/src/modules/bmb/workflows/edit-agent/workflow.yaml +27 -13
- package/src/modules/bmb/workflows/edit-module/README.md +2 -2
- package/src/modules/bmb/workflows/edit-module/checklist.md +2 -2
- package/src/modules/bmb/workflows/edit-module/instructions.md +7 -5
- package/src/modules/bmb/workflows/edit-module/workflow.yaml +11 -13
- package/src/modules/bmb/workflows/edit-workflow/instructions.md +4 -4
- package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +6 -8
- package/src/modules/bmb/workflows/module-brief/README.md +2 -2
- package/src/modules/bmb/workflows/module-brief/checklist.md +2 -2
- package/src/modules/bmb/workflows/module-brief/instructions.md +3 -2
- package/src/modules/bmb/workflows/module-brief/workflow.yaml +12 -7
- package/src/modules/bmgd/README.md +208 -0
- package/src/modules/bmgd/_module-installer/install-config.yaml +54 -0
- package/src/modules/bmgd/agents/game-architect.agent.yaml +33 -0
- package/src/modules/bmgd/agents/game-designer.agent.yaml +40 -0
- package/src/modules/bmgd/agents/game-dev.agent.yaml +40 -0
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +75 -0
- package/src/modules/bmgd/teams/default-party.csv +10 -0
- package/src/modules/{bmm → bmgd}/teams/team-gamedev.yaml +5 -1
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +130 -0
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/workflow.yaml +10 -10
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/instructions.md +44 -28
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/workflow.yaml +9 -17
- package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/instructions-gdd.md +58 -31
- 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/instructions-narrative.md +75 -28
- package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/narrative/workflow.yaml +6 -12
- package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +321 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-template.md +103 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +240 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +222 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +701 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +13 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +69 -0
- package/src/modules/bmgd/workflows/4-production/code-review/backlog_template.md +12 -0
- package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +22 -0
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +398 -0
- package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +61 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +279 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +206 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +58 -0
- package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +240 -0
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +256 -0
- package/src/modules/bmgd/workflows/4-production/create-story/template.md +51 -0
- package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +74 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +38 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +267 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +58 -0
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +17 -0
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +164 -0
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +76 -0
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +58 -0
- package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +1443 -0
- package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +57 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/checklist.md +33 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +234 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +51 -0
- package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +16 -0
- package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +34 -0
- package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +209 -0
- package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +63 -0
- package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +111 -0
- package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +28 -0
- package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +117 -0
- package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +25 -0
- package/src/modules/bmm/README.md +79 -92
- package/src/modules/bmm/_module-installer/install-config.yaml +9 -23
- package/src/modules/bmm/_module-installer/installer.js +2 -2
- package/src/modules/bmm/agents/analyst.agent.yaml +25 -19
- package/src/modules/bmm/agents/architect.agent.yaml +28 -19
- package/src/modules/bmm/agents/dev.agent.yaml +12 -15
- package/src/modules/bmm/agents/pm.agent.yaml +40 -22
- package/src/modules/bmm/agents/sm.agent.yaml +30 -24
- package/src/modules/bmm/agents/tea.agent.yaml +25 -17
- package/src/modules/bmm/agents/tech-writer.agent.yaml +80 -0
- package/src/modules/bmm/agents/ux-designer.agent.yaml +22 -12
- package/src/modules/bmm/docs/README.md +240 -0
- package/src/modules/bmm/docs/agents-guide.md +1058 -0
- package/src/modules/bmm/docs/brownfield-guide.md +762 -0
- package/src/modules/bmm/docs/enterprise-agentic-development.md +686 -0
- package/src/modules/bmm/docs/faq.md +588 -0
- package/src/modules/bmm/docs/glossary.md +320 -0
- package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +5919 -0
- package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +2 -0
- package/src/modules/bmm/docs/party-mode.md +224 -0
- package/src/modules/bmm/docs/quick-spec-flow.md +652 -0
- package/src/modules/bmm/docs/quick-start.md +382 -0
- package/src/modules/bmm/docs/scale-adaptive-system.md +618 -0
- package/src/modules/bmm/docs/test-architecture.md +396 -0
- package/src/modules/bmm/{workflows/3-solutioning/architecture/readme.md → docs/workflow-architecture-reference.md} +132 -84
- package/src/modules/bmm/{workflows/document-project/README.md → docs/workflow-document-project-reference.md} +49 -4
- package/src/modules/bmm/docs/workflows-analysis.md +370 -0
- package/src/modules/bmm/docs/workflows-implementation.md +296 -0
- package/src/modules/bmm/docs/workflows-planning.md +612 -0
- package/src/modules/bmm/docs/workflows-solutioning.md +554 -0
- package/src/modules/bmm/teams/default-party.csv +20 -0
- package/src/modules/bmm/teams/team-fullstack.yaml +2 -0
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +45 -24
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +8 -8
- package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +425 -0
- package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +180 -0
- package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +56 -0
- package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +435 -232
- package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +93 -77
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +32 -14
- package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +144 -0
- package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +249 -0
- package/src/modules/bmm/workflows/1-analysis/research/checklist.md +156 -59
- package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +70 -65
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +205 -143
- package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +55 -46
- package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +116 -83
- package/src/modules/bmm/workflows/1-analysis/research/template-market.md +37 -1
- package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +36 -1
- package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +25 -12
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +51 -26
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +67 -16
- package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +292 -63
- package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +13 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +544 -290
- package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +165 -23
- package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +11 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +50 -18
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +146 -36
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +67 -4
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +436 -0
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +874 -163
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +132 -6
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +54 -20
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +36 -28
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -26
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +1 -1
- package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +5 -9
- package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +215 -150
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +72 -26
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/epics-template.md +80 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/instructions.md +616 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.yaml +63 -0
- package/src/modules/bmm/workflows/3-solutioning/{solutioning-gate-check → implementation-readiness}/checklist.md +7 -13
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/instructions.md +332 -0
- package/src/modules/bmm/workflows/3-solutioning/{solutioning-gate-check → implementation-readiness}/template.md +1 -1
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.yaml +64 -0
- package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +25 -18
- package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +31 -26
- package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +1 -1
- package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +7 -2
- package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +38 -25
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +22 -18
- package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +38 -14
- package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +8 -3
- package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +35 -5
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +1 -1
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +10 -6
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +40 -16
- package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +1207 -243
- package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +38 -26
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +28 -15
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +1 -1
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +16 -6
- package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +1 -1
- package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +1 -1
- package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +23 -15
- package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +39 -8
- package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +1 -1
- package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +5 -4
- package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +6 -6
- package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +5 -7
- package/src/modules/bmm/workflows/diagrams/_shared/excalidraw-library.json +90 -0
- package/src/modules/bmm/workflows/diagrams/_shared/excalidraw-templates.yaml +127 -0
- package/src/modules/bmm/workflows/diagrams/create-dataflow/checklist.md +39 -0
- package/src/modules/bmm/workflows/diagrams/create-dataflow/instructions.md +130 -0
- package/src/modules/bmm/workflows/diagrams/create-dataflow/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/diagrams/create-diagram/checklist.md +43 -0
- package/src/modules/bmm/workflows/diagrams/create-diagram/instructions.md +141 -0
- package/src/modules/bmm/workflows/diagrams/create-diagram/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/diagrams/create-flowchart/checklist.md +49 -0
- package/src/modules/bmm/workflows/diagrams/create-flowchart/instructions.md +241 -0
- package/src/modules/bmm/workflows/diagrams/create-flowchart/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/diagrams/create-wireframe/checklist.md +38 -0
- package/src/modules/bmm/workflows/diagrams/create-wireframe/instructions.md +133 -0
- package/src/modules/bmm/workflows/diagrams/create-wireframe/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/document-project/checklist.md +1 -1
- package/src/modules/bmm/workflows/document-project/instructions.md +5 -5
- package/src/modules/bmm/workflows/document-project/workflow.yaml +2 -7
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +4 -4
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +5 -5
- package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +13 -13
- package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +5 -5
- package/src/modules/bmm/workflows/techdoc/documentation-standards.md +262 -0
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
- package/src/modules/bmm/workflows/testarch/atdd/instructions.md +2 -2
- package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +2 -9
- package/src/modules/bmm/workflows/testarch/automate/instructions.md +2 -2
- package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +2 -11
- package/src/modules/bmm/workflows/testarch/ci/checklist.md +4 -4
- package/src/modules/bmm/workflows/testarch/ci/instructions.md +2 -2
- package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +2 -10
- package/src/modules/bmm/workflows/testarch/framework/checklist.md +4 -4
- package/src/modules/bmm/workflows/testarch/framework/instructions.md +2 -2
- package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +2 -8
- package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +1 -1
- package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +2 -11
- package/src/modules/bmm/workflows/testarch/test-design/checklist.md +4 -4
- package/src/modules/bmm/workflows/testarch/test-design/instructions.md +175 -14
- package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +4 -4
- package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +7 -11
- package/src/modules/bmm/workflows/testarch/test-review/instructions.md +1 -1
- package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +2 -9
- package/src/modules/bmm/workflows/testarch/trace/instructions.md +9 -9
- package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +2 -13
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +249 -212
- package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +6 -5
- package/src/modules/bmm/workflows/workflow-status/instructions.md +177 -113
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +126 -0
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +114 -0
- package/src/modules/bmm/workflows/workflow-status/paths/{brownfield-level-3.yaml → method-brownfield.yaml} +48 -33
- package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +101 -0
- package/src/modules/bmm/workflows/workflow-status/paths/{brownfield-level-1.yaml → quick-flow-brownfield.yaml} +18 -18
- package/src/modules/bmm/workflows/workflow-status/paths/{greenfield-level-1.yaml → quick-flow-greenfield.yaml} +16 -18
- package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +1 -1
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/modules/bmm/workflows/workflow-status/workflow.yaml +5 -5
- package/src/modules/cis/README.md +153 -0
- package/src/modules/cis/_module-installer/install-config.yaml +6 -4
- package/src/modules/cis/agents/README.md +1 -1
- package/src/modules/cis/agents/brainstorming-coach.agent.yaml +13 -8
- package/src/modules/cis/agents/creative-problem-solver.agent.yaml +13 -8
- package/src/modules/cis/agents/design-thinking-coach.agent.yaml +13 -8
- package/src/modules/cis/agents/innovation-strategist.agent.yaml +13 -8
- package/src/modules/cis/agents/presentation-master.agent.yaml +60 -0
- package/src/modules/cis/agents/storyteller.agent.yaml +13 -8
- package/src/modules/cis/teams/creative-squad.yaml +1 -0
- package/src/modules/cis/teams/default-party.csv +11 -0
- package/src/modules/cis/workflows/README.md +102 -30
- package/src/modules/cis/workflows/design-thinking/instructions.md +4 -2
- package/src/modules/cis/workflows/design-thinking/workflow.yaml +7 -12
- package/src/modules/cis/workflows/innovation-strategy/instructions.md +7 -5
- package/src/modules/cis/workflows/innovation-strategy/template.md +3 -3
- package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +7 -12
- package/src/modules/cis/workflows/problem-solving/instructions.md +4 -2
- package/src/modules/cis/workflows/problem-solving/workflow.yaml +7 -12
- package/src/modules/cis/workflows/storytelling/instructions.md +14 -4
- package/src/modules/cis/workflows/storytelling/workflow.yaml +7 -12
- package/src/utility/models/action-command-header.md +0 -0
- package/src/utility/models/agent-activation-ide.xml +3 -3
- package/src/utility/models/agent-activation-web.xml +4 -4
- package/src/utility/models/agent-command-header.md +1 -0
- package/src/utility/models/fragments/activation-steps.xml +3 -2
- package/src/utility/models/fragments/handler-validate-workflow.xml +1 -1
- package/src/utility/models/fragments/handler-workflow.xml +1 -1
- package/src/utility/models/fragments/web-bundle-activation-steps.xml +3 -3
- package/test/test-installation-components.js +214 -0
- package/tools/bmad-npx-wrapper.js +10 -98
- package/tools/cli/README.md +50 -32
- package/tools/cli/bundlers/web-bundler.js +322 -26
- package/tools/cli/commands/agent-install.js +409 -0
- package/tools/cli/commands/install.js +2 -5
- package/tools/cli/installers/lib/core/config-collector.js +279 -39
- package/tools/cli/installers/lib/core/detector.js +62 -7
- package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
- package/tools/cli/installers/lib/core/installer.js +338 -46
- package/tools/cli/installers/lib/core/manifest-generator.js +33 -117
- package/tools/cli/installers/lib/core/manifest.js +6 -2
- package/tools/cli/installers/lib/ide/_base-ide.js +82 -3
- package/tools/cli/installers/lib/ide/antigravity.js +463 -0
- package/tools/cli/installers/lib/ide/auggie.js +81 -238
- package/tools/cli/installers/lib/ide/claude-code.js +90 -25
- package/tools/cli/installers/lib/ide/cline.js +15 -18
- package/tools/cli/installers/lib/ide/codex.js +225 -71
- package/tools/cli/installers/lib/ide/crush.js +14 -50
- package/tools/cli/installers/lib/ide/cursor.js +116 -8
- package/tools/cli/installers/lib/ide/gemini.js +87 -37
- package/tools/cli/installers/lib/ide/github-copilot.js +121 -35
- package/tools/cli/installers/lib/ide/iflow.js +13 -30
- package/tools/cli/installers/lib/ide/kilo.js +20 -16
- package/tools/cli/installers/lib/ide/manager.js +50 -0
- package/tools/cli/installers/lib/ide/opencode.js +61 -17
- package/tools/cli/installers/lib/ide/qwen.js +39 -11
- package/tools/cli/installers/lib/ide/roo.js +27 -62
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +90 -0
- package/tools/cli/installers/lib/ide/{task-tool-command-generator.js → shared/task-tool-command-generator.js} +1 -1
- package/tools/cli/installers/lib/ide/{workflow-command-generator.js → shared/workflow-command-generator.js} +11 -9
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +12 -0
- package/tools/cli/installers/lib/ide/{workflow-command-template.md → templates/workflow-command-template.md} +3 -5
- package/tools/cli/installers/lib/ide/trae.js +20 -32
- package/tools/cli/installers/lib/ide/windsurf.js +65 -8
- package/tools/cli/installers/lib/modules/manager.js +213 -7
- package/tools/cli/lib/agent/compiler.js +390 -0
- package/tools/cli/lib/agent/installer.js +725 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/cli-utils.js +52 -50
- package/tools/cli/lib/config.js +3 -1
- package/tools/cli/lib/ui.js +34 -17
- package/tools/cli/lib/xml-handler.js +1 -0
- package/tools/cli/lib/yaml-format.js +2 -1
- package/tools/cli/lib/yaml-xml-builder.js +76 -8
- package/tools/schema/agent.js +12 -3
- package/.claude/commands/bmad/bmb/agents/bmad-builder.md +0 -70
- package/.claude/commands/bmad/bmb/workflows/README.md +0 -67
- package/.claude/commands/bmad/bmb/workflows/audit-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/convert-legacy.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-agent.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-module.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-agent.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-module.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/module-brief.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/redoc.md +0 -15
- package/.claude/commands/bmad/bmd/agents/cli-chief.md +0 -108
- package/.claude/commands/bmad/bmd/agents/doc-keeper.md +0 -115
- package/.claude/commands/bmad/bmd/agents/release-chief.md +0 -109
- package/.claude/commands/bmad/core/agents/bmad-master.md +0 -71
- package/.claude/commands/bmad/core/tasks/index-docs.md +0 -9
- package/.claude/commands/bmad/core/tools/shard-doc.md +0 -9
- package/.claude/commands/bmad/core/workflows/README.md +0 -27
- package/.claude/commands/bmad/core/workflows/brainstorming.md +0 -15
- package/.claude/commands/bmad/core/workflows/party-mode.md +0 -15
- package/.claude/hooks/bmad-tts-injector.sh +0 -415
- package/.claude/hooks/bmad-voice-manager.sh +0 -511
- package/.claude/hooks/check-output-style.sh +0 -112
- package/.claude/hooks/download-extra-voices.sh +0 -244
- package/.claude/hooks/github-star-reminder.sh +0 -154
- package/.claude/hooks/language-manager.sh +0 -392
- package/.claude/hooks/learn-manager.sh +0 -475
- package/.claude/hooks/personality-manager.sh +0 -438
- package/.claude/hooks/piper-download-voices.sh +0 -165
- package/.claude/hooks/piper-installer.sh +0 -178
- package/.claude/hooks/piper-multispeaker-registry.sh +0 -165
- package/.claude/hooks/piper-voice-manager.sh +0 -293
- package/.claude/hooks/play-tts-elevenlabs.sh +0 -404
- package/.claude/hooks/play-tts-piper.sh +0 -338
- package/.claude/hooks/play-tts.sh +0 -100
- package/.claude/hooks/provider-commands.sh +0 -540
- package/.claude/hooks/provider-manager.sh +0 -298
- package/.claude/hooks/replay-target-audio.sh +0 -95
- package/.claude/hooks/sentiment-manager.sh +0 -201
- package/.claude/hooks/speed-manager.sh +0 -291
- package/.claude/hooks/voice-manager.sh +0 -594
- package/.claude/hooks/voices-config.sh +0 -70
- package/.claude/settings.local.json +0 -41
- package/bmad/_cfg/agent-manifest.csv +0 -7
- package/bmad/_cfg/agents/bmb-bmad-builder.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmd-cli-chief.customize.yaml +0 -32
- package/bmad/_cfg/agents/bmd-doc-keeper.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmd-release-chief.customize.yaml +0 -42
- package/bmad/_cfg/agents/core-bmad-master.customize.yaml +0 -42
- package/bmad/_cfg/files-manifest.csv +0 -83
- package/bmad/_cfg/manifest.yaml +0 -12
- package/bmad/_cfg/task-manifest.csv +0 -5
- package/bmad/_cfg/tool-manifest.csv +0 -2
- package/bmad/_cfg/workflow-manifest.csv +0 -15
- package/bmad/bmb/README.md +0 -132
- package/bmad/bmb/agents/bmad-builder.md +0 -70
- package/bmad/bmb/config.yaml +0 -14
- package/bmad/bmb/workflows/audit-workflow/checklist.md +0 -143
- package/bmad/bmb/workflows/audit-workflow/instructions.md +0 -341
- package/bmad/bmb/workflows/audit-workflow/template.md +0 -118
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml +0 -23
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -21
- package/bmad/bmb/workflows/convert-legacy/README.md +0 -262
- package/bmad/bmb/workflows/convert-legacy/checklist.md +0 -205
- package/bmad/bmb/workflows/convert-legacy/instructions.md +0 -377
- package/bmad/bmb/workflows/convert-legacy/workflow.yaml +0 -32
- package/bmad/bmb/workflows/create-agent/README.md +0 -320
- package/bmad/bmb/workflows/create-agent/agent-architecture.md +0 -419
- package/bmad/bmb/workflows/create-agent/agent-architecture.md.bak +0 -412
- package/bmad/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
- package/bmad/bmb/workflows/create-agent/agent-command-patterns.md.bak +0 -759
- package/bmad/bmb/workflows/create-agent/agent-types.md +0 -292
- package/bmad/bmb/workflows/create-agent/brainstorm-context.md +0 -174
- package/bmad/bmb/workflows/create-agent/checklist.md +0 -62
- package/bmad/bmb/workflows/create-agent/communication-styles.md +0 -202
- package/bmad/bmb/workflows/create-agent/instructions.md +0 -430
- package/bmad/bmb/workflows/create-agent/workflow.yaml +0 -37
- package/bmad/bmb/workflows/create-module/README.md +0 -220
- package/bmad/bmb/workflows/create-module/README.md.bak +0 -218
- package/bmad/bmb/workflows/create-module/brainstorm-context.md +0 -137
- package/bmad/bmb/workflows/create-module/checklist.md +0 -244
- package/bmad/bmb/workflows/create-module/checklist.md.bak +0 -245
- package/bmad/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
- package/bmad/bmb/workflows/create-module/installer-templates/installer.js +0 -231
- package/bmad/bmb/workflows/create-module/installer-templates/installer.js.bak +0 -231
- package/bmad/bmb/workflows/create-module/instructions.md +0 -581
- package/bmad/bmb/workflows/create-module/instructions.md.bak +0 -521
- package/bmad/bmb/workflows/create-module/module-structure.md +0 -366
- package/bmad/bmb/workflows/create-module/module-structure.md.bak +0 -310
- package/bmad/bmb/workflows/create-module/workflow.yaml +0 -42
- package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -40
- package/bmad/bmb/workflows/create-workflow/README.md +0 -277
- package/bmad/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
- package/bmad/bmb/workflows/create-workflow/checklist.md +0 -94
- package/bmad/bmb/workflows/create-workflow/instructions.md +0 -716
- package/bmad/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1150
- package/bmad/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
- package/bmad/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
- package/bmad/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow.yaml +0 -40
- package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -38
- package/bmad/bmb/workflows/edit-agent/README.md +0 -112
- package/bmad/bmb/workflows/edit-agent/checklist.md +0 -112
- package/bmad/bmb/workflows/edit-agent/instructions.md +0 -290
- package/bmad/bmb/workflows/edit-agent/workflow.yaml +0 -33
- package/bmad/bmb/workflows/edit-module/README.md +0 -187
- package/bmad/bmb/workflows/edit-module/checklist.md +0 -165
- package/bmad/bmb/workflows/edit-module/instructions.md +0 -339
- package/bmad/bmb/workflows/edit-module/workflow.yaml +0 -34
- package/bmad/bmb/workflows/edit-workflow/README.md +0 -119
- package/bmad/bmb/workflows/edit-workflow/checklist.md +0 -70
- package/bmad/bmb/workflows/edit-workflow/instructions.md +0 -342
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml +0 -27
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -25
- package/bmad/bmb/workflows/module-brief/README.md +0 -264
- package/bmad/bmb/workflows/module-brief/checklist.md +0 -116
- package/bmad/bmb/workflows/module-brief/instructions.md +0 -267
- package/bmad/bmb/workflows/module-brief/template.md +0 -275
- package/bmad/bmb/workflows/module-brief/workflow.yaml +0 -29
- package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -27
- package/bmad/bmb/workflows/redoc/README.md +0 -87
- package/bmad/bmb/workflows/redoc/checklist.md +0 -99
- package/bmad/bmb/workflows/redoc/instructions.md +0 -265
- package/bmad/bmb/workflows/redoc/workflow.yaml +0 -32
- package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -31
- package/bmad/bmd/README.md +0 -193
- package/bmad/bmd/README.md.bak +0 -193
- package/bmad/bmd/agents/cli-chief-sidecar/instructions.md +0 -102
- package/bmad/bmd/agents/cli-chief-sidecar/instructions.md.bak +0 -102
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/README.md +0 -68
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/README.md.bak +0 -68
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md +0 -123
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md.bak +0 -123
- package/bmad/bmd/agents/cli-chief-sidecar/memories.md +0 -53
- package/bmad/bmd/agents/cli-chief-sidecar/memories.md.bak +0 -53
- package/bmad/bmd/agents/cli-chief.md +0 -108
- package/bmad/bmd/agents/cli-chief.md.bak +0 -108
- package/bmad/bmd/agents/doc-keeper-sidecar/instructions.md +0 -177
- package/bmad/bmd/agents/doc-keeper-sidecar/instructions.md.bak +0 -177
- package/bmad/bmd/agents/doc-keeper-sidecar/knowledge/README.md +0 -81
- package/bmad/bmd/agents/doc-keeper-sidecar/knowledge/README.md.bak +0 -81
- package/bmad/bmd/agents/doc-keeper-sidecar/memories.md +0 -88
- package/bmad/bmd/agents/doc-keeper-sidecar/memories.md.bak +0 -88
- package/bmad/bmd/agents/doc-keeper.md +0 -115
- package/bmad/bmd/agents/doc-keeper.md.bak +0 -115
- package/bmad/bmd/agents/release-chief-sidecar/instructions.md +0 -164
- package/bmad/bmd/agents/release-chief-sidecar/instructions.md.bak +0 -164
- package/bmad/bmd/agents/release-chief-sidecar/knowledge/README.md +0 -82
- package/bmad/bmd/agents/release-chief-sidecar/knowledge/README.md.bak +0 -82
- package/bmad/bmd/agents/release-chief-sidecar/memories.md +0 -73
- package/bmad/bmd/agents/release-chief-sidecar/memories.md.bak +0 -73
- package/bmad/bmd/agents/release-chief.md +0 -109
- package/bmad/bmd/agents/release-chief.md.bak +0 -109
- package/bmad/bmd/config.yaml +0 -10
- package/bmad/core/agents/bmad-master.md +0 -71
- package/bmad/core/agents/bmad-web-orchestrator.agent.xml +0 -122
- package/bmad/core/config.yaml +0 -9
- package/bmad/core/tasks/adv-elicit-methods.csv +0 -39
- package/bmad/core/tasks/index-docs.xml +0 -65
- package/bmad/core/tasks/validate-workflow.xml +0 -89
- package/bmad/core/tasks/workflow.xml +0 -174
- package/bmad/core/tools/shard-doc.xml +0 -100
- package/bmad/core/workflows/brainstorming/README.md +0 -271
- package/bmad/core/workflows/brainstorming/brain-methods.csv +0 -36
- package/bmad/core/workflows/brainstorming/instructions.md +0 -314
- package/bmad/core/workflows/brainstorming/template.md +0 -102
- package/bmad/core/workflows/brainstorming/workflow.yaml +0 -43
- package/bmad/core/workflows/party-mode/instructions.md +0 -188
- package/bmad/core/workflows/party-mode/workflow.yaml +0 -23
- package/bmad/docs/claude-code-instructions.md +0 -25
- package/bmad/docs/codex-instructions.md +0 -21
- package/bmd/README.md +0 -193
- package/bmd/agents/cli-chief-sidecar/instructions.md +0 -102
- package/bmd/agents/cli-chief-sidecar/knowledge/README.md +0 -68
- package/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md +0 -123
- package/bmd/agents/cli-chief-sidecar/memories.md +0 -53
- package/bmd/agents/cli-chief.agent.yaml +0 -126
- package/bmd/agents/doc-keeper-sidecar/instructions.md +0 -177
- package/bmd/agents/doc-keeper-sidecar/knowledge/README.md +0 -81
- package/bmd/agents/doc-keeper-sidecar/memories.md +0 -88
- package/bmd/agents/doc-keeper.agent.yaml +0 -137
- package/bmd/agents/release-chief-sidecar/instructions.md +0 -164
- package/bmd/agents/release-chief-sidecar/knowledge/README.md +0 -82
- package/bmd/agents/release-chief-sidecar/memories.md +0 -73
- package/bmd/agents/release-chief.agent.yaml +0 -127
- package/bmd/bmad-custom-module-installer-plan.md +0 -1176
- package/bmd/config.yaml +0 -12
- package/docs/bmad-brownfield-guide.md +0 -1260
- package/docs/conversion-report-shard-doc-2025-10-26.md +0 -188
- package/docs/installers-bundlers/web-bundler-usage.md +0 -54
- package/src/core/tasks/adv-elicit.xml +0 -104
- package/src/modules/bmb/workflows/create-agent/README.md +0 -320
- package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -419
- package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
- package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
- package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
- package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
- package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
- package/src/modules/bmb/workflows/redoc/README.md +0 -87
- package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
- package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
- package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
- package/src/modules/bmm/agents/game-architect.agent.yaml +0 -35
- package/src/modules/bmm/agents/game-designer.agent.yaml +0 -47
- package/src/modules/bmm/agents/game-dev.agent.yaml +0 -39
- package/src/modules/bmm/sub-modules/claude-code/config.yaml +0 -5
- package/src/modules/bmm/sub-modules/claude-code/injections.yaml +0 -242
- package/src/modules/bmm/sub-modules/claude-code/readme.md +0 -87
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/api-documenter.md +0 -102
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/codebase-analyzer.md +0 -82
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/data-analyst.md +0 -101
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/pattern-detector.md +0 -84
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/dependency-mapper.md +0 -83
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/epic-optimizer.md +0 -81
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/requirements-analyst.md +0 -61
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/technical-decisions-curator.md +0 -168
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/trend-spotter.md +0 -115
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-journey-mapper.md +0 -123
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-researcher.md +0 -72
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/market-researcher.md +0 -51
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/tech-debt-auditor.md +0 -106
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/document-reviewer.md +0 -102
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/technical-evaluator.md +0 -68
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/test-coverage-analyzer.md +0 -108
- package/src/modules/bmm/tasks/daily-standup.xml +0 -85
- package/src/modules/bmm/tasks/retrospective.xml +0 -104
- package/src/modules/bmm/testarch/README.md +0 -311
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/README.md +0 -38
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/instructions.md +0 -109
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/README.md +0 -29
- package/src/modules/bmm/workflows/1-analysis/game-brief/README.md +0 -221
- package/src/modules/bmm/workflows/1-analysis/product-brief/README.md +0 -180
- package/src/modules/bmm/workflows/1-analysis/research/README.md +0 -454
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-competitor-analyzer.md +0 -259
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-data-analyst.md +0 -190
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-market-researcher.md +0 -337
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-trend-spotter.md +0 -107
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-user-researcher.md +0 -329
- package/src/modules/bmm/workflows/2-plan-workflows/README.md +0 -258
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/README.md +0 -222
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/workflow.yaml +0 -67
- package/src/modules/bmm/workflows/2-plan-workflows/prd/epics-template.md +0 -63
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -167
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -278
- package/src/modules/bmm/workflows/3-solutioning/README.md +0 -1
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/README.md +0 -177
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -273
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -40
- package/src/modules/bmm/workflows/4-implementation/README.md +0 -221
- package/src/modules/bmm/workflows/4-implementation/code-review/README.md +0 -69
- package/src/modules/bmm/workflows/4-implementation/correct-course/README.md +0 -73
- package/src/modules/bmm/workflows/4-implementation/create-story/README.md +0 -129
- package/src/modules/bmm/workflows/4-implementation/dev-story/AUDIT-REPORT.md +0 -367
- package/src/modules/bmm/workflows/4-implementation/dev-story/README.md +0 -206
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/README.md +0 -195
- package/src/modules/bmm/workflows/4-implementation/retrospective/README.md +0 -77
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/README.md +0 -156
- package/src/modules/bmm/workflows/4-implementation/story-context/README.md +0 -234
- package/src/modules/bmm/workflows/README.md +0 -577
- package/src/modules/bmm/workflows/document-project/templates/README.md +0 -38
- package/src/modules/bmm/workflows/testarch/README.md +0 -26
- package/src/modules/bmm/workflows/testarch/atdd/README.md +0 -672
- package/src/modules/bmm/workflows/testarch/automate/README.md +0 -869
- package/src/modules/bmm/workflows/testarch/ci/README.md +0 -493
- package/src/modules/bmm/workflows/testarch/framework/README.md +0 -340
- package/src/modules/bmm/workflows/testarch/nfr-assess/README.md +0 -469
- package/src/modules/bmm/workflows/testarch/test-design/README.md +0 -493
- package/src/modules/bmm/workflows/testarch/test-review/README.md +0 -775
- package/src/modules/bmm/workflows/testarch/trace/README.md +0 -802
- package/src/modules/bmm/workflows/workflow-status/README.md +0 -241
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-0.yaml +0 -54
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-2.yaml +0 -76
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-4.yaml +0 -88
- package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -75
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-0.yaml +0 -45
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-2.yaml +0 -78
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-3.yaml +0 -73
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-4.yaml +0 -75
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.md +0 -30
- package/src/modules/cis/readme.md +0 -86
- package/test/fixtures/agent-schema/invalid/persona/principles-as-string.agent.yaml +0 -23
- package/v6-open-items.md +0 -23
- /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}/game-brief/checklist.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}/narrative/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/narrative/narrative-template.md +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1683.3704490481878 2670" width="3366.7408980963755" height="5340"><!-- svg-source:excalidraw --><metadata></metadata><defs><style class="style-fonts">
|
|
2
|
+
@font-face { font-family: Virgil; src: url(data:font/woff2;base64,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); }</style></defs><rect x="0" y="0" width="1683.3704490481878" height="2670" fill="#ffffff"></rect><g transform="translate(678.0025847230581 10) rotate(0 336.8760070800781 18.57869167262801)"><text x="336.8760070800781" y="26.188523781736443" font-family="Virgil, Segoe UI Emoji" font-size="29.725906676204815px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">BMad Method Workflow - Standard Greenfield</text></g><g stroke-linecap="round" transform="translate(453.37044904818777 70) rotate(0 60 30)"><path d="M120 30 C120 31.42, 119.79 32.86, 119.39 34.27 C118.98 35.68, 118.37 37.09, 117.57 38.45 C116.77 39.82, 115.76 41.17, 114.58 42.46 C113.4 43.76, 112.01 45.02, 110.48 46.22 C108.94 47.42, 107.21 48.57, 105.34 49.65 C103.48 50.72, 101.44 51.74, 99.29 52.67 C97.14 53.6, 94.83 54.47, 92.44 55.24 C90.04 56.01, 87.51 56.7, 84.92 57.29 C82.34 57.88, 79.63 58.38, 76.9 58.78 C74.17 59.19, 71.36 59.49, 68.54 59.69 C65.72 59.9, 62.85 60, 60 60 C57.15 60, 54.28 59.9, 51.46 59.69 C48.64 59.49, 45.83 59.19, 43.1 58.78 C40.37 58.38, 37.66 57.88, 35.08 57.29 C32.49 56.7, 29.96 56.01, 27.56 55.24 C25.17 54.47, 22.86 53.6, 20.71 52.67 C18.56 51.74, 16.52 50.72, 14.66 49.65 C12.79 48.57, 11.06 47.42, 9.52 46.22 C7.99 45.02, 6.6 43.76, 5.42 42.46 C4.24 41.17, 3.23 39.82, 2.43 38.45 C1.63 37.09, 1.02 35.68, 0.61 34.27 C0.21 32.86, 0 31.42, 0 30 C0 28.58, 0.21 27.14, 0.61 25.73 C1.02 24.32, 1.63 22.91, 2.43 21.55 C3.23 20.18, 4.24 18.83, 5.42 17.54 C6.6 16.24, 7.99 14.98, 9.52 13.78 C11.06 12.58, 12.79 11.43, 14.66 10.35 C16.52 9.28, 18.56 8.26, 20.71 7.33 C22.86 6.4, 25.17 5.53, 27.56 4.76 C29.96 3.99, 32.49 3.3, 35.08 2.71 C37.66 2.12, 40.37 1.62, 43.1 1.22 C45.83 0.81, 48.64 0.51, 51.46 0.31 C54.28 0.1, 57.15 0, 60 0 C62.85 0, 65.72 0.1, 68.54 0.31 C71.36 0.51, 74.17 0.81, 76.9 1.22 C79.63 1.62, 82.34 2.12, 84.92 2.71 C87.51 3.3, 90.04 3.99, 92.44 4.76 C94.83 5.53, 97.14 6.4, 99.29 7.33 C101.44 8.26, 103.48 9.28, 105.34 10.35 C107.21 11.43, 108.94 12.58, 110.48 13.78 C112.01 14.98, 113.4 16.24, 114.58 17.54 C115.76 18.83, 116.77 20.18, 117.57 21.55 C118.37 22.91, 118.98 24.32, 119.39 25.73 C119.79 27.14, 119.9 29.29, 120 30 C120.1 30.71, 120.1 29.29, 120 30" stroke="none" stroke-width="0" fill="#e3f2fd"></path><path d="M120 30 C120 31.42, 119.79 32.86, 119.39 34.27 C118.98 35.68, 118.37 37.09, 117.57 38.45 C116.77 39.82, 115.76 41.17, 114.58 42.46 C113.4 43.76, 112.01 45.02, 110.48 46.22 C108.94 47.42, 107.21 48.57, 105.34 49.65 C103.48 50.72, 101.44 51.74, 99.29 52.67 C97.14 53.6, 94.83 54.47, 92.44 55.24 C90.04 56.01, 87.51 56.7, 84.92 57.29 C82.34 57.88, 79.63 58.38, 76.9 58.78 C74.17 59.19, 71.36 59.49, 68.54 59.69 C65.72 59.9, 62.85 60, 60 60 C57.15 60, 54.28 59.9, 51.46 59.69 C48.64 59.49, 45.83 59.19, 43.1 58.78 C40.37 58.38, 37.66 57.88, 35.08 57.29 C32.49 56.7, 29.96 56.01, 27.56 55.24 C25.17 54.47, 22.86 53.6, 20.71 52.67 C18.56 51.74, 16.52 50.72, 14.66 49.65 C12.79 48.57, 11.06 47.42, 9.52 46.22 C7.99 45.02, 6.6 43.76, 5.42 42.46 C4.24 41.17, 3.23 39.82, 2.43 38.45 C1.63 37.09, 1.02 35.68, 0.61 34.27 C0.21 32.86, 0 31.42, 0 30 C0 28.58, 0.21 27.14, 0.61 25.73 C1.02 24.32, 1.63 22.91, 2.43 21.55 C3.23 20.18, 4.24 18.83, 5.42 17.54 C6.6 16.24, 7.99 14.98, 9.52 13.78 C11.06 12.58, 12.79 11.43, 14.66 10.35 C16.52 9.28, 18.56 8.26, 20.71 7.33 C22.86 6.4, 25.17 5.53, 27.56 4.76 C29.96 3.99, 32.49 3.3, 35.08 2.71 C37.66 2.12, 40.37 1.62, 43.1 1.22 C45.83 0.81, 48.64 0.51, 51.46 0.31 C54.28 0.1, 57.15 0, 60 0 C62.85 0, 65.72 0.1, 68.54 0.31 C71.36 0.51, 74.17 0.81, 76.9 1.22 C79.63 1.62, 82.34 2.12, 84.92 2.71 C87.51 3.3, 90.04 3.99, 92.44 4.76 C94.83 5.53, 97.14 6.4, 99.29 7.33 C101.44 8.26, 103.48 9.28, 105.34 10.35 C107.21 11.43, 108.94 12.58, 110.48 13.78 C112.01 14.98, 113.4 16.24, 114.58 17.54 C115.76 18.83, 116.77 20.18, 117.57 21.55 C118.37 22.91, 118.98 24.32, 119.39 25.73 C119.79 27.14, 119.9 29.29, 120 30 C120.1 30.71, 120.1 29.29, 120 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(486.37044904818777 88) rotate(0 27 12.5)"><text x="27" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Start</text></g><g transform="translate(407.11335075620275 170.0057616006372) rotate(0 100 15)"><text x="0" y="21.144" font-family="Virgil, Segoe UI Emoji" font-size="24px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PHASE 1</text></g><g transform="translate(533.6323391481908 158.98316506386624) rotate(0 37.655975341796875 20)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#666666" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Discovery</text><text x="0" y="34.096000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#666666" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">(Optional)</text></g><g stroke-linecap="round"><g transform="translate(513.3704490481878 130) rotate(0 0 50)"><path d="M0 0 C0 20, 0 40, 0 100 M0 0 C0 27.2, 0 54.4, 0 100" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 130) rotate(0 0 50)"><path d="M-8.55 76.51 C-6.84 81.21, -5.13 85.9, 0 100 M-8.55 76.51 C-6.22 82.9, -3.9 89.29, 0 100" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 130) rotate(0 0 50)"><path d="M8.55 76.51 C6.84 81.21, 5.13 85.9, 0 100 M8.55 76.51 C6.22 82.9, 3.9 89.29, 0 100" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(433.37044904818777 230) rotate(0 80 50)"><path d="M81 0 L160 51 L81 100 L0 51" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M81 0 C96.8 10.2, 112.6 20.4, 160 51 M81 0 C102.49 13.87, 123.98 27.74, 160 51 M160 51 C141.42 62.52, 122.85 74.04, 81 100 M160 51 C130.35 69.39, 100.71 87.78, 81 100 M81 100 C51.72 82.29, 22.43 64.57, 0 51 M81 100 C61.49 88.2, 41.97 76.39, 0 51 M0 51 C27.6 33.62, 55.19 16.25, 81 0 M0 51 C28.47 33.07, 56.95 15.14, 81 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(448.37044904818777 255) rotate(0 65 25)"><text x="65" y="16.596" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Include</text><text x="65" y="41.596000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Discovery?</text></g><g stroke-linecap="round"><g transform="translate(513.3704490481878 330) rotate(0 0 20)"><path d="M0 0 C0 8, 0 16, 0 40 M0 0 C0 10.88, 0 21.76, 0 40" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 330) rotate(0 0 20)"><path d="M-6.84 21.21 C-5.47 24.97, -4.1 28.72, 0 40 M-6.84 21.21 C-4.98 26.32, -3.12 31.43, 0 40" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 330) rotate(0 0 20)"><path d="M6.84 21.21 C5.47 24.97, 4.1 28.72, 0 40 M6.84 21.21 C4.98 26.32, 3.12 31.43, 0 40" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(523.3704490481878 340) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Yes</text></g><g stroke-linecap="round" transform="translate(433.37044904818777 370) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#b2ebf2"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#00acc1" stroke-width="2" fill="none"></path></g><g transform="translate(443.37044904818777 385) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Brainstorm</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(513.3704490481878 450) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 450) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 450) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(433.37044904818777 480) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#b2ebf2"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#00acc1" stroke-width="2" fill="none"></path></g><g transform="translate(443.37044904818777 495) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Research</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(513.3704490481878 560.4516141612517) rotate(0 0 14.548385838748345)"><path d="M0 0 C0 5.82, 0 11.64, 0 29.1 M0 0 C0 7.91, 0 15.83, 0 29.1" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 560.4516141612517) rotate(0 0 14.548385838748345)"><path d="M-4.98 15.43 C-3.98 18.16, -2.99 20.89, 0 29.1 M-4.98 15.43 C-3.62 19.14, -2.27 22.86, 0 29.1" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(513.3704490481878 560.4516141612517) rotate(0 0 14.548385838748345)"><path d="M4.98 15.43 C3.98 18.16, 2.99 20.89, 0 29.1 M4.98 15.43 C3.62 19.14, 2.27 22.86, 0 29.1" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(433.37044904818777 590) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#b2ebf2"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#00acc1" stroke-width="2" fill="none"></path></g><g transform="translate(466.0644950686956 605) rotate(0 47.30595397949219 25)"><text x="47.30595397949219" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Product Brief</text><text x="47.30595397949219" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(593.059928778232 280.14816182452876) rotate(0 77.1938381400342 0.14348588085840674)"><path d="M0 0 C30.88 0.06, 61.76 0.11, 154.39 0.29 M0 0 C41.99 0.08, 83.98 0.16, 154.39 0.29" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(593.059928778232 280.14816182452876) rotate(0 77.1938381400342 0.14348588085840674)"><path d="M130.88 8.79 C135.58 7.09, 140.28 5.39, 154.39 0.29 M130.88 8.79 C137.27 6.48, 143.67 4.17, 154.39 0.29" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(593.059928778232 280.14816182452876) rotate(0 77.1938381400342 0.14348588085840674)"><path d="M130.91 -8.31 C135.61 -6.59, 140.3 -4.87, 154.39 0.29 M130.91 -8.31 C137.3 -5.97, 143.68 -3.63, 154.39 0.29" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(613.3704490481878 260) rotate(0 12.5 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#d32f2f" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">No</text></g><g stroke-linecap="round"><g transform="translate(594.2050463847766 637.2861823292017) rotate(0 77.62237852222447 -171.9803113673016)"><path d="M0 0 C11.05 -48.5, 40.43 -233.7, 66.3 -291.03 C92.18 -348.35, 140.42 -335.14, 155.24 -343.96 M0 0 C11.05 -48.5, 40.43 -233.7, 66.3 -291.03 C92.18 -348.35, 140.42 -335.14, 155.24 -343.96" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(594.2050463847766 637.2861823292017) rotate(0 77.62237852222447 -171.9803113673016)"><path d="M134.08 -330.66 C138.31 -333.32, 142.54 -335.98, 155.24 -343.96 M134.08 -330.66 C139.83 -334.28, 145.59 -337.89, 155.24 -343.96" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(594.2050463847766 637.2861823292017) rotate(0 77.62237852222447 -171.9803113673016)"><path d="M130.48 -347.38 C135.43 -346.69, 140.39 -346.01, 155.24 -343.96 M130.48 -347.38 C137.22 -346.45, 143.95 -345.52, 155.24 -343.96" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(733.3704490481878 170) rotate(0 100 15)"><text x="0" y="21.144" font-family="Virgil, Segoe UI Emoji" font-size="24px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PHASE 2</text></g><g transform="translate(733.3704490481878 200) rotate(0 100 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#666666" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Planning (Required)</text></g><g stroke-linecap="round" transform="translate(752.667533770451 240.5934448656302) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#c8e6c9"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#43a047" stroke-width="2" fill="none"></path></g><g transform="translate(811.4775465878338 268.0934448656302) rotate(0 21.189987182617188 12.5)"><text x="21.189987182617188" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PRD</text></g><g stroke-linecap="round"><g transform="translate(832.7514684932755 321.0450590268819) rotate(0 0.10034104263920085 14.251663405933215)"><path d="M0 0 C0.04 5.7, 0.08 11.4, 0.2 28.5 M0 0 C0.05 7.75, 0.11 15.51, 0.2 28.5" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(832.7514684932755 321.0450590268819) rotate(0 0.10034104263920085 14.251663405933215)"><path d="M-4.77 15.15 C-3.77 17.82, -2.78 20.49, 0.2 28.5 M-4.77 15.15 C-3.42 18.78, -2.07 22.41, 0.2 28.5" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(832.7514684932755 321.0450590268819) rotate(0 0.10034104263920085 14.251663405933215)"><path d="M4.98 15.08 C4.02 17.76, 3.07 20.45, 0.2 28.5 M4.98 15.08 C3.68 18.73, 2.38 22.38, 0.2 28.5" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(753.3704490481878 350) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#c8e6c9"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#43a047" stroke-width="2" fill="none"></path></g><g transform="translate(763.3704490481878 365) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Validate PRD</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(833.3704490481878 430) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(833.3704490481878 430) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(833.3704490481878 430) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(753.3704490481878 460) rotate(0 80 50)"><path d="M81 0 L160 51 L81 100 L0 51" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M81 0 C96.8 10.2, 112.6 20.4, 160 51 M81 0 C102.49 13.87, 123.98 27.74, 160 51 M160 51 C141.42 62.52, 122.85 74.04, 81 100 M160 51 C130.35 69.39, 100.71 87.78, 81 100 M81 100 C51.72 82.29, 22.43 64.57, 0 51 M81 100 C61.49 88.2, 41.97 76.39, 0 51 M0 51 C27.6 33.62, 55.19 16.25, 81 0 M0 51 C28.47 33.07, 56.95 15.14, 81 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(768.3704490481878 485) rotate(0 65 25)"><text x="65" y="29.095999999999997" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Has UI?</text></g><g stroke-linecap="round"><g transform="translate(833.3704490481878 560) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(833.3704490481878 560) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(833.3704490481878 560) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(843.3704490481878 570) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Yes</text></g><g stroke-linecap="round" transform="translate(753.3704490481878 590) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#e1bee7"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#8e24aa" stroke-width="2" fill="none"></path></g><g transform="translate(763.3704490481878 618) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Create UX</text></g><g stroke-linecap="round"><g transform="translate(913.3704490481878 510) rotate(0 70 0)"><path d="M0 0 C28 0, 56 0, 140 0 M0 0 C38.08 0, 76.16 0, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(913.3704490481878 510) rotate(0 70 0)"><path d="M116.51 8.55 C121.21 6.84, 125.9 5.13, 140 0 M116.51 8.55 C122.9 6.22, 129.29 3.9, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(913.3704490481878 510) rotate(0 70 0)"><path d="M116.51 -8.55 C121.21 -6.84, 125.9 -5.13, 140 0 M116.51 -8.55 C122.9 -6.22, 129.29 -3.9, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(933.3704490481878 490) rotate(0 12.5 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#d32f2f" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">No</text></g><g stroke-linecap="round"><g transform="translate(913.3704490481878 630) rotate(0 70 0)"><path d="M0 0 C28 0, 56 0, 140 0 M0 0 C38.08 0, 76.16 0, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(913.3704490481878 630) rotate(0 70 0)"><path d="M116.51 8.55 C121.21 6.84, 125.9 5.13, 140 0 M116.51 8.55 C122.9 6.22, 129.29 3.9, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(913.3704490481878 630) rotate(0 70 0)"><path d="M116.51 -8.55 C121.21 -6.84, 125.9 -5.13, 140 0 M116.51 -8.55 C122.9 -6.22, 129.29 -3.9, 140 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1053.3704490481878 170) rotate(0 100 15)"><text x="0" y="21.144" font-family="Virgil, Segoe UI Emoji" font-size="24px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PHASE 3</text></g><g transform="translate(1053.3704490481878 200) rotate(0 110 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#666666" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Solutioning (Required)</text></g><g stroke-linecap="round" transform="translate(1073.3704490481878 470) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#ffccbc"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#f4511e" stroke-width="2" fill="none"></path></g><g transform="translate(1083.3704490481878 498) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Architecture</text></g><g stroke-linecap="round"><g transform="translate(1153.3704490481878 550) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 550) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 550) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1073.3704490481878 580) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#c8e6c9"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#43a047" stroke-width="2" fill="none"></path></g><g transform="translate(1083.3704490481878 608) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Epics/Stories</text></g><g stroke-linecap="round"><g transform="translate(1153.3704490481878 660) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 660) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 660) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1073.3704490481878 690) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#f8bbd0"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#e91e63" stroke-width="2" fill="none"></path></g><g transform="translate(1083.3704490481878 705) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Test Design</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<recommended>></text></g><g stroke-linecap="round"><g transform="translate(1153.3704490481878 770) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 770) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 770) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1073.3704490481878 800) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#ffccbc"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#f4511e" stroke-width="2" fill="none"></path></g><g transform="translate(1083.3704490481878 815) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Validate Arch</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(1153.3704490481878 880) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 880) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1153.3704490481878 880) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1073.3704490481878 910) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#ffccbc"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#f4511e" stroke-width="2" fill="none"></path></g><g transform="translate(1083.3704490481878 925) rotate(0 70 25)"><text x="70" y="16.596" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Implementation</text><text x="70" y="41.596000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Readiness</text></g><g stroke-linecap="round"><g transform="translate(1233.3704490481878 950) rotate(0 90 0)"><path d="M0 0 C36 0, 72 0, 180 0 M0 0 C48.96 0, 97.92 0, 180 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1233.3704490481878 950) rotate(0 90 0)"><path d="M156.51 8.55 C161.21 6.84, 165.9 5.13, 180 0 M156.51 8.55 C162.9 6.22, 169.29 3.9, 180 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1233.3704490481878 950) rotate(0 90 0)"><path d="M156.51 -8.55 C161.21 -6.84, 165.9 -5.13, 180 0 M156.51 -8.55 C162.9 -6.22, 169.29 -3.9, 180 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1413.3704490481878 170) rotate(0 100 15)"><text x="0" y="21.144" font-family="Virgil, Segoe UI Emoji" font-size="24px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PHASE 4</text></g><g transform="translate(1413.3704490481878 200) rotate(0 130 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#666666" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Implementation (Required)</text></g><g stroke-linecap="round" transform="translate(1413.3704490481878 910) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 938) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Sprint Plan</text></g><g transform="translate(1413.3704490481878 1020) rotate(0 100 12.5)"><text x="0" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#6a1b9a" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">→ EPIC CYCLE</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 990) rotate(0 0 35)"><path d="M0 0 C0 14, 0 28, 0 70 M0 0 C0 19.04, 0 38.08, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 990) rotate(0 0 35)"><path d="M-8.55 46.51 C-6.84 51.21, -5.13 55.9, 0 70 M-8.55 46.51 C-6.22 52.9, -3.9 59.29, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 990) rotate(0 0 35)"><path d="M8.55 46.51 C6.84 51.21, 5.13 55.9, 0 70 M8.55 46.51 C6.22 52.9, 3.9 59.29, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1413.3704490481878 1060) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1088) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Epic Context</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1140) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1140) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1140) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1413.3704490481878 1170) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1185) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Validate Epic</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g transform="translate(1413.3704490481878 1280) rotate(0 100 12.5)"><text x="0" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#e65100" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">→ STORY LOOP</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1250) rotate(0 0 35)"><path d="M0 0 C0 14, 0 28, 0 70 M0 0 C0 19.04, 0 38.08, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1250) rotate(0 0 35)"><path d="M-8.55 46.51 C-6.84 51.21, -5.13 55.9, 0 70 M-8.55 46.51 C-6.22 52.9, -3.9 59.29, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1250) rotate(0 0 35)"><path d="M8.55 46.51 C6.84 51.21, 5.13 55.9, 0 70 M8.55 46.51 C6.22 52.9, 3.9 59.29, 0 70" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1413.3704490481878 1320) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1348) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Create Story</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1400) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1400) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1400) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1413.3704490481878 1430) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1445) rotate(0 70 25)"><text x="70" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Validate Story</text><text x="70" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1510) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1510) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1510) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1403.3704490481878 1540) rotate(0 90 60)"><path d="M91 0 L180 61 L91 120 L0 61" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M91 0 C108.8 12.2, 126.6 24.4, 180 61 M91 0 C115.21 16.59, 139.41 33.18, 180 61 M180 61 C159.07 74.87, 138.15 88.75, 91 120 M180 61 C146.6 83.14, 113.2 105.28, 91 120 M91 120 C58.1 98.67, 25.2 77.34, 0 61 M91 120 C69.08 105.79, 47.15 91.57, 0 61 M0 61 C31 40.22, 62.01 19.44, 91 0 M0 61 C31.99 39.56, 63.98 18.11, 91 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(1418.3704490481878 1575) rotate(0 75 25)"><text x="75" y="16.596" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Context OR</text><text x="75" y="41.596000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Ready?</text></g><g stroke-linecap="round"><g transform="translate(1403.3704490481878 1600) rotate(0 -35 0)"><path d="M0 0 C-14 0, -28 0, -70 0 M0 0 C-19.04 0, -38.08 0, -70 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1403.3704490481878 1600) rotate(0 -35 0)"><path d="M-46.51 -8.55 C-51.21 -6.84, -55.9 -5.13, -70 0 M-46.51 -8.55 C-52.9 -6.22, -59.29 -3.9, -70 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1403.3704490481878 1600) rotate(0 -35 0)"><path d="M-46.51 8.55 C-51.21 6.84, -55.9 5.13, -70 0 M-46.51 8.55 C-52.9 6.22, -59.29 3.9, -70 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1344.5149802981878 1570.75390625) rotate(0 30 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Context</text></g><g stroke-linecap="round" transform="translate(1153.3704490481878 1560) rotate(0 90 40)"><path d="M8 0 C44.08 0, 80.15 0, 172 0 C177.33 0, 180 2.67, 180 8 C180 28.82, 180 49.65, 180 72 C180 77.33, 177.33 80, 172 80 C116.99 80, 61.98 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C40.8 0, 73.6 0, 172 0 M8 0 C52.61 0, 97.21 0, 172 0 M172 0 C177.33 0, 180 2.67, 180 8 M172 0 C177.33 0, 180 2.67, 180 8 M180 8 C180 21.92, 180 35.84, 180 72 M180 8 C180 32.93, 180 57.86, 180 72 M180 72 C180 77.33, 177.33 80, 172 80 M180 72 C180 77.33, 177.33 80, 172 80 M172 80 C136.63 80, 101.26 80, 8 80 M172 80 C136.61 80, 101.21 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1163.3704490481878 1588) rotate(0 80 12.5)"><text x="80" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Story Context</text></g><g stroke-linecap="round"><g transform="translate(1243.3704490481878 1640) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1243.3704490481878 1640) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1243.3704490481878 1640) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1153.3704490481878 1670) rotate(0 90 40)"><path d="M8 0 C44.08 0, 80.15 0, 172 0 C177.33 0, 180 2.67, 180 8 C180 28.82, 180 49.65, 180 72 C180 77.33, 177.33 80, 172 80 C116.99 80, 61.98 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C40.8 0, 73.6 0, 172 0 M8 0 C52.61 0, 97.21 0, 172 0 M172 0 C177.33 0, 180 2.67, 180 8 M172 0 C177.33 0, 180 2.67, 180 8 M180 8 C180 21.92, 180 35.84, 180 72 M180 8 C180 32.93, 180 57.86, 180 72 M180 72 C180 77.33, 177.33 80, 172 80 M180 72 C180 77.33, 177.33 80, 172 80 M172 80 C136.63 80, 101.26 80, 8 80 M172 80 C136.61 80, 101.21 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1163.3704490481878 1685) rotate(0 80 25)"><text x="80" y="16.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Validate Context</text><text x="80" y="41.084" font-family="Virgil, Segoe UI Emoji" font-size="14px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic"><<optional>></text></g><g stroke-linecap="round"><g transform="translate(1333.3704490481878 1710) rotate(0 40 0)"><path d="M0 0 C16 0, 32 0, 80 0 M0 0 C21.76 0, 43.52 0, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1333.3704490481878 1710) rotate(0 40 0)"><path d="M56.51 8.55 C61.21 6.84, 65.9 5.13, 80 0 M56.51 8.55 C62.9 6.22, 69.29 3.9, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1333.3704490481878 1710) rotate(0 40 0)"><path d="M56.51 -8.55 C61.21 -6.84, 65.9 -5.13, 80 0 M56.51 -8.55 C62.9 -6.22, 69.29 -3.9, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1660) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1660) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1660) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1503.3704490481878 1670) rotate(0 25 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Ready</text></g><g stroke-linecap="round" transform="translate(1413.3704490481878 1690) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1718) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Story Ready</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1770) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1770) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1770) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1413.3704490481878 1800) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#c5cae9"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#3f51b5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 1828) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Develop Story</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 1880) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1880) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 1880) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1403.3704490481878 1910) rotate(0 90 60)"><path d="M91 0 L180 61 L91 120 L0 61" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M91 0 C108.8 12.2, 126.6 24.4, 180 61 M91 0 C115.21 16.59, 139.41 33.18, 180 61 M180 61 C159.07 74.87, 138.15 88.75, 91 120 M180 61 C146.6 83.14, 113.2 105.28, 91 120 M91 120 C58.1 98.67, 25.2 77.34, 0 61 M91 120 C69.08 105.79, 47.15 91.57, 0 61 M0 61 C31 40.22, 62.01 19.44, 91 0 M0 61 C31.99 39.56, 63.98 18.11, 91 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(1418.3704490481878 1945) rotate(0 75 25)"><text x="75" y="16.596" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Code Review</text><text x="75" y="41.596000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Pass?</text></g><g stroke-linecap="round"><g transform="translate(1403.3704490481878 1970) rotate(0 -35 -85)"><path d="M0 0 C-10.8 0, -21.6 0, -54 0 M0 0 C-14.69 0, -29.38 0, -54 0 M-54 0 C-64.67 0, -70 -5.33, -70 -16 M-54 0 C-64.67 0, -70 -5.33, -70 -16 M-70 -16 C-70 -49.5, -70 -82.99, -70 -170 M-70 -16 C-70 -75.99, -70 -135.97, -70 -170" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1403.3704490481878 1970) rotate(0 -35 -85)"><path d="M-61.45 -146.51 C-63.16 -151.21, -64.87 -155.9, -70 -170 M-61.45 -146.51 C-63.78 -152.9, -66.1 -159.29, -70 -170" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1403.3704490481878 1970) rotate(0 -35 -85)"><path d="M-78.55 -146.51 C-76.84 -151.21, -75.13 -155.9, -70 -170 M-78.55 -146.51 C-76.22 -152.9, -73.9 -159.29, -70 -170" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g transform="translate(1333.3704490481878 1800) rotate(0 40 0)"><path d="M0 0 C16 0, 32 0, 80 0 M0 0 C21.76 0, 43.52 0, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1333.3704490481878 1800) rotate(0 40 0)"><path d="M56.51 8.55 C61.21 6.84, 65.9 5.13, 80 0 M56.51 8.55 C62.9 6.22, 69.29 3.9, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1333.3704490481878 1800) rotate(0 40 0)"><path d="M56.51 -8.55 C61.21 -6.84, 65.9 -5.13, 80 0 M56.51 -8.55 C62.9 -6.22, 69.29 -3.9, 80 0" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1273.3704490481878 1950) rotate(0 17.5 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#d32f2f" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Fail</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 2030) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2030) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2030) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1503.3704490481878 2040) rotate(0 20 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Pass</text></g><g stroke-linecap="round" transform="translate(1413.3704490481878 2060) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#c5cae9"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#3f51b5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 2088) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Story Done</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 2140) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2140) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2140) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1403.3704490481878 2170) rotate(0 90 60)"><path d="M91 0 L180 61 L91 120 L0 61" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M91 0 C108.8 12.2, 126.6 24.4, 180 61 M91 0 C115.21 16.59, 139.41 33.18, 180 61 M180 61 C159.07 74.87, 138.15 88.75, 91 120 M180 61 C146.6 83.14, 113.2 105.28, 91 120 M91 120 C58.1 98.67, 25.2 77.34, 0 61 M91 120 C69.08 105.79, 47.15 91.57, 0 61 M0 61 C31 40.22, 62.01 19.44, 91 0 M0 61 C31.99 39.56, 63.98 18.11, 91 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(1418.3704490481878 2205) rotate(0 75 25)"><text x="75" y="16.596" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">More Stories</text><text x="75" y="41.596000000000004" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">in Epic?</text></g><g stroke-linecap="round"><g transform="translate(1398.3704490481878 2229.9) rotate(0 -131.43359375 -439.91679687500005)"><path d="M0 0 C-51.14 0, -102.29 0, -255.72 0 M0 0 C-69.55 0, -139.11 0, -255.72 0 M-255.72 0 C-266.39 0, -271.72 -5.33, -271.72 -16 M-255.72 0 C-266.39 0, -271.72 -5.33, -271.72 -16 M-271.72 -16 C-271.72 -200.41, -271.72 -384.81, -271.72 -863.83 M-271.72 -16 C-271.72 -346.25, -271.72 -676.5, -271.72 -863.83 M-271.72 -863.83 C-271.72 -874.5, -266.39 -879.83, -255.72 -879.83 M-271.72 -863.83 C-271.72 -874.5, -266.39 -879.83, -255.72 -879.83 M-255.72 -879.83 C-198.66 -879.83, -141.6 -879.83, 8.85 -879.83 M-255.72 -879.83 C-198.62 -879.83, -141.52 -879.83, 8.85 -879.83" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1398.3704490481878 2229.9) rotate(0 -131.43359375 -439.91679687500005)"><path d="M-14.64 -871.28 C-9.94 -872.99, -5.24 -874.7, 8.85 -879.83 M-14.64 -871.28 C-8.25 -873.61, -1.86 -875.93, 8.85 -879.83" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1398.3704490481878 2229.9) rotate(0 -131.43359375 -439.91679687500005)"><path d="M-14.64 -888.38 C-9.94 -886.67, -5.24 -884.96, 8.85 -879.83 M-14.64 -888.38 C-8.25 -886.06, -1.86 -883.73, 8.85 -879.83" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1213.3704490481878 2210) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Yes</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 2290) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2290) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2290) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1503.3704490481878 2300) rotate(0 12.5 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#d32f2f" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">No</text></g><g stroke-linecap="round" transform="translate(1413.3704490481878 2320) rotate(0 80 40)"><path d="M8 0 C39.68 0, 71.36 0, 152 0 C157.33 0, 160 2.67, 160 8 C160 28.82, 160 49.65, 160 72 C160 77.33, 157.33 80, 152 80 C103.7 80, 55.4 80, 8 80 C2.67 80, 0 77.33, 0 72 C0 56.43, 0 40.87, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M8 0 C36.8 0, 65.6 0, 152 0 M8 0 C47.17 0, 86.33 0, 152 0 M152 0 C157.33 0, 160 2.67, 160 8 M152 0 C157.33 0, 160 2.67, 160 8 M160 8 C160 21.92, 160 35.84, 160 72 M160 8 C160 32.93, 160 57.86, 160 72 M160 72 C160 77.33, 157.33 80, 152 80 M160 72 C160 77.33, 157.33 80, 152 80 M152 80 C120.94 80, 89.89 80, 8 80 M152 80 C120.92 80, 89.84 80, 8 80 M8 80 C2.67 80, 0 77.33, 0 72 M8 80 C2.67 80, 0 77.33, 0 72 M0 72 C0 53.64, 0 35.29, 0 8 M0 72 C0 54.31, 0 36.62, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(1423.3704490481878 2348) rotate(0 70 12.5)"><text x="70" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Retrospective</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 2400) rotate(0 0 15)"><path d="M0 0 C0 6, 0 12, 0 30 M0 0 C0 8.16, 0 16.32, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2400) rotate(0 0 15)"><path d="M-5.13 15.9 C-4.1 18.72, -3.08 21.54, 0 30 M-5.13 15.9 C-3.73 19.74, -2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2400) rotate(0 0 15)"><path d="M5.13 15.9 C4.1 18.72, 3.08 21.54, 0 30 M5.13 15.9 C3.73 19.74, 2.34 23.57, 0 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round" transform="translate(1403.3704490481878 2430) rotate(0 90 60)"><path d="M91 0 L180 61 L91 120 L0 61" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M91 0 C108.8 12.2, 126.6 24.4, 180 61 M91 0 C115.21 16.59, 139.41 33.18, 180 61 M180 61 C159.07 74.87, 138.15 88.75, 91 120 M180 61 C146.6 83.14, 113.2 105.28, 91 120 M91 120 C58.1 98.67, 25.2 77.34, 0 61 M91 120 C69.08 105.79, 47.15 91.57, 0 61 M0 61 C31 40.22, 62.01 19.44, 91 0 M0 61 C31.99 39.56, 63.98 18.11, 91 0" stroke="#f57c00" stroke-width="2" fill="none"></path></g><g transform="translate(1418.3704490481878 2465) rotate(0 75 25)"><text x="75" y="29.095999999999997" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">More Epics?</text></g><g stroke-linecap="round"><g transform="translate(1398.3704490481878 2489.9) rotate(0 -157.873046875 -695)"><path d="M0 0 C-61.95 0, -123.9 0, -309.75 0 M0 0 C-84.25 0, -168.5 0, -309.75 0 M-309.75 0 C-320.41 0, -325.75 -5.33, -325.75 -16 M-309.75 0 C-320.41 0, -325.75 -5.33, -325.75 -16 M-325.75 -16 C-325.75 -311.37, -325.75 -606.74, -325.75 -1374 M-325.75 -16 C-325.75 -544.97, -325.75 -1073.94, -325.75 -1374 M-325.75 -1374 C-325.75 -1384.67, -320.41 -1390, -309.75 -1390 M-325.75 -1374 C-325.75 -1384.67, -320.41 -1390, -309.75 -1390 M-309.75 -1390 C-240.79 -1390, -171.83 -1390, 10 -1390 M-309.75 -1390 C-240.74 -1390, -171.73 -1390, 10 -1390" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1398.3704490481878 2489.9) rotate(0 -157.873046875 -695)"><path d="M-13.49 -1381.45 C-8.79 -1383.16, -4.1 -1384.87, 10 -1390 M-13.49 -1381.45 C-7.1 -1383.78, -0.71 -1386.1, 10 -1390" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1398.3704490481878 2489.9) rotate(0 -157.873046875 -695)"><path d="M-13.49 -1398.55 C-8.79 -1396.84, -4.1 -1395.13, 10 -1390 M-13.49 -1398.55 C-7.1 -1396.22, -0.71 -1393.9, 10 -1390" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1105.4485740481878 2468.50390625) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#2e7d32" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Yes</text></g><g stroke-linecap="round"><g transform="translate(1493.3704490481878 2550) rotate(0 0 25)"><path d="M0 0 C0 10, 0 20, 0 50 M0 0 C0 13.6, 0 27.2, 0 50" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2550) rotate(0 0 25)"><path d="M-8.55 26.51 C-6.84 31.21, -5.13 35.9, 0 50 M-8.55 26.51 C-6.22 32.9, -3.9 39.29, 0 50" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1493.3704490481878 2550) rotate(0 0 25)"><path d="M8.55 26.51 C6.84 31.21, 5.13 35.9, 0 50 M8.55 26.51 C6.22 32.9, 3.9 39.29, 0 50" stroke="#1976d2" stroke-width="2" fill="none"></path></g></g><mask></mask><g transform="translate(1503.3704490481878 2560) rotate(0 12.5 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#d32f2f" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">No</text></g><g stroke-linecap="round" transform="translate(1433.3704490481878 2600) rotate(0 60 30)"><path d="M120 30 C120 31.42, 119.79 32.86, 119.39 34.27 C118.98 35.68, 118.37 37.09, 117.57 38.45 C116.77 39.82, 115.76 41.17, 114.58 42.46 C113.4 43.76, 112.01 45.02, 110.48 46.22 C108.94 47.42, 107.21 48.57, 105.34 49.65 C103.48 50.72, 101.44 51.74, 99.29 52.67 C97.14 53.6, 94.83 54.47, 92.44 55.24 C90.04 56.01, 87.51 56.7, 84.92 57.29 C82.34 57.88, 79.63 58.38, 76.9 58.78 C74.17 59.19, 71.36 59.49, 68.54 59.69 C65.72 59.9, 62.85 60, 60 60 C57.15 60, 54.28 59.9, 51.46 59.69 C48.64 59.49, 45.83 59.19, 43.1 58.78 C40.37 58.38, 37.66 57.88, 35.08 57.29 C32.49 56.7, 29.96 56.01, 27.56 55.24 C25.17 54.47, 22.86 53.6, 20.71 52.67 C18.56 51.74, 16.52 50.72, 14.66 49.65 C12.79 48.57, 11.06 47.42, 9.52 46.22 C7.99 45.02, 6.6 43.76, 5.42 42.46 C4.24 41.17, 3.23 39.82, 2.43 38.45 C1.63 37.09, 1.02 35.68, 0.61 34.27 C0.21 32.86, 0 31.42, 0 30 C0 28.58, 0.21 27.14, 0.61 25.73 C1.02 24.32, 1.63 22.91, 2.43 21.55 C3.23 20.18, 4.24 18.83, 5.42 17.54 C6.6 16.24, 7.99 14.98, 9.52 13.78 C11.06 12.58, 12.79 11.43, 14.66 10.35 C16.52 9.28, 18.56 8.26, 20.71 7.33 C22.86 6.4, 25.17 5.53, 27.56 4.76 C29.96 3.99, 32.49 3.3, 35.08 2.71 C37.66 2.12, 40.37 1.62, 43.1 1.22 C45.83 0.81, 48.64 0.51, 51.46 0.31 C54.28 0.1, 57.15 0, 60 0 C62.85 0, 65.72 0.1, 68.54 0.31 C71.36 0.51, 74.17 0.81, 76.9 1.22 C79.63 1.62, 82.34 2.12, 84.92 2.71 C87.51 3.3, 90.04 3.99, 92.44 4.76 C94.83 5.53, 97.14 6.4, 99.29 7.33 C101.44 8.26, 103.48 9.28, 105.34 10.35 C107.21 11.43, 108.94 12.58, 110.48 13.78 C112.01 14.98, 113.4 16.24, 114.58 17.54 C115.76 18.83, 116.77 20.18, 117.57 21.55 C118.37 22.91, 118.98 24.32, 119.39 25.73 C119.79 27.14, 119.9 29.29, 120 30 C120.1 30.71, 120.1 29.29, 120 30" stroke="none" stroke-width="0" fill="#e3f2fd"></path><path d="M120 30 C120 31.42, 119.79 32.86, 119.39 34.27 C118.98 35.68, 118.37 37.09, 117.57 38.45 C116.77 39.82, 115.76 41.17, 114.58 42.46 C113.4 43.76, 112.01 45.02, 110.48 46.22 C108.94 47.42, 107.21 48.57, 105.34 49.65 C103.48 50.72, 101.44 51.74, 99.29 52.67 C97.14 53.6, 94.83 54.47, 92.44 55.24 C90.04 56.01, 87.51 56.7, 84.92 57.29 C82.34 57.88, 79.63 58.38, 76.9 58.78 C74.17 59.19, 71.36 59.49, 68.54 59.69 C65.72 59.9, 62.85 60, 60 60 C57.15 60, 54.28 59.9, 51.46 59.69 C48.64 59.49, 45.83 59.19, 43.1 58.78 C40.37 58.38, 37.66 57.88, 35.08 57.29 C32.49 56.7, 29.96 56.01, 27.56 55.24 C25.17 54.47, 22.86 53.6, 20.71 52.67 C18.56 51.74, 16.52 50.72, 14.66 49.65 C12.79 48.57, 11.06 47.42, 9.52 46.22 C7.99 45.02, 6.6 43.76, 5.42 42.46 C4.24 41.17, 3.23 39.82, 2.43 38.45 C1.63 37.09, 1.02 35.68, 0.61 34.27 C0.21 32.86, 0 31.42, 0 30 C0 28.58, 0.21 27.14, 0.61 25.73 C1.02 24.32, 1.63 22.91, 2.43 21.55 C3.23 20.18, 4.24 18.83, 5.42 17.54 C6.6 16.24, 7.99 14.98, 9.52 13.78 C11.06 12.58, 12.79 11.43, 14.66 10.35 C16.52 9.28, 18.56 8.26, 20.71 7.33 C22.86 6.4, 25.17 5.53, 27.56 4.76 C29.96 3.99, 32.49 3.3, 35.08 2.71 C37.66 2.12, 40.37 1.62, 43.1 1.22 C45.83 0.81, 48.64 0.51, 51.46 0.31 C54.28 0.1, 57.15 0, 60 0 C62.85 0, 65.72 0.1, 68.54 0.31 C71.36 0.51, 74.17 0.81, 76.9 1.22 C79.63 1.62, 82.34 2.12, 84.92 2.71 C87.51 3.3, 90.04 3.99, 92.44 4.76 C94.83 5.53, 97.14 6.4, 99.29 7.33 C101.44 8.26, 103.48 9.28, 105.34 10.35 C107.21 11.43, 108.94 12.58, 110.48 13.78 C112.01 14.98, 113.4 16.24, 114.58 17.54 C115.76 18.83, 116.77 20.18, 117.57 21.55 C118.37 22.91, 118.98 24.32, 119.39 25.73 C119.79 27.14, 119.9 29.29, 120 30 C120.1 30.71, 120.1 29.29, 120 30" stroke="#1976d2" stroke-width="2" fill="none"></path></g><g transform="translate(1470.3704490481878 2618) rotate(0 23 12.5)"><text x="23" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">End</text></g><g stroke-linecap="round" transform="translate(10 120.62309916565027) rotate(0 140 120)"><path d="M8 0 C66.08 0, 124.15 0, 272 0 C277.33 0, 280 2.67, 280 8 C280 80.88, 280 153.76, 280 232 C280 237.33, 277.33 240, 272 240 C183.45 240, 94.9 240, 8 240 C2.67 240, 0 237.33, 0 232 C0 177.51, 0 123.03, 0 8 C0 2.67, 2.67 0, 8 0" stroke="none" stroke-width="0" fill="#ffffff"></path><path d="M8 0 C60.8 0, 113.6 0, 272 0 M8 0 C79.81 0, 151.61 0, 272 0 M272 0 C277.33 0, 280 2.67, 280 8 M272 0 C277.33 0, 280 2.67, 280 8 M280 8 C280 56.72, 280 105.44, 280 232 M280 8 C280 95.25, 280 182.51, 280 232 M280 232 C280 237.33, 277.33 240, 272 240 M280 232 C280 237.33, 277.33 240, 272 240 M272 240 C215.06 240, 158.12 240, 8 240 M272 240 C215.02 240, 158.05 240, 8 240 M8 240 C2.67 240, 0 237.33, 0 232 M8 240 C2.67 240, 0 237.33, 0 232 M0 232 C0 167.75, 0 103.51, 0 8 M0 232 C0 170.08, 0 108.17, 0 8 M0 8 C0 2.67, 2.67 0, 8 0 M0 8 C0 2.67, 2.67 0, 8 0" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g><g transform="translate(90 130.62309916565027) rotate(0 60 12.5)"><text x="60" y="17.619999999999997" font-family="Virgil, Segoe UI Emoji" font-size="20px" fill="#1e1e1e" text-anchor="middle" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Agent Legend</text></g><g stroke-linecap="round" transform="translate(20 170.62309916565027) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#b2ebf2"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#00acc1" stroke-width="2" fill="none"></path></g><g transform="translate(50 172.62309916565027) rotate(0 35 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Analyst</text></g><g stroke-linecap="round" transform="translate(20 200.62309916565027) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#c8e6c9"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#43a047" stroke-width="2" fill="none"></path></g><g transform="translate(50 202.62309916565027) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">PM</text></g><g stroke-linecap="round" transform="translate(20 230.62309916565027) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#e1bee7"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#8e24aa" stroke-width="2" fill="none"></path></g><g transform="translate(50 232.62309916565027) rotate(0 55 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">UX Designer</text></g><g stroke-linecap="round" transform="translate(20 260.6230991656503) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#ffccbc"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#f4511e" stroke-width="2" fill="none"></path></g><g transform="translate(50 262.6230991656503) rotate(0 40 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Architect</text></g><g stroke-linecap="round" transform="translate(20 290.6230991656503) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#f8bbd0"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#e91e63" stroke-width="2" fill="none"></path></g><g transform="translate(50 292.6230991656503) rotate(0 20 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">TEA</text></g><g stroke-linecap="round" transform="translate(20 320.6230991656503) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#bbdefb"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#1e88e5" stroke-width="2" fill="none"></path></g><g transform="translate(50 322.6230991656503) rotate(0 15 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">SM</text></g><g stroke-linecap="round" transform="translate(170 170.62309916565027) rotate(0 10 10)"><path d="M0 0 L20 0 L20 20 L0 20" stroke="none" stroke-width="0" fill="#c5cae9"></path><path d="M0 0 C4 0, 8 0, 20 0 M0 0 C5.44 0, 10.88 0, 20 0 M20 0 C20 4.7, 20 9.41, 20 20 M20 0 C20 7.51, 20 15.01, 20 20 M20 20 C12.77 20, 5.54 20, 0 20 M20 20 C15.18 20, 10.36 20, 0 20 M0 20 C0 13.19, 0 6.37, 0 0 M0 20 C0 12.97, 0 5.94, 0 0" stroke="#3f51b5" stroke-width="2" fill="none"></path></g><g transform="translate(200 172.62309916565027) rotate(0 20 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">DEV</text></g><g stroke-linecap="round" transform="translate(170 200.62309916565027) rotate(0 15 15)"><path d="M16 0 L30 16 L16 30 L0 16" stroke="none" stroke-width="0" fill="#fff3e0" fill-rule="evenodd"></path><path d="M16 0 C18.8 3.2, 21.6 6.4, 30 16 M16 0 C19.81 4.35, 23.62 8.7, 30 16 M30 16 C26.71 19.29, 23.42 22.58, 16 30 M30 16 C24.75 21.25, 19.49 26.51, 16 30 M16 30 C10.22 24.94, 4.43 19.88, 0 16 M16 30 C12.15 26.63, 8.29 23.25, 0 16 M0 16 C5.45 10.55, 10.9 5.1, 16 0 M0 16 C5.62 10.38, 11.25 4.75, 16 0" stroke="#f57c00" stroke-width="1" fill="none"></path></g><g transform="translate(210 207.62309916565027) rotate(0 35 10)"><text x="0" y="14.096" font-family="Virgil, Segoe UI Emoji" font-size="16px" fill="#1e1e1e" text-anchor="start" style="white-space: pre;" direction="ltr" dominant-baseline="alphabetic">Decision</text></g></svg>
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Party Mode: Multi-Agent Collaboration
|
|
2
|
+
|
|
3
|
+
**Get all your AI agents in one conversation**
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What is Party Mode?
|
|
8
|
+
|
|
9
|
+
Ever wanted to gather your entire AI team in one room and see what happens? That's party mode.
|
|
10
|
+
|
|
11
|
+
Type `/bmad:core:workflows:party-mode` (or `*party-mode` from any agent), and suddenly you've got **all your AI agents** in one conversation. PM, Architect, DEV, UX Designer, the CIS creative agents - everyone shows up.
|
|
12
|
+
|
|
13
|
+
**Why it's useful:**
|
|
14
|
+
|
|
15
|
+
- **After complex workflows** - Debrief with the whole team about what worked, what didn't
|
|
16
|
+
- **Big decisions with tradeoffs** - Get technical, creative, and strategic perspectives simultaneously
|
|
17
|
+
- **Brainstorming sessions** - Watch ideas evolve through cross-pollination
|
|
18
|
+
- **When things go wrong** - Call out failures, watch agents defend their decisions, let them debate whose fault it was (oddly therapeutic)
|
|
19
|
+
- **Sprint retrospectives** - Party mode powers the retrospective workflow
|
|
20
|
+
- **Sprint planning** - Multi-agent collaboration for planning sessions
|
|
21
|
+
|
|
22
|
+
**Future use:** Advanced elicitation workflows will leverage party mode for sophisticated requirement gathering.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## How It Works
|
|
27
|
+
|
|
28
|
+
**The basics:**
|
|
29
|
+
|
|
30
|
+
1. Party mode reads `{bmad_folder}/_cfg/agent-manifest.csv`
|
|
31
|
+
2. Loads ALL installed agents (already includes your customizations from install)
|
|
32
|
+
3. BMad Master orchestrates - picks 2-3 relevant agents per message based on topic
|
|
33
|
+
4. Agents respond in character, can agree/disagree/build on each other's ideas
|
|
34
|
+
5. Discussion continues until you type "exit" or reach natural conclusion
|
|
35
|
+
|
|
36
|
+
**That's it.** No complex merging, no runtime magic. Just agents talking.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Quick Start
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Trigger party mode
|
|
44
|
+
/bmad:core:workflows:party-mode
|
|
45
|
+
|
|
46
|
+
# OR from any agent context
|
|
47
|
+
*party-mode
|
|
48
|
+
|
|
49
|
+
# During party
|
|
50
|
+
Ask questions, respond to agents, direct the conversation
|
|
51
|
+
|
|
52
|
+
# Exit
|
|
53
|
+
Type: exit
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Fun Examples
|
|
59
|
+
|
|
60
|
+
### Example 1: Calling Out Bad Architecture
|
|
61
|
+
|
|
62
|
+
**You:** "Okay team, our last sprint was a disaster. The authentication service went down three times. Who screwed this up?"
|
|
63
|
+
|
|
64
|
+
**Architect (Winston):** "The design was sound - distributed authentication with proper fallbacks. If implementation deviated from the spec..."
|
|
65
|
+
|
|
66
|
+
**DEV (Amelia):** "I followed the architecture doc exactly. The spec didn't account for concurrent session invalidation race conditions."
|
|
67
|
+
|
|
68
|
+
**PM (John):** "Both of you missed the bigger issue - we didn't validate session management requirements in the PRD. This is on me for not catching it."
|
|
69
|
+
|
|
70
|
+
**TEA (Murat):** "And I should've caught this in integration tests. The test scenarios didn't cover concurrent invalidation."
|
|
71
|
+
|
|
72
|
+
_(Watch them debate whose fault it really was - it's therapeutic)_
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
### Example 2: Creative Brainstorming
|
|
77
|
+
|
|
78
|
+
**You:** "How do we make onboarding feel magical instead of boring?"
|
|
79
|
+
|
|
80
|
+
**UX Designer (Sally):** "Start with progressive disclosure - reveal features as users need them, not all at once in a tutorial."
|
|
81
|
+
|
|
82
|
+
**Storyteller (CIS):** "What if onboarding was a story? Each step reveals a character's journey - the user IS the hero."
|
|
83
|
+
|
|
84
|
+
**Innovation Strategist (CIS):** "Take it further - gamify with unlockable achievements. But make them meaningful, not arbitrary badges."
|
|
85
|
+
|
|
86
|
+
**Game Designer:** "Building on that - what if the first 'quest' is actually solving a real user problem? They learn by doing something valuable."
|
|
87
|
+
|
|
88
|
+
_(Ideas cross-pollinate and evolve)_
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
### Example 3: Technical Decision
|
|
93
|
+
|
|
94
|
+
**You:** "Monolith or microservices for MVP?"
|
|
95
|
+
|
|
96
|
+
**Architect:** "Start monolith. Microservices add complexity you don't need at 1000 users."
|
|
97
|
+
|
|
98
|
+
**PM:** "Agree. Time to market matters more than theoretical scalability."
|
|
99
|
+
|
|
100
|
+
**DEV:** "Monolith with clear module boundaries. We can extract services later if needed."
|
|
101
|
+
|
|
102
|
+
**Innovation Strategist:** "Contrarian take - if your differentiator IS scalability, build for it now. Otherwise Architect's right."
|
|
103
|
+
|
|
104
|
+
_(Multiple perspectives reveal the right answer)_
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## When NOT to Use Party Mode
|
|
109
|
+
|
|
110
|
+
**Skip party mode for:**
|
|
111
|
+
|
|
112
|
+
- Simple implementation questions → Use DEV agent
|
|
113
|
+
- Document review → Use Technical Writer
|
|
114
|
+
- Workflow status checks → Use any agent + `*workflow-status`
|
|
115
|
+
- Single-domain questions → Use specialist agent
|
|
116
|
+
|
|
117
|
+
**Use party mode for:**
|
|
118
|
+
|
|
119
|
+
- Multi-perspective decisions
|
|
120
|
+
- Creative collaboration
|
|
121
|
+
- Post-mortems and retrospectives
|
|
122
|
+
- Sprint planning sessions
|
|
123
|
+
- Complex problem-solving
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Agent Customization
|
|
128
|
+
|
|
129
|
+
Party mode uses agents from `{bmad_folder}/[module]/agents/*.md` - these already include any customizations you applied during install.
|
|
130
|
+
|
|
131
|
+
**To customize agents for party mode:**
|
|
132
|
+
|
|
133
|
+
1. Create customization file: `{bmad_folder}/_cfg/agents/bmm-pm.customize.yaml`
|
|
134
|
+
2. Run `npx bmad-method install` to rebuild agents
|
|
135
|
+
3. Customizations now active in party mode
|
|
136
|
+
|
|
137
|
+
Example customization:
|
|
138
|
+
|
|
139
|
+
```yaml
|
|
140
|
+
agent:
|
|
141
|
+
persona:
|
|
142
|
+
principles:
|
|
143
|
+
- 'HIPAA compliance is non-negotiable'
|
|
144
|
+
- 'Patient safety over feature velocity'
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
See [Agents Guide](./agents-guide.md#agent-customization) for details.
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## BMM Workflows That Use Party Mode
|
|
152
|
+
|
|
153
|
+
**Current:**
|
|
154
|
+
|
|
155
|
+
- `epic-retrospective` - Post-epic team retrospective powered by party mode
|
|
156
|
+
- Sprint planning discussions (informal party mode usage)
|
|
157
|
+
|
|
158
|
+
**Future:**
|
|
159
|
+
|
|
160
|
+
- Advanced elicitation workflows will officially integrate party mode
|
|
161
|
+
- Multi-agent requirement validation
|
|
162
|
+
- Collaborative technical reviews
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## Available Agents
|
|
167
|
+
|
|
168
|
+
Party mode can include **19+ agents** from all installed modules:
|
|
169
|
+
|
|
170
|
+
**BMM (12 agents):** PM, Analyst, Architect, SM, DEV, TEA, UX Designer, Technical Writer, Game Designer, Game Developer, Game Architect
|
|
171
|
+
|
|
172
|
+
**CIS (5 agents):** Brainstorming Coach, Creative Problem Solver, Design Thinking Coach, Innovation Strategist, Storyteller
|
|
173
|
+
|
|
174
|
+
**BMB (1 agent):** BMad Builder
|
|
175
|
+
|
|
176
|
+
**Core (1 agent):** BMad Master (orchestrator)
|
|
177
|
+
|
|
178
|
+
**Custom:** Any agents you've created
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Tips
|
|
183
|
+
|
|
184
|
+
**Get better results:**
|
|
185
|
+
|
|
186
|
+
- Be specific with your topic/question
|
|
187
|
+
- Provide context (project type, constraints, goals)
|
|
188
|
+
- Direct specific agents when you want their expertise
|
|
189
|
+
- Make decisions - party mode informs, you decide
|
|
190
|
+
- Time box discussions (15-30 minutes is usually plenty)
|
|
191
|
+
|
|
192
|
+
**Examples of good opening questions:**
|
|
193
|
+
|
|
194
|
+
- "We need to decide between REST and GraphQL for our mobile API. Project is a B2B SaaS with 50 enterprise clients."
|
|
195
|
+
- "Our last sprint failed spectacularly. Let's discuss what went wrong with authentication implementation."
|
|
196
|
+
- "Brainstorm: how can we make our game's tutorial feel rewarding instead of tedious?"
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## Troubleshooting
|
|
201
|
+
|
|
202
|
+
**Same agents responding every time?**
|
|
203
|
+
Vary your questions or explicitly request other perspectives: "Game Designer, your thoughts?"
|
|
204
|
+
|
|
205
|
+
**Discussion going in circles?**
|
|
206
|
+
BMad Master will summarize and redirect, or you can make a decision and move on.
|
|
207
|
+
|
|
208
|
+
**Too many agents talking?**
|
|
209
|
+
Make your topic more specific - BMad Master picks 2-3 agents based on relevance.
|
|
210
|
+
|
|
211
|
+
**Agents not using customizations?**
|
|
212
|
+
Make sure you ran `npx bmad-method install` after creating customization files.
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## Related Documentation
|
|
217
|
+
|
|
218
|
+
- [Agents Guide](./agents-guide.md) - Complete agent reference
|
|
219
|
+
- [Quick Start Guide](./quick-start.md) - Getting started with BMM
|
|
220
|
+
- [FAQ](./faq.md) - Common questions
|
|
221
|
+
|
|
222
|
+
---
|
|
223
|
+
|
|
224
|
+
_Better decisions through diverse perspectives. Welcome to party mode._
|