rai fleet
Fleet dispatch resolves the story dependency DAG for an epic and dispatches all parallel-eligible stories to available agents simultaneously. Use when you want to run multiple stories concurrently without manually coordinating which ones are safe to parallelize.
rai fleet dispatch¶
Resolve the epic DAG and dispatch parallel-eligible stories. Stories with no unmet dependencies are started immediately; the rest are queued and dispatched as their predecessors complete.
| Argument | Description |
|---|---|
EPIC_ID |
Epic identifier (e.g., E4835) — required |
| Flag | Short | Description |
|---|---|---|
--dry-run |
Print the dispatch plan without starting any stories | |
--format |
-f |
Output format: human, json. Default: human |
# Dispatch all parallel-eligible stories in E4835
rai fleet dispatch E4835
# Preview the dispatch plan first
rai fleet dispatch E4835 --dry-run
The command prints the dispatch wave plan: which stories start immediately (wave 1), which follow (wave 2+), and which are blocked on dependencies. Each dispatched story is started via the pipeline engine.
See also: rai pipeline, rai signal