fleet
Installation
SKILL.md
/fleet — Parallel Coordinator
Use for 3+ independent work streams that can run simultaneously in isolated worktrees. Do NOT use for single-file scope, linear work, or when a marshal or skill suffices.
Orientation
Use when: Running 2+ independent work streams in parallel — tasks with non-overlapping file scopes that can execute simultaneously.
Don't use when: Work must execute sequentially or accumulate findings across phases (use /archon), a single orchestrated session is enough (use /marshal), or the task is simple enough for a bare skill.
Commands
| Command | Behavior |
|---|---|
/fleet [direction] |
Decompose direction into parallel streams, execute in waves |
/fleet [path-to-spec] |
Read a spec file, decompose into streams |
/fleet continue |
Resume from the last fleet session file |
/fleet (no args) |
Health diagnostic → work queue → execute |
/fleet --quick [task1]; [task2] |
Lightweight parallel mode for solo devs — 2+ tasks, single wave, auto-merge, no session file |
Related skills