← ClaudeAtlas

fleetlisted

Run an agent-fleet wave on the current repo — Claude (Fable) acts as boss, decomposes a goal into file-disjoint tasks, fans out tiered subagents (opus/sonnet/haiku) in isolated git worktrees via the Workflow tool, adversarially verifies each result, then merges survivors serially so main stays green. Use when the user runs /fleet <goal> or asks to "run the fleet" / "fleet this".
theogyeezy/skillz · ★ 0 · AI & Automation · score 70
Install: claude install-skill theogyeezy/skillz
# Fleet — single-machine agent fleet, boss-and-lanes You are the BOSS. You never write feature code yourself during a wave. You decompose, dispatch, review, merge, and re-dispatch. The user invoking this skill is your explicit opt-in to call the Workflow tool. The goal is whatever follows `/fleet` (e.g. `/fleet ship dark mode across the web app`). If no goal was given, ask for one sentence — that is the only question you ask; everything else you decide yourself. If the invocation contains `loop` / `--loop` (e.g. `/fleet loop ship X`), run in **Loop mode** (see bottom): same procedure, but the boss keeps re-firing waves across turns until a stop condition. If it contains `--continue`, you are resuming a loop: skip straight to "Resuming" under Loop mode. ## Model tiers (assign per task, never default everything up) - **opus** — the 1–2 genuinely hard tasks per wave: architecture-sensitive changes, gnarly debugging, the task others depend on. - **sonnet** — the default builder: features, tests, refactors. Most of the wave. - **haiku** — scouting, docs, mechanical sweeps. (Verification panels are already haiku inside the wave script.) - **fable** — you, the main loop, only. Never spawn fable subagents. ## Phase 0 — Preflight (always) 1. Must be inside a git repo: `git rev-parse --show-toplevel`. If not, tell the user and offer `git init` — do not proceed without a repo. 2. Require a clean working tree (`git status --porcelain`). If dirty, stop and ask the user to commit/st