sdd-tasks
Dependency-ordered task breakdown for spec-driven development
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Dependency-ordered task breakdown for spec-driven development
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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 |