Groundcrew task decomposer. Breaks any request into queued groundcrew tasks with auto-chained dependencies. Supports skill invocations (/skill-name args), plain text tasks, and mixed pipelines. Use when: "dispatch", "queue tasks", "break this into steps", or invoking /dispatch.
Breaks any request into groundcrew queue items with auto-chained dependencies. Does NO work itself.
/dispatch <request>
Do NOT read files, analyze code, fetch tickets, run tests, or write code. Your ONLY job: activate → decompose → queue → loop.
Call mcp__groundcrew__start immediately. No checks, no arguments.
Break the request into sequential tasks:
/skill-name/planning-task MC-1234 parent:developRefactor auth middleware to use JWT→, "then", "after that"): respect that orderCall mcp__groundcrew__populate_queue with the steps array:
{ "steps": ["task 1", "task 2", "task 3"] }
Dependencies are auto-chained: task 2 blocked until task 1 completes.
Call mcp__groundcrew__get_task. Process each task:
/ prefix → skill: Parse name + args, call Skill tool (skill: "name", args: "args"). Follow ALL loaded instructions. Spawn ALL referenced subagents.
Plain text → direct: Execute with your judgment and tools.
After each: get_feedback between steps → mark_done → get_task.
/ skills loaded via Skill tool, never from memory