/gsd-execute-phase
/gsd-execute-phase N — Phase 3. “Execute all plans in a phase with wave-based parallelization.” Discovers task dependencies, groups them into parallel execution waves (see pattern-wave-parallelism), spawns a gsd-executor subagent per task in a wave — each in a clean ~200k-token context (pattern-fresh-context-subagents) — and collects results. gsd-verifier runs a goal-backward analysis afterward.
Produces: artifact-atomic-commit — one atomic git commit per completed task (gsd-executor is the only agent with Edit tool access).
Flags: --wave N (execute only Wave N; staged rollout), --interactive (sequential inline execution with user checkpoints).
See Also
- gsd-plan-phase — produces the plan this executes.
- gsd-verify-work — conversational UAT after execution.
- addy-incremental-implementation — Addy’s counterpart; same task-by-task execution with a commit per slice.
- openspec-apply — OpenSpec’s counterpart; walks the
tasks.mdchecklist (sequential, resumable). - speckit-implement — Spec Kit’s counterpart; executes
tasks.mdwith TDD mandated (tests fail before code). - bmad-dev-story — BMAD’s counterpart; implements one fully-contexted story at a time in a fresh context.
- stage-implement — the canonical stage this implements.