| name | sdd-tasks |
| description | Break the technical design into an ordered list of atomic, reviewable implementation tasks. |
| compatibility | opencode |
| when_to_use | After sdd-design. Reads design + spec from memory, produces a task list. |
| allowed-tools | ["Read","mcp__n3rv-memory__memory_recall","mcp__n3rv-memory__memory_save"] |
| model | low |
| effort | low |
| user-invocable | false |
Goal
Decompose the design into the smallest independent tasks that can each be implemented and
reviewed in a single focused session.
Steps
- Load design:
memory_recall(topic_key="sdd-<change_id>-design")
- Load spec:
memory_recall(topic_key="sdd-<change_id>-spec")
- Break work into atomic tasks — each task touches one area and can be verified independently
- Order tasks so earlier tasks unblock later ones
- Save to memory:
Quality Bar
- Each task is independently reviewable (no "and also" tasks)
- Every spec acceptance criterion is covered by at least one task
- "Done when" conditions are testable