sdd-tasks
Dependency-ordered task breakdown for spec-driven development
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Dependency-ordered task breakdown for spec-driven development
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Structured code review
Find and load available skills
PR description generation
Spec-faithful implementation for spec-driven development
Architecture and interface design for spec-driven development
Codebase analysis and context gathering for spec-driven development
| name | sdd-tasks |
| description | Dependency-ordered task breakdown for spec-driven development |
| methodology | sdd |
Break a design into a dependency-ordered list of implementation tasks. Each task must be independently completable and testable.
Identify leaf-level tasks: Find the smallest independently implementable units.
Identify dependencies: Map which tasks depend on others.
Build a dependency graph: Visualize the execution order.
Task 1 (no deps)
Task 2 (no deps)
Task 3 (depends: Task 1)
Task 4 (depends: Task 1, Task 2)
Task 5 (depends: Task 3, Task 4)
Group into phases: Batch independent tasks for parallel execution.
Estimate effort: Assign complexity to each task.
Write acceptance criteria per task: Each task needs a clear done condition.
## Task Plan: <feature name>
### Dependency Graph
```
Task 1: [S] Depends on: none Done when:
Task 2: [M] Depends on: none Done when:
| Phase | Tasks | Effort |
|---|---|---|
| 1 | 2 | S+M |
| 2 | 1 | M |
| Total | 3 | ~3-4 hrs |