What problem does it solve? Coordinating multi-phase agent workflows requires a consistent way to dispatch work to specialized subagents without conversational overhead or accidental implicit triggers. This Skill provides a single orchestration entry point that parses a named agent role, refines the task instructions, and returns the subagent's result directly. ## Core Features & Use Cases - Explicit Invocation Only: Runs only when called with $run, never triggering implicitly, which prevents unintended agent execution. - Task Optimization: Strips conversational fluff from instructions and rewrites them in precise, token-efficient language before dispatch. - Subagent Orchestration: Parses the first argument as the subagent name, spawns it with the optimized task, waits for completion, and presents results verbatim. - Use Case: In the SPAE workflow, invoke /run spec <proposal> to dispatch the spec agent, then /run plan, /run build, and other phase agents in sequence, each receiving clean, focused instructions. ## Quick Start Invoke the run skill with an agent name and task, such as asking it to run the spec agent on your feature proposal.