Generate sprint-based development tasks from a PRD. Use when asked to create tasks or break down requirements. Don't use for PRD/TAD authoring or task execution.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Generate sprint-based development tasks from a PRD. Use when asked to create tasks or break down requirements. Don't use for PRD/TAD authoring or task execution.
agents/sprint-planner.md — Defines sprint scope (POC, MVP, full features), produces sprint plan
agents/sprint-worker.md — Generates tasks for ONE sprint (runs in parallel, one per sprint)
agents/dependency-resolver.md — Wires cross-sprint dependencies, produces final tasks.md
Key Insight: Per-sprint task generation is parallelizable. Large PRDs produce 30-80 tasks across 4+ sprints. Sprint tasks are not fully independent — Sprint 2 depends on Sprint 1 output — so the dependency-resolver does a final pass to wire cross-sprint relationships.
Repo Sync Before Edits (mandatory)
Before creating/updating/deleting files in an existing repository, sync the current branch with remote:
Adapt the check names to match what the step actually validates. Use √ for pass, × for fail, and — to add brief context. The "Criteria" line summarizes how many acceptance criteria were met. The "Result" line gives the overall verdict.
Requirements phase checks:PRD parsed, Features extracted, Constraints identified
Next steps: Review Sprint 1 and Wave 1 tasks first
Acceptance Criteria
The skill run is considered successful only if ALL of the following hold:
tasks.md exists in the same directory as the input PRD.
tasks.md contains at least 3 sprints (POC, MVP Foundation, MVP Completion at minimum).
Each sprint contains at least 3 tasks; total task count is between 15 and 80.
Every task includes ALL of: Description, Acceptance Criteria (>=2 testable items), Dependencies (explicit None or task IDs), PRD Reference, and an effort estimate (e.g., Effort: 1-3 days or S/M/L).
Every task ID follows the Task <sprint>.<index> pattern (e.g., Task 1.1, Task 2.3).
A dependency table is present and references only tasks that exist in the file (no broken IDs).
No circular dependencies (see Phase 4).
At least one task per PRD requirement; ambiguous PRD items are flagged in a dedicated section.
Critical path is identified and stated explicitly.
If a prior tasks.md existed, a tasks_backup_YYYY_MM_DD_HHMMSS.md file is created.
Final report includes GitHub links to tasks.md (and README.md if updated) plus the commit hash.
If any criterion fails, the skill must report it as a FAIL row in the Step Completion Report and not claim success.
Expected Output
The skill produces tasks.md next to the PRD, plus a final agent message with GitHub links and commit hash. See references/tasks-template.md for the full reviewable shape, dependency table, critical path, and final-message format. See references/self-test.md for the pre-success self-test checklist.