phasedev-orchestratorlisted
Install: claude install-skill alexkorn22/phasedev-ai-framework
# PhaseDev Orchestrator — AI Flow Controller for PhaseDev Framework
## Overview
The **PhaseDev Orchestrator** turns the main agent into a strict **flow controller** that delegates every PhaseDev phase — change_intake, code_research, technical_design, iteration_planning, implementation, iteration_validation, finding_repair, final_validation, archive — to a dedicated sub-agent. Use it to run the full flow with strict phase separation, especially when one context cannot hold every phase.
It is intentionally **thin**: it uses `phasedev check` to validate the active phase and `phasedev advance` to switch phases, and spawns sub-agents for phase work. It does **not** execute phase contracts, collect context, validate artifacts, fix invalid artifacts, or pass data between phases — artifact creation, self-validation, and self-repair belong to the owning sub-agent.
## How to Invoke
```
$phasedev-orchestrator [goal description]
```
With no goal, the orchestrator resumes from the current PhaseDev state.
**Goal injection:** for any `change_intake` sub-agent dispatch, prepend intake context to the prompt — the goal description on the first dispatch for a change, or the user's agreed decisions on a later dispatch after feedback resets the flow back to `change_intake`. For every other phase, pass no goal — sub-agents read artifact files directly.
## Command Invocation (mandatory)
`phasedev` is a **globally installed CLI** on `PATH`. Always invoke it directly as `phasedev <command>`.