2025-11-02 21:18:33 -06:00
# BMM Planning Workflows (Phase 2)
2025-11-05 07:52:08 -06:00
**Reading Time:** ~10 minutes
2025-11-02 21:18:33 -06:00
## Overview
2025-11-05 07:52:08 -06:00
Phase 2 (Planning) workflows are **required** for all projects. They transform strategic vision into actionable requirements using a **scale-adaptive system** that automatically selects the right planning depth based on project complexity.
**Key principle:** One unified entry point (`workflow-init` ) intelligently routes to the appropriate planning methodology - from quick tech-specs to comprehensive PRDs.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to use:** All projects require planning. The system adapts depth automatically based on complexity.
2025-11-02 21:18:33 -06:00
2025-11-04 15:02:19 -06:00
---
2025-11-05 07:52:08 -06:00
## Phase 2 Planning Workflow Map
2025-11-04 15:02:19 -06:00
```mermaid
%%{init: {'theme':'base', 'themeVariables': { 'primaryColor':'#fff ','primaryTextColor':'#000 ','primaryBorderColor':'#000 ','lineColor':'#000 ','fontSize':'16px','fontFamily':'arial'}}}%%
graph TB
2025-11-05 07:52:08 -06:00
Start["< b > START: workflow-init< / b > < br / > Discovery + routing"]
2025-11-04 15:02:19 -06:00
2025-11-05 07:52:08 -06:00
subgraph QuickFlow["< b > QUICK FLOW (Simple Planning)< / b > "]
direction TB
TechSpec["< b > PM: tech-spec< / b > < br / > Technical document< br / > → Story or Epic+Stories< br / > 1-15 stories typically"]
2025-11-04 15:02:19 -06:00
end
2025-11-05 07:52:08 -06:00
subgraph BMadMethod["< b > BMAD METHOD (Recommended)< / b > "]
direction TB
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
PRD["< b > PM: prd< / b > < br / > Strategic PRD with FRs/NFRs"]
2025-11-05 07:52:08 -06:00
GDD["< b > Game Designer: gdd< / b > < br / > Game design doc"]
2025-11-04 15:02:19 -06:00
Narrative["< b > Game Designer: narrative< / b > < br / > Story-driven design"]
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
UXDesign["< b > UX Designer: create-ux-design< / b > < br / > Optional UX specification"]
end
2025-11-05 07:52:08 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
subgraph Solutioning["< b > PHASE 3: SOLUTIONING< / b > "]
direction TB
Architecture["< b > Architect: architecture< / b > < br / > System design + decisions"]
Epics["< b > PM: create-epics-and-stories< / b > < br / > Epic+Stories breakdown< br / > (10-50+ stories typically)"]
2025-11-05 07:52:08 -06:00
end
subgraph Enterprise["< b > ENTERPRISE METHOD< / b > "]
direction TB
EntNote["< b > Uses BMad Method Planning< / b > < br / > +< br / > Extended Phase 3 workflows< br / > (Architecture + Security + DevOps)< br / > 30+ stories typically"]
2025-11-04 15:02:19 -06:00
end
2025-11-05 07:52:08 -06:00
subgraph Updates["< b > MID-STREAM UPDATES (Anytime)< / b > "]
direction LR
CorrectCourse["< b > PM/SM: correct-course< / b > < br / > Update requirements/stories"]
2025-11-04 15:02:19 -06:00
end
2025-11-05 07:52:08 -06:00
Start -->|Bug fix, simple| QuickFlow
Start -->|Software product| PRD
Start -->|Game project| GDD
Start -->|Story-driven| Narrative
Start -->|Enterprise needs| Enterprise
2025-11-04 15:02:19 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
PRD -.->|Optional| UXDesign
GDD -.->|Optional| UXDesign
Narrative -.->|Optional| UXDesign
PRD --> Architecture
GDD --> Architecture
Narrative --> Architecture
UXDesign --> Architecture
Architecture --> Epics
2025-11-04 15:02:19 -06:00
QuickFlow --> Phase4["< b > Phase 4: Implementation< / b > "]
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
Epics --> ReadinessCheck["< b > Architect: implementation-readiness< / b > < br / > Gate check"]
Enterprise -.->|Uses BMad planning| Architecture
2025-11-05 07:52:08 -06:00
Enterprise --> Phase3Ext["< b > Phase 3: Extended< / b > < br / > (Arch + Sec + DevOps)"]
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
ReadinessCheck --> Phase4
2025-11-05 07:52:08 -06:00
Phase3Ext --> Phase4
2025-11-04 15:02:19 -06:00
Phase4 -.->|Significant changes| CorrectCourse
CorrectCourse -.->|Updates| Epics
2025-11-05 07:52:08 -06:00
style Start fill:#fff9c4 ,stroke:#f57f17 ,stroke-width:3px,color:#000
2025-11-04 15:02:19 -06:00
style QuickFlow fill:#c5e1a5 ,stroke:#33691e ,stroke-width:3px,color:#000
2025-11-05 07:52:08 -06:00
style BMadMethod fill:#e1bee7 ,stroke:#6a1b9a ,stroke-width:3px,color:#000
style Enterprise fill:#ffcdd2 ,stroke:#c62828 ,stroke-width:3px,color:#000
style Updates fill:#ffecb3 ,stroke:#ff6f00 ,stroke-width:3px,color:#000
2025-11-04 15:02:19 -06:00
style Phase3 fill:#90caf9 ,stroke:#0d47a1 ,stroke-width:2px,color:#000
style Phase4 fill:#ffcc80 ,stroke:#e65100 ,stroke-width:2px,color:#000
style TechSpec fill:#aed581 ,stroke:#1b5e20 ,stroke-width:2px,color:#000
style PRD fill:#ce93d8 ,stroke:#4a148c ,stroke-width:2px,color:#000
style GDD fill:#ce93d8 ,stroke:#4a148c ,stroke-width:2px,color:#000
style Narrative fill:#ce93d8 ,stroke:#4a148c ,stroke-width:2px,color:#000
style UXDesign fill:#ce93d8 ,stroke:#4a148c ,stroke-width:2px,color:#000
style Epics fill:#ba68c8 ,stroke:#6a1b9a ,stroke-width:3px,color:#000
2025-11-05 07:52:08 -06:00
style EntNote fill:#ef9a9a ,stroke:#c62828 ,stroke-width:2px,color:#000
style Phase3Ext fill:#ef5350 ,stroke:#c62828 ,stroke-width:2px,color:#000
style CorrectCourse fill:#ffb74d ,stroke:#ff6f00 ,stroke-width:2px,color:#000
2025-11-04 15:02:19 -06:00
```
---
2025-11-02 21:18:33 -06:00
## Quick Reference
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
| Workflow | Agent | Track | Purpose | Typical Stories |
| ---------------------------- | ------------- | ----------- | --------------------------------------------------------- | --------------- |
| **workflow-init** | PM/Analyst | All | Entry point: discovery + routing | N/A |
| **tech-spec** | PM | Quick Flow | Technical document → Story or Epic+Stories | 1-15 |
| **prd** | PM | BMad Method | Strategic PRD with FRs/NFRs (no epic breakdown) | 10-50+ |
| **gdd** | Game Designer | BMad Method | Game Design Document with requirements | 10-50+ |
| **narrative** | Game Designer | BMad Method | Story-driven game/experience design | 10-50+ |
| **create-ux-design** | UX Designer | BMad Method | Optional UX specification (after PRD) | N/A |
| **create-epics-and-stories** | PM | BMad Method | Break requirements into Epic+Stories (AFTER architecture) | N/A |
| **correct-course** | PM/SM | All | Mid-stream requirement changes | N/A |
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Note:** Story counts are guidance. V6 improvement: Epic+Stories are created AFTER architecture for better quality.
2025-11-04 15:02:19 -06:00
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
## Scale-Adaptive Planning System
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
BMM uses three distinct planning tracks that adapt to project complexity:
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Track 1: Quick Flow
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Best For:** Bug fixes, simple features, clear scope, enhancements
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Planning:** Tech-spec only → Implementation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Time:** Hours to 1 day
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Story Count:** Typically 1-15 (guidance)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Documents:** tech-spec.md + story files
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** "Fix authentication bug", "Add OAuth social login"
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
### Track 2: BMad Method (RECOMMENDED)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Best For:** Products, platforms, complex features, multiple epics
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Planning:** PRD + Architecture → Implementation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Time:** 1-3 days
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Story Count:** Typically 10-50+ (guidance)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Documents:** PRD.md (FRs/NFRs) + architecture.md + epics.md + epic files
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Greenfield:** Product Brief (optional) → PRD (FRs/NFRs) → UX (optional) → Architecture → Epics+Stories → Implementation
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Brownfield:** document-project → PRD (FRs/NFRs) → Architecture (recommended) → Epics+Stories → Implementation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** "Customer dashboard", "E-commerce platform", "Add search to existing app"
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Why Architecture for Brownfield?** Distills massive codebase context into focused solution design for your specific project.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Track 3: Enterprise Method
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Best For:** Enterprise requirements, multi-tenant, compliance, security-sensitive
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Planning (Phase 2):** Uses BMad Method planning (PRD with FRs/NFRs)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Solutioning (Phase 3):** Extended workflows (Architecture + Security + DevOps + SecOps as optional additions) → Epics+Stories
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Time:** 3-7 days total (1-3 days planning + 2-4 days extended solutioning)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Story Count:** Typically 30+ (but defined by enterprise needs)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Documents Phase 2:** PRD.md (FRs/NFRs)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Documents Phase 3:** architecture.md + epics.md + epic files + security-architecture.md (optional) + devops-strategy.md (optional) + secops-strategy.md (optional)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** "Multi-tenant SaaS", "HIPAA-compliant portal", "Add SOC2 audit logging"
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## How Track Selection Works
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
`workflow-init` guides you through educational choice:
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
1. **Description Analysis** - Analyzes project description for complexity
2. **Educational Presentation** - Shows all three tracks with trade-offs
3. **Recommendation** - Suggests track based on keywords and context
4. **User Choice** - You select the track that fits
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
The system guides but never forces. You can override recommendations.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## Workflow Descriptions
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### workflow-init (Entry Point)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** Single unified entry point for all planning. Discovers project needs and intelligently routes to appropriate track.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** PM (orchestrates others as needed)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Always Use:** This is your planning starting point. Don't call prd/gdd/tech-spec directly unless skipping discovery.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Process:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
1. Discovery (understand context, assess complexity, identify concerns)
2. Routing Decision (determine track, explain rationale, confirm)
3. Execute Target Workflow (invoke planning workflow, pass context)
4. Handoff (document decisions, recommend next phase)
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
### tech-spec (Quick Flow)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** Lightweight technical specification for simple changes (Quick Flow track). Produces technical document and story or epic+stories structure.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** PM
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
- Bug fixes
- Single API endpoint additions
- Configuration changes
- Small UI component additions
- Isolated validation rules
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- **tech-spec.md** - Technical document containing:
- Problem statement and solution
- Source tree changes
- Implementation details
- Testing strategy
- Acceptance criteria
- **Story file(s)** - Single story OR epic+stories structure (1-15 stories typically)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Skip To Phase:** 4 (Implementation) - no Phase 3 architecture needed
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** "Fix null pointer when user has no profile image" → Single file change, null check, unit test, no DB migration.
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
### prd (Product Requirements Document)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Purpose:** Strategic PRD with Functional Requirements (FRs) and Non-Functional Requirements (NFRs) for software products (BMad Method track).
2025-11-02 21:18:33 -06:00
**Agent:** PM (with Architect and Analyst support)
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
- Medium to large feature sets
- Multi-screen user experiences
- Complex business logic
- Multiple system integrations
- Phased delivery required
2025-11-05 07:52:08 -06:00
**Scale-Adaptive Structure:**
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
- **Light:** Focused FRs/NFRs, simplified analysis (10-15 pages)
- **Standard:** Comprehensive FRs/NFRs, thorough analysis (20-30 pages)
- **Comprehensive:** Extensive FRs/NFRs, multi-phase, stakeholder analysis (30-50+ pages)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
- PRD.md (complete requirements with FRs and NFRs)
**Note:** V6 improvement - PRD focuses on WHAT to build (requirements). Epic+Stories are created AFTER architecture via `create-epics-and-stories` workflow for better quality.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Integration:** Feeds into Architecture (Phase 3)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Example:** E-commerce checkout → PRD with 15 FRs (user account, cart management, payment flow) and 8 NFRs (performance, security, scalability).
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
### gdd (Game Design Document)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** Complete game design document for game projects (BMad Method track).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** Game Designer
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- Designing any game (any genre)
2025-11-02 21:18:33 -06:00
- Need comprehensive design documentation
- Team needs shared vision
- Publisher/stakeholder communication
2025-11-05 07:52:08 -06:00
**BMM GDD vs Traditional:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- Scale-adaptive detail (not waterfall)
2025-11-02 21:18:33 -06:00
- Agile epic structure
2025-11-05 07:52:08 -06:00
- Direct handoff to implementation
2025-11-02 21:18:33 -06:00
- Integrated with testing workflows
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- GDD.md (complete game design)
- Epic breakdown (Core Loop, Content, Progression, Polish)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Integration:** Feeds into Architecture (Phase 3)
**Example:** Roguelike card game → Core concept (Slay the Spire meets Hades), 3 characters, 120 cards, 50 enemies, Epic breakdown with 26 stories.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### narrative (Narrative Design)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** Story-driven design workflow for games/experiences where narrative is central (BMad Method track).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** Game Designer (Narrative Designer persona) + Creative Problem Solver (CIS)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- Story is central to experience
2025-11-02 21:18:33 -06:00
- Branching narrative with player choices
- Character-driven games
- Visual novels, adventure games, RPGs
2025-11-05 07:52:08 -06:00
**Combine with GDD:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
1. Run `narrative` first (story structure)
2. Then run `gdd` (integrate story with gameplay)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- narrative-design.md (complete narrative spec)
- Story structure (acts, beats, branching)
- Characters (profiles, arcs, relationships)
2025-11-02 21:18:33 -06:00
- Dialogue system design
2025-11-05 07:52:08 -06:00
- Implementation guide
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Integration:** Combine with GDD, then feeds into Architecture (Phase 3)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** Choice-driven RPG → 3 acts, 12 chapters, 5 choice points, 3 endings, 60K words, 40 narrative scenes.
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
### ux (UX-First Design)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** UX specification for projects where user experience is the primary differentiator (BMad Method track).
2025-11-02 21:18:33 -06:00
**Agent:** UX Designer
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- UX is primary competitive advantage
2025-11-02 21:18:33 -06:00
- Complex user workflows needing design thinking
- Innovative interaction patterns
- Design system creation
- Accessibility-critical experiences
2025-11-05 07:52:08 -06:00
**Collaborative Approach:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
1. Visual exploration (generate multiple options)
2. Informed decisions (evaluate with user needs)
3. Collaborative design (refine iteratively)
4. Living documentation (evolves with project)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- ux-spec.md (complete UX specification)
- User journeys
- Wireframes and mockups
- Interaction specifications
- Design system (components, patterns, tokens)
- Epic breakdown (UX stories)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Integration:** Feeds PRD or updates epics, then Architecture (Phase 3)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Example:** Dashboard redesign → Card-based layout with split-pane toggle, 5 card components, 12 color tokens, responsive grid, 3 epics (Layout, Visualization, Accessibility).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### create-epics-and-stories
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**Purpose:** Break requirements into bite-sized stories organized in epics (BMad Method track).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** PM
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
- **REQUIRED:** After Architecture workflow is complete (Phase 3)
- After PRD defines FRs/NFRs and Architecture defines HOW to build
- Optional: Can also run earlier (after PRD, after UX) for basic structure, then refined after Architecture
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Key Outputs:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- epics.md (all epics with story breakdown)
- Epic files (epic-1-\*.md, etc.)
2025-11-02 21:18:33 -06:00
refactor: Major v6 epic creation improvements and documentation overhaul
## Key Changes
### 1. Epic Creation Workflow Enhancements
- Added user-value focused epic structure principles (NO technical layer breakdown)
- Implemented multi-mode detection: CONTINUE, REPLACE, or UPDATE existing epics
- Added comprehensive anti-pattern examples showing wrong vs right epic breakdown
- Epics now created AFTER architecture for technically-informed story breakdown
- Added checkpoint protocol for interactive workflow progression
### 2. Removed Deprecated Solutioning Gate Check
- Deleted entire solutioning-gate-check workflow (682 lines)
- Replaced by new implementation-readiness workflow
- Cleaner separation of concerns in solutioning phase
### 3. PRD Template Simplification
- Removed hardcoded "Implementation Planning", "References", and "Next Steps" sections
- PRD now focuses purely on requirements, not workflow orchestration
- Epics/stories created as separate step after architecture
### 4. Documentation Overhaul (15+ docs updated)
- Updated quick-start guide with v6 workflow sequence
- Clarified that epics are created AFTER architecture, not during PRD
- Updated solutioning docs to reflect implementation-readiness pattern
- Improved agents-guide, brownfield-guide, enterprise docs
- Enhanced glossary, FAQ, and workflow reference documentation
### 5. Workflow Path Adjustments
- All 4 paths updated (enterprise/method × brownfield/greenfield)
- Version bumps across BMGD, BMM, and CIS workflow YAMLs
- Minor instruction file updates for consistency
### Files Changed
- 65 files total: 468 insertions, 978 deletions (net reduction of 510 lines)
- 4 files deleted (entire solutioning-gate-check workflow)
- 1 new directory added (implementation-readiness placeholder)
2025-11-16 00:23:47 -06:00
**V6 Improvement:** Epics+Stories are now created AFTER architecture for better quality:
- Architecture decisions inform story breakdown (tech choices affect implementation)
- Stories have full context (PRD + UX + Architecture)
- Better sequencing with technical dependencies considered
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### correct-course
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Purpose:** Handle significant requirement changes during implementation (all tracks).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Agent:** PM, Architect, or SM
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**When to Use:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- Priorities change mid-project
- New requirements emerge
- Scope adjustments needed
- Technical blockers require replanning
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Process:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
1. Analyze impact of change
2. Propose solutions (continue, pivot, pause)
3. Update affected documents (PRD, epics, stories)
4. Re-route for implementation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Integration:** Updates planning artifacts, may trigger architecture review
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## Decision Guide
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Which Planning Workflow?
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Use `workflow-init` (Recommended):** Let the system discover needs and route appropriately.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Direct Selection (Advanced):**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- **Bug fix or single change** → `tech-spec` (Quick Flow)
- **Software product** → `prd` (BMad Method)
- **Game (gameplay-first)** → `gdd` (BMad Method)
- **Game (story-first)** → `narrative` + `gdd` (BMad Method)
- **UX innovation project** → `ux` + `prd` (BMad Method)
- **Enterprise with compliance** → Choose track in `workflow-init` → Enterprise Method
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## Integration with Phase 3 (Solutioning)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Planning outputs feed into Solutioning:
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
| Planning Output | Solutioning Input | Track Decision |
| ------------------- | ------------------------------------ | ---------------------------- |
| tech-spec.md | Skip Phase 3 → Phase 4 directly | Quick Flow (no architecture) |
| PRD.md | **architecture** (Level 3-4) | BMad Method (recommended) |
| GDD.md | **architecture** (game tech) | BMad Method (recommended) |
| narrative-design.md | **architecture** (narrative systems) | BMad Method |
| ux-spec.md | **architecture** (frontend design) | BMad Method |
| Enterprise docs | **architecture** + security/ops | Enterprise Method (required) |
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Key Decision Points:**
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- **Quick Flow:** Skip Phase 3 entirely → Phase 4 (Implementation)
- **BMad Method:** Optional Phase 3 (simple), Required Phase 3 (complex)
- **Enterprise:** Required Phase 3 (architecture + extended planning)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
See: [workflows-solutioning.md ](./workflows-solutioning.md )
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## Best Practices
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 1. Always Start with workflow-init
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Let the entry point guide you. It prevents over-planning simple features or under-planning complex initiatives.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 2. Trust the Recommendation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
If `workflow-init` suggests BMad Method, there's likely complexity you haven't considered. Review carefully before overriding.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 3. Iterate on Requirements
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Planning documents are living. Refine PRDs/GDDs as you learn during Solutioning and Implementation.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 4. Involve Stakeholders Early
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Review PRDs/GDDs with stakeholders before Solutioning. Catch misalignment early.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 5. Focus on "What" Not "How"
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Planning defines **what** to build and **why** . Leave **how** (technical design) to Phase 3 (Solutioning).
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### 6. Document-Project First for Brownfield
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
Always run `document-project` before planning brownfield projects. AI agents need existing codebase context.
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
## Common Patterns
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Greenfield Software (BMad Method)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
```
1. (Optional) Analysis: product-brief, research
2. workflow-init → routes to prd
3. PM: prd workflow
4. (Optional) UX Designer: ux workflow
5. PM: create-epics-and-stories (may be automatic)
6. → Phase 3: architecture
```
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Brownfield Software (BMad Method)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
```
1. Technical Writer or Analyst: document-project
2. workflow-init → routes to prd
3. PM: prd workflow
4. PM: create-epics-and-stories
5. → Phase 3: architecture (recommended for focused solution design)
```
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Bug Fix (Quick Flow)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
```
1. workflow-init → routes to tech-spec
2. Architect: tech-spec workflow
3. → Phase 4: Implementation (skip Phase 3)
```
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Game Project (BMad Method)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
```
1. (Optional) Analysis: game-brief, research
2. workflow-init → routes to gdd
3. Game Designer: gdd workflow (or narrative + gdd if story-first)
4. Game Designer creates epic breakdown
5. → Phase 3: architecture (game systems)
```
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
### Enterprise Project (Enterprise Method)
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
```
1. (Recommended) Analysis: research (compliance, security)
2. workflow-init → routes to Enterprise Method
3. PM: prd workflow
4. (Optional) UX Designer: ux workflow
5. PM: create-epics-and-stories
6. → Phase 3: architecture + security + devops + test strategy
```
2025-11-02 21:18:33 -06:00
---
## Common Anti-Patterns
### ❌ Skipping Planning
"We'll just start coding and figure it out."
2025-11-05 07:52:08 -06:00
**Result:** Scope creep, rework, missed requirements
2025-11-02 21:18:33 -06:00
### ❌ Over-Planning Simple Changes
"Let me write a 20-page PRD for this button color change."
2025-11-05 07:52:08 -06:00
**Result:** Wasted time, analysis paralysis
2025-11-02 21:18:33 -06:00
### ❌ Planning Without Discovery
"I already know what I want, skip the questions."
2025-11-05 07:52:08 -06:00
**Result:** Solving wrong problem, missing opportunities
2025-11-02 21:18:33 -06:00
### ❌ Treating PRD as Immutable
"The PRD is locked, no changes allowed."
2025-11-05 07:52:08 -06:00
**Result:** Ignoring new information, rigid planning
2025-11-02 21:18:33 -06:00
### ✅ Correct Approach
2025-11-05 07:52:08 -06:00
- Use scale-adaptive planning (right depth for complexity)
2025-11-02 21:18:33 -06:00
- Involve stakeholders in review
- Iterate as you learn
- Keep planning docs living and updated
2025-11-05 07:52:08 -06:00
- Use `correct-course` for significant changes
2025-11-02 21:18:33 -06:00
---
2025-11-05 07:52:08 -06:00
## Related Documentation
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
- [Phase 1: Analysis Workflows ](./workflows-analysis.md ) - Optional discovery phase
- [Phase 3: Solutioning Workflows ](./workflows-solutioning.md ) - Next phase
- [Phase 4: Implementation Workflows ](./workflows-implementation.md )
- [Scale Adaptive System ](./scale-adaptive-system.md ) - Understanding the three tracks
- [Quick Spec Flow ](./quick-spec-flow.md ) - Quick Flow track details
- [Agents Guide ](./agents-guide.md ) - Complete agent reference
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
---
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
## Troubleshooting
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Q: Which workflow should I run first?**
A: Run `workflow-init` . It analyzes your project and routes to the right planning workflow.
2025-11-02 21:18:33 -06:00
2025-11-05 07:52:08 -06:00
**Q: Do I always need a PRD?**
A: No. Simple changes use `tech-spec` (Quick Flow). Only BMad Method and Enterprise tracks create PRDs.
**Q: Can I skip Phase 3 (Solutioning)?**
A: Yes for Quick Flow. Optional for BMad Method (simple projects). Required for BMad Method (complex projects) and Enterprise.
**Q: How do I know which track to choose?**
A: Use `workflow-init` - it recommends based on your description. Story counts are guidance, not definitions.
**Q: What if requirements change mid-project?**
A: Run `correct-course` workflow. It analyzes impact and updates planning artifacts.
**Q: Do brownfield projects need architecture?**
A: Recommended! Architecture distills massive codebase into focused solution design for your specific project.
**Q: When do I run create-epics-and-stories?**
A: Usually automatic during PRD/GDD. Can also run standalone later to regenerate epics.
**Q: Should I use product-brief before PRD?**
A: Optional but recommended for greenfield. Helps strategic thinking. `workflow-init` offers it based on context.
---
_Phase 2 Planning - Scale-adaptive requirements for every project._