Project Commands (/project:)
Available with Project installation.
| Command | Description |
|---|---|
/project:generate-backlog <Feature> | Generate backlog |
/project:decompose-tasks <Epic> | Break down epic into tasks |
/project:add-epic <Name> | Create a new EPIC |
/project:add-story <Epic> <Name> | Create a User Story |
/project:add-task <US> <Desc> <Est> | Create a task |
/project:list-epics | List all EPICs |
/project:list-stories | List User Stories |
/project:list-tasks | List tasks |
/project:move-task <Task> <Status> | Change task status |
/project:board | Display Kanban board |
/sprint:status | Show sprint metrics |
/project:update-epic <Epic> | Update an EPIC |
/project:update-story <US> | Update a User Story |
/sprint:dev <N|next> | Start TDD/BDD sprint development |
BMAD v6 Commands (NEW)
| Command | Description |
|---|---|
/project:analyze-backlog | Analyze current backlog structure |
/project:migrate-backlog | Convert backlog to BMAD v6 format |
/project:update-stories | Add missing BMAD fields to stories |
/project:sync-backlog | Synchronize backlog files ↔ YAML |
/project:generate-prd | Generate Product Requirements Document |
/project:generate-tech-spec | Generate Technical Specification |
/project:run-epic <ID> | Queue all stories in an epic |
/project:run-queue | Process queued stories |
/project:run-sprint | Execute full sprint |
/project:batch-status | View batch queue status |
SDD v2.0 Commands (NEW)
| Command | Description |
|---|---|
/project:generate-constitution | Generate project constitution document |
/project:trace [--scope] [--id] | Display bidirectional traceability matrix |
/project:coverage-map | Analyze requirement coverage gaps |
/project:scan [--scope] | Analyze codebase and generate structured inventory |
/project:reverse-prd | Generate PRD from existing codebase (brownfield) |
/project:reverse-stories | Generate user stories from existing features |
/project:gap-analysis | Compare specifications with actual code |
/project:checkpoint --phase=<phase> | Run spec verification checkpoints (pre-sprint, pre-impl, post-impl, pre-merge) |
/project:dependencies [--sprint] | Generate story dependency graph (Mermaid) |
/project:critical-path [--sprint] | Identify critical path for sprint optimization |
/project:metrics [--sprint] | Generate project metrics dashboard |
/project:burndown [--sprint] | Generate sprint burndown chart (Mermaid) |
Sprint Development (/sprint:dev)
Orchestrates complete sprint development in TDD/BDD mode:
bash
/sprint:dev 1 # Sprint 1
/sprint:dev next # Next incomplete sprint
/sprint:dev current # Currently active sprintFeatures:
- Mandatory plan mode before each task implementation
- TDD cycle (RED → GREEN → REFACTOR)
- Automatic status updates (Task → User Story → Sprint)
- Progress tracking with metrics
Workflow:
- Load sprint and display board
- For each User Story (by priority):
- Mark US → In Progress
- Display acceptance criteria (Gherkin)
- For each Task (by type: DB → BE → FE → TEST → DOC → REV):
- Plan Mode (mandatory): Analyze code, propose implementation
- TDD Cycle: Write failing tests → Implement → Refactor
- Definition of Done check
- Mark Task → Done with time tracking
- Conventional commit
- When all tasks done → Mark US → Done
- When all US done → Generate sprint review/retro
Control commands during execution:
| Command | Action |
|---|---|
continue | Validate plan and implement |
skip | Skip this task |
block [reason] | Mark as blocked |
stop | Stop (saves state) |