Skip to main content
Agent Teams Lite provides 9 slash commands for managing the Spec-Driven Development workflow. Each command delegates work to specialized sub-agents that operate with fresh context.

Available Commands

/sdd-init

Initialize SDD in your project

/sdd-explore

Investigate ideas and approaches

/sdd-new

Start a new change

/sdd-continue

Run next phase

/sdd-ff

Fast-forward planning

/sdd-apply

Implement tasks

/sdd-verify

Validate implementation

/sdd-archive

Close and archive change

Command Categories

Initialization

  • /sdd-init - Bootstrap SDD in your project. Run this once per project to detect stack and setup persistence.

Planning

  • /sdd-explore - Research and investigate without creating files. Compare approaches, identify risks.
  • /sdd-new - Start a new change. Runs exploration then creates proposal.
  • /sdd-ff - Fast-forward through all planning phases (proposal → specs → design → tasks).
  • /sdd-continue - Run the next phase in the dependency chain.

Implementation

  • /sdd-apply - Write code following specs and design. Supports TDD workflow.

Validation

  • /sdd-verify - Validate implementation against specs. Runs tests and produces compliance matrix.

Completion

  • /sdd-archive - Merge specs and archive the completed change.

Typical Workflows

Full Structured Workflow

Fast Planning Workflow

Exploration Only

Command Characteristics

Sub-Agent Delegation

All SDD commands work by delegating to specialized sub-agents via the Task tool. This architecture keeps the orchestrator lightweight and gives each phase fresh context.

Persistence Modes

All commands respect the configured artifact store mode:
  • engram (recommended) - Artifacts stored in Engram. Zero project files.
  • openspec - Artifacts in openspec/ directory. Full file-based workflow.
  • none - Ephemeral artifacts. Nothing persisted between sessions.
See Artifact Storage for details.

Getting Started

Start with the initialization command:

Initialize SDD

Run /sdd-init to bootstrap SDD in your project