Skip to content
🤖 Consolidated, AI-optimized BMAD docs: llms-full.txt. Fetch this plain text file for complete context.
🚀 Build your own BMad modules and share them with the community! Get started or submit to the marketplace.

Why Solutioning Matters

Phase 3 (Solutioning) translates what to build (from Planning) into how to build it (technical design). This phase prevents agent conflicts in multi-epic projects by documenting architectural decisions before implementation begins.

Agent 1 implements Epic 1 using REST API
Agent 2 implements Epic 2 using GraphQL
Result: Inconsistent API design, integration nightmare

When multiple agents implement different parts of a system without shared architectural guidance, they make independent technical decisions that may conflict.

architecture workflow decides: "Use GraphQL for all APIs"
All agents follow architecture decisions
Result: Consistent implementation, no conflicts

By documenting technical decisions explicitly, all agents implement consistently and integration becomes straightforward.

AspectPlanning (Phase 2)Solutioning (Phase 3)
QuestionWhat and Why?How? Then What units of work?
OutputFRs/NFRs (Requirements)Architecture + Epics/Stories
AgentPMArchitect → PM
AudienceStakeholdersDevelopers
DocumentPRD (FRs/NFRs)Architecture + Epic Files
LevelBusiness logicTechnical design + Work breakdown

Make technical decisions explicit and documented so all agents implement consistently.

This prevents:

  • API style conflicts (REST vs GraphQL)
  • Database design inconsistencies
  • State management disagreements
  • Naming convention mismatches
  • Security approach variations
Work characteristicsSolutioning guidance
Clear, local change with established patternsUsually unnecessary
Several related components with known constraintsOptional, based on coordination risk
Multiple epics or cross-system decisionsNeeded to align implementation
Regulated, high-risk, or enterprise initiativeFollow required governance; solutioning is normally required

Solutioning changes the context available to bmad-build; it does not change the implementation workflow.

Skipping solutioning on complex projects leads to:

  • Integration issues discovered mid-sprint
  • Rework due to conflicting implementations
  • Longer development time overall
  • Technical debt from inconsistent patterns