Prompt file imported from yhyu13/AgentHarness101 (
.codex/prompts/tasks.md). Copyright stays with the author.
Generate the numbered task breakdown from the active plan.
- Read the active spec id:
openwolf spec status. Loadspecs/<id>/plan.md,specs/<id>/data-model.md, andspecs/<id>/contracts/. - Write
specs/<id>/tasks.mdusing.wolf/spec-templates/tasks-template.md:- T001-T099 setup, T100-T199 tests (MUST fail first), T200-T299 core implementation, T300-T399 integration, T400-T499 polish.
- Mark independent tasks
[P]; mark dependencies with←(depends on) and→(unlocks). - Phase gates: every test task precedes its implementation; no implementation task before its failing test; integration only after green.
- Advance the phase:
openwolf spec phase tasks. - Report the critical path, parallel groups, and the TDD gates.
Guardrail: each task names an exact file path; two [P] tasks never modify the
same file.