execute-phase

Orchestrate wave-based plan execution across subagents with checkpoints.

Updated Nov 16, 2025
One-click install
npx skills add https://github.com/RayOfSteel-DHBW/TeilAutoNeu --skill execute-phase-rayofsteel-dhbw
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: execute-phase
Source: https://github.com/RayOfSteel-DHBW/TeilAutoNeu/tree/main/.github/skills/execute-phase
Command: npx skills add https://github.com/RayOfSteel-DHBW/TeilAutoNeu --skill execute-phase-rayofsteel-dhbw

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Execute all plans in a phase using wave-based parallel execution. Orchestrator delegates plan execution to subagents, manages waves and checkpoints.

Core Features & Use Cases

  • Wave-based plan execution: orchestrator coordinates plan discovery, dependency analysis, and distribution across subagents.
  • Checkpoint and state management: tracks progress, saves decisions, and ensures recoverability between waves.
  • Phase-state and branch integration: coordinates planning artifacts, config, and version control considerations for phased work.
  • Result aggregation: aggregates per-plan summaries and provides a phase-wide execution report.

Quick Start

Run execute-phase for a specific phase to coordinate waves of plan execution among subagents.

Frequently Asked Questions about execute-phase

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multi-phase project execution where plans depend on prior results and checkpoints?

To coordinate multi-phase project execution, you can use wave-based orchestration to load project state, discover plans, and spawn subagents to execute tasks in parallel waves while tracking dynamic state. Checkpoints ensure recoverability between these execution waves.

What is wave-based plan execution and how does it manage subagents?

Wave-based plan execution is an orchestration method where an orchestrator delegates plan discovery and dependency analysis to subagents, distributing tasks across parallel execution waves rather than running sequentially. It aggregates per-plan summaries into a phase-wide report.

How do I save progress and manage dynamic state between execution waves in a phased project?

To save progress and manage dynamic state between execution waves, the orchestrator tracks progress and saves decisions at checkpoints. This ensures recoverability between waves and maintains phase-state integration with planning artifacts and version control.

Can I execute multiple plans in parallel across subagents when dependencies exist between phases?

Yes, you can execute multiple plans in parallel across subagents even when dependencies exist. The orchestrator performs dependency analysis to determine which plans can run concurrently within a wave, ensuring subsequent waves respect prior results and checkpoint states.

When should I use wave-based orchestration instead of sequential execution for multi-phase projects?

You should use wave-based orchestration instead of sequential execution when your multi-phase project contains plans that depend on prior results but can be grouped into parallel waves. It maximizes throughput by spawning subagents for concurrent execution where dependencies allow.

Do I need to manually load project state before running phase execution?

No, you do not need to manually load project state before running phase execution. The orchestrator automatically loads project state, discovers available plans, and coordinates the distribution of tasks to subagents to ensure progress across waves.