Overview
The/sdd-continue command analyzes the current change state and launches the next appropriate sub-agent based on the dependency graph. It’s designed for step-by-step progression through the SDD workflow.
This command is smart - it detects which artifacts exist and determines the next phase automatically.
Usage
string
Optional. The change to continue. If omitted, continues the most recent active change.
What It Does
1. Checks Current State
Scans for existing artifacts:- ✓
proposal.mdexists? - ✓
specs/directory with spec files? - ✓
design.mdexists? - ✓
tasks.mdexists? - ✓ Tasks marked complete?
- ✓ Verification report exists?
2. Determines Next Phase
Follows the dependency graph:- If only
proposal.mdexists → Launch specs and design sub-agents in parallel - If specs + design exist → Launch tasks sub-agent
- If tasks exist but incomplete → Launch apply sub-agent
- If all tasks complete → Launch verify sub-agent
- If verification passed → Launch archive sub-agent
3. Launches Appropriate Sub-Agent
Delegates to the next phase with fresh context:- Reads all prerequisite artifacts
- Executes phase-specific work
- Returns structured result
4. Reports Progress
Shows:- Phase completed
- Artifacts created
- Next recommended action
Example Usage
Continuing from Proposal to Specs
Continuing from Specs to Tasks
Continuing to Implementation
Dependency Graph
The command follows this exact progression:1
Proposal
Created by
/sdd-new. Must exist before anything else.2
Specs + Design (Parallel)
Both can run simultaneously. No dependency between them.
3
Tasks
Requires both specs AND design to be complete.
4
Apply
Requires tasks. Implements code iteratively.
5
Verify
Requires all tasks complete. Validates implementation.
6
Archive
Requires successful verification. Closes the cycle.
When to Use
Deliberate Progress
When you want to review artifacts between phases
Checkpoint Reviews
Pause for feedback after each phase
Learning the Flow
First time using SDD - see each phase individually
Collaborative Work
Multiple people reviewing artifacts before proceeding
State Detection
The orchestrator checks for artifacts in this order:openspec mode
openspec mode
engram mode
engram mode
none mode
none mode
Tracks state in orchestrator memory only.
Not persistent across sessions.
Parallel Phase Execution
When continuing from proposal,/sdd-continue launches specs and design sub-agents in parallel:
Error Handling
Related Commands
- /sdd-new - Start a change before continuing
- /sdd-ff - Fast-forward through planning phases
- /sdd-apply - Implement tasks
- /sdd-verify - Validate implementation
- /sdd-archive - Archive completed change