Overview
Simple Flow uses a single agent (/specsmd-agent) that guides you through all three phases: Requirements, Design, and Tasks.
Invoking the Agent
- Claude Code
- Cursor
- GitHub Copilot
Agent Capabilities
The Simple Flow agent handles:Spec Creation
Generate requirements, design, and task documents from a feature idea
Phase Navigation
Move through Requirements → Design → Tasks with explicit approval gates
Task Execution
Execute implementation tasks one at a time with review
Context Loading
Resume work on existing specs by reading saved documents
Commands
| Command | Description | Example |
|---|---|---|
| Create new spec | Start a new feature spec | /specsmd-agent Create a todo app |
| Continue work | Resume existing spec | /specsmd-agent |
| Resume specific | Work on named spec | /specsmd-agent --spec="todo-app" |
| Next task | Ask what to do next | /specsmd-agent What's the next task? |
| Execute task | Run specific task | /specsmd-agent Execute task 2.1 |
Workflow
1. Create a Spec
- Derives a feature name (
user-dashboard) - Generates
requirements.md - Waits for approval
2. Approve or Revise
To approve: Say “yes”, “approved”, or “looks good” To revise: Provide specific feedback like “Add a requirement for export functionality”3. Progress Through Phases
After approving requirements:- Agent generates
design.md - Wait for approval
- Agent generates
tasks.md - Wait for approval
4. Execute Tasks
Agent Session Lifecycle
Best Practices
Be specific with feature ideas
Be specific with feature ideas
Good: “User auth with email/password and session management”Too vague: “Login feature”The more specific you are, the better the generated specs.
Review each phase carefully
Review each phase carefully
Don’t rush through approvals. The design phase influences task generation, and tasks influence implementation quality.
One task at a time (default)
One task at a time (default)
The agent pauses after each task for review. If you’re confident, say “continue until done” or “go yolo”.
Use checkpoints
Use checkpoints
Checkpoint tasks run the test suite. Don’t skip them—they catch issues early.
Comparison with Other Flows
| Aspect | Simple (1 agent) | FIRE (3 agents) | AI-DLC (4 agents) |
|---|---|---|---|
| Complexity | Single agent handles all | Specialized agents | Highly specialized |
| Phases | Req → Design → Tasks | Plan → Execute | Inception → Construction → Operations |
| Overhead | Minimal | Adaptive | Comprehensive |
| Best for | Quick specs, prototypes | Production work | Complex domains |
