What problem does it solve?
This Skill prevents mismatched task files, premature acceptance, and incorrect project progress by standardizing how Leader-owned task specs are created, how Worker results are validated, and how plan markers are updated.
Core Features & Use Cases
- Task delegation for ready DAG/Loop nodes: Delegates only nodes returned by the project plan (DAG via ready_nodes, Loop via ready_loop_nodes), writes Leader-owned meta.json/spec.md, and updates plan markers from pending to delegated.
- Result checking with a strict contract: Checks a Worker’s submitted result (via check_task) and validates status/SUMMARY/DELIVERABLES against the expected protocol so downstream dependencies only advance after acceptance.
- Project-safe control flow: Handles BLOCKED/REVISION_NEEDED/INTERRUPTED outcomes without incorrectly completing nodes, and enforces stop behavior when the project is paused to avoid invalid state transitions.
- Ownership enforcement: Clearly separates what the Leader owns (task meta/spec) versus what the Worker owns (workspace, deliverables, result.md) and forbids Worker edits to project-level files.
Quick Start
Use task-management before any Leader taskflow call involving delegate_task or check_task, when handling task result statuses like SUCCESS, REVISION_NEEDED, BLOCKED, or INTERRUPTED.