What problem does it solve? Managing multi-step feature implementations across subagents is error-prone: tasks get lost, dependencies are unclear, and progress is hard to measure. This Skill provides a CLI that reads task JSON files created by the TaskManager subagent and gives you status, readiness, blocking, and validation views. ## Core Features & Use Cases - Progress Tracking: Run status to see per-feature completion percentages and counts of pending, in-progress, completed, and blocked subtasks. - Dependency-Aware Scheduling: Use next, parallel, deps, and blocked to find which subtasks are ready to run, which can run in parallel, and what is blocking others. - Integrity Validation: The validate command checks required fields, sequence uniqueness, dependency references, and circular dependency detection across all task JSON files. - Use Case: After TaskManager breaks a feature into subtasks in .tmp/tasks/, delegate subtasks to coding agents, mark each complete with a summary, and monitor overall progress until the feature's exit criteria are met. ## Quick Start Ask the assistant to show the next eligible tasks for your feature by running the task-management router's next command from the project root.