What problem does it solve? When a project has many interdependent tasks, it is hard to know which OPEN tasks are actually ready to start and which are still blocked by unfinished dependencies. This Skill answers "what should I work on next?" by reading the task dependency graph and returning the dispatch frontier. ## Core Features & Use Cases - Dispatch Frontier Computation: Wraps the orchestrator-mcp run_dispatch tool to list OPEN tasks whose dependencies are all DONE, plus blocked tasks with their unmet dependencies. - Dispatch Mode Interpretation: Classifies the result as parallel, sequential, or idle so you know whether tasks can run concurrently or the queue is stalled. - Role Scoping: Optionally filters the frontier to a single owner such as engineer, architect, or tester. - Use Case: After finishing task E-178, run the dispatch check to see that E-179 is now unblocked and ready, instead of manually scanning the task list. ## Quick Start Ask the agent to run the dispatch check and tell you which tasks are ready to start and which are still blocked.