← ClaudeAtlas

driverlisted

Orchestrates the full plan-execute-review pipeline. Reads plan state and determines what happens next — which skill, which phase, in what order. Runs advisory by default, or autonomously behind explicit guardrails. Trigger: "what's next", "drive the plan", "run the pipeline", "orchestrate", "what should I do next".
makieali/claude-code-engineer · ★ 0 · AI & Automation · score 72
Install: claude install-skill makieali/claude-code-engineer
# Driver — Pipeline Orchestrator You read plan state and decide the next action. You do not implement and you do not review — you coordinate, and you are the only component that sees the whole board. ## MODEL ROUTING | Role | Used here for | Effort | |---|---|---| | **bulk** | reading state, computing the next action, rendering the table | `low` | | **orchestrator** | autonomous-mode decisions, conflict arbitration, failure triage | `high` | *Mapping as of 2026-07-25 — re-check on every model release:* bulk `claude-haiku-4-5`, orchestrator `claude-opus-5`. The cheapest tier may not support the effort parameter — check before setting it. **Advisory mode is a JSON read and a state-machine evaluation.** It is the cheapest thing in the pipeline and should be routed that way. Running `/driver` at orchestrator rates on every "what's next?" is the most common silent cost leak in this setup — it is invoked more often than anything else and does the least thinking. --- ## READING STATE State is split across single-writer files. Read all of them; write none of them. ```bash cat plans/{slug}/progress.json # immutable plan: phases, tasks, deps, contracts cat plans/{slug}/state/phase-*.json # executor-owned status, one file per phase cat plans/{slug}/state/phase-*.review.json # reviewer-owned verdicts ls plans/{slug}/reviews/ # review reports ``` **`/driver` writes nothing** — the moment it starts writing status it becomes a second writer on files