Skip to main content

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.md exists?
  • specs/ directory with spec files?
  • design.md exists?
  • tasks.md exists?
  • ✓ Tasks marked complete?
  • ✓ Verification report exists?

2. Determines Next Phase

Follows the dependency graph:
  • If only proposal.md exists → 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

Output:

Continuing from Specs to Tasks

Output:

Continuing to Implementation

Output:

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
Use /sdd-ff instead of repeated /sdd-continue if you want to fast-forward through planning phases.

State Detection

The orchestrator checks for artifacts in this order:
Reads files to determine completion.
Searches Engram observations by topic_key.
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:
This saves time since specs and design have no dependency on each other.

Error Handling

If no active change is found:
If multiple changes are active:
If change is already complete: