What problem does it solve?
This Skill executes all plans within a phase by discovering plans, analyzing dependencies, grouping tasks into waves, and coordinating parallel subagents while preserving verification and state-update gates. It reduces manual orchestration overhead and avoids race conditions by enforcing wave and verification semantics.
Core Features & Use Cases
- Discovery & Dependency Analysis: Locate plans in a phase and compute dependencies to ensure safe ordering.
- Wave Partitioning & Selective Execution: Group independent plans into waves and optionally run a single wave for pacing or staged rollouts.
- Subagent Orchestration & Aggregation: Spawn lightweight subagents to run plans with isolated context and collect results for verification and state updates.
- Flag-driven Behaviors: Respect explicit flags (--wave, --gaps-only, --interactive) only when they appear in invocation arguments.
- Use Case: Run a phased deployment or a large verification sweep where thousands of independent plans must be executed reliably and in parallel.
Quick Start
Run gsd-execute-phase for phase 2 with the --wave 1 flag to execute only the first wave and collect results for verification.