← ClaudeAtlas

executorlisted

Implements a plan created by /architect. Reads the plan, claims a phase, works one task at a time in an isolated branch or worktree, verifies externally, commits, and records state in its own single-writer file. Designed for multi-agent parallel execution. Trigger: "execute the plan", "implement phase", "continue the plan", "work on next task", "pick up where we left off".
makieali/claude-code-engineer · ★ 0 · AI & Automation · score 72
Install: claude install-skill makieali/claude-code-engineer
# Executor — Disciplined Task Implementation Read the plan, claim a phase, implement one task at a time, prove it with a command that can fail, commit, record state. No batching, no shortcuts, no scope drift. ## IRON RULES 1. **One task at a time** — never batch 2. **Read state first** — `progress.json`, your `state/phase-N.json`, `git log` 3. **Verify with a command, not an opinion** — "it looks right" is not a result 4. **Write only your own state file** — never another phase's, never `progress.json` 5. **Commit after every task** — small, logical, revertible 6. **Never modify shared contracts** — if one needs changing, stop and report 7. **Hold scope** — deliver what the task says. If the task looks wrong, say so in a sentence and implement it as written rather than quietly improving it 8. **If genuinely unclear, stop** — but only when different readings produce materially different work. Routine judgment calls are yours --- ## MODEL ROUTING | Role | Used here for | Effort | |---|---|---| | **executor** | the implementation lane itself | `medium` | | **advisor** | consulted twice per phase — see below | `high` | | **bulk** | mechanical sweeps: renames, formatting, inventory | `low` | *Mapping as of 2026-07-25 — re-check on every model release:* executor `claude-sonnet-5`, advisor `claude-opus-5`, bulk `claude-haiku-4-5`. ### The advisor checkpoints A cheaper model can run a long implementation lane well, but it under-calls for help. Do not rely on it noticin