Skip to content

Latest commit

Β 

History

History
65 lines (46 loc) Β· 2.62 KB

File metadata and controls

65 lines (46 loc) Β· 2.62 KB

Process Guide

πŸ“ You are here: Main Guide β†’ Process Guide

Quick Navigation


Step-by-step walkthrough of the three-phase spec-driven development workflow.

In This Section

The Three-Phase Workflow

stateDiagram-v2
  [*] --> Requirements : Start with user needs
  Requirements --> Design : Requirements approved
  Design --> Tasks : Design approved
  Tasks --> [*] : Ready for implementation
  
  Requirements --> Requirements : Iterate based on feedback
  Design --> Design : Refine design
  Tasks --> Tasks : Adjust task breakdown
Loading

Each phase builds upon the previous one, with explicit approval gates to ensure quality and alignment before proceeding.

Phase Overview

  1. Requirements - Transform rough ideas into structured, testable requirements
  2. Design - Research and architect a comprehensive solution
  3. Tasks - Create an actionable implementation plan with discrete coding steps

πŸ”— Related Content

Prerequisites

Next Steps

Related Sections

← Back to Main Guide | Start with Requirements β†’