Skip to content

actx dispatch

Run the orchestration dispatch engine for a specific phase. The dispatcher reads the phase gate, validates the target phase is active, and assigns ready workstreams to available agents.

Terminal window
actx dispatch <subcommand>
SubcommandDescription
run --phase <N>Dispatch ready workstreams for the specified phase
statusShow current dispatch engine state
OptionRequiredDescription
--phase <number>YesPhase number to dispatch
Terminal window
# Dispatch workstreams for phase 23
$ actx dispatch run --phase 23
{
"ok": true,
"phase": 23,
"dispatched": [...],
"blocked": []
}
# Check dispatch engine state
$ actx dispatch status
{
"ok": true,
"engine": "idle",
"workstreams": [],
"agents": []
}
CodeMeaning
PHASE_NOT_ACTIVEThe specified phase is not currently active in the phase gate
PHASE_GATE_NOT_FOUNDNo docs/phase-gate.md file found in the project