2025-11-02 21:18:33 -06:00
# BMM Planning Workflows (Phase 2)
## 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-26 20:42:20 -06:00
## Phase 2 Planning Workflow Overview
Phase 2 Planning uses a scale-adaptive system with three tracks:
### Quick Flow (Simple Planning)
- Entry: `workflow-init` routes based on project complexity
- Workflow: `tech-spec`
- Output: Technical document with story/epic structure
- Story count: 1-15 (typical)
- Next: Phase 4 (Implementation) - skips Phase 3
### BMad Method (Recommended)
- Entry: `workflow-init` routes based on project complexity
- Workflows: `prd` → (optional) `create-ux-design`
- Output: PRD with FRs/NFRs
- Story count: 10-50+ (typical)
- Next: Phase 3 (Solutioning) → Phase 4
### Enterprise Method
- Planning: Same as BMad Method (`prd` workflow)
- Solutioning: Extended Phase 3 workflows (Architecture + Security + DevOps)
- Story count: 30+ (typical)
- Next: Phase 4
The `correct-course` workflow can be used anytime for significant requirement changes.
2025-11-04 15:02:19 -06:00
---
2025-11-02 21:18:33 -06:00
## Quick Reference
2025-11-26 20:42:20 -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, Enterprise | Strategic PRD with FRs/NFRs (no epic breakdown) | 10-50+ |
| **create-ux-design** | UX Designer | BMad Method, Enterprise | Optional UX specification (after PRD) | 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-26 20:42:20 -06:00
**Always Use:** This is your planning starting point. Don't call prd/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-26 20:42:20 -06:00
### create-ux-design (UX 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
### 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)
2025-11-26 20:42:20 -06:00
- **UX innovation project** → `create-ux-design` + `prd` (BMad Method)
2025-11-05 07:52:08 -06:00
- **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-26 20:42:20 -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) |
| 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-26 20:42:20 -06:00
Planning documents are living. Refine PRDs 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-26 20:42:20 -06:00
Review PRDs 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
2025-11-26 20:42:20 -06:00
4. (Optional) UX Designer: create-ux-design workflow
5. → Phase 3: architecture
2025-11-05 07:52:08 -06:00
```
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
2025-11-26 20:42:20 -06:00
4. → Phase 3: architecture (recommended for focused solution design)
2025-11-05 07:52:08 -06:00
```
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
2025-11-26 20:42:20 -06:00
2. PM: tech-spec workflow
2025-11-05 07:52:08 -06:00
3. → Phase 4: Implementation (skip Phase 3)
```
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?**
2025-11-26 20:42:20 -06:00
A: In Phase 3 (Solutioning), after architecture is complete.
2025-11-05 07:52:08 -06:00
**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._