Five-Level Autonomy Model for AI Coding Agents
DisturbedGoW · reddit · 2026-07-19
The author proposes a "Supervision Ladder" to distinguish five levels of autonomy for AI coding agents:
- Assist: Only autocomplete, humans handle every line of code.
- Review: Agent generates whole changes, humans review each before deployment.
- Checkpoint: Agent generates and tests, automatic gating + human interception of failures. The author believes this is the sweet spot for most real product development.
- Orchestrate: Multiple agents work in parallel, coordinated and reviewed by a senior human.
- Autonomous: Agent can run unattended, suitable for one-off exploration, not for production-critical tasks.
The author emphasizes: Demos like "run all night and wake up to a thousand commits" are cool but are essentially level 5 autonomy; once real customers or money are involved, any unsupervised error going straight to production is dangerous. The real key is control at levels 3/4: not just prompting the agent not to overstep, but structurally removing its ability to overstep. The author gives an example: they tried having the main agent "delegate" using natural language instead of writing code itself, but under high load it still took over; the effective solution was to directly remove its file-editing permissions, so it could only delegate.
More from coding & agent
- Coding agents are heading toward an AI-writes, AI-reviews, human-approves workflow — aftahi_ai · 2026-07-22
- oMLX 0.5.2 adds Mac menu-bar stats, low-bit decode kernels, and faster downloads — awnihannun · 2026-07-22
- GitHub review bot hits its PR limit and forces a 39-minute cooldown — DanielLockyer · 2026-07-22
- Max reasoning effort appears to be mobile-only in Codex Remote, not desktop — GabGarrett · 2026-07-22
- A Reddit demo argues online stores should expose carts and pricing through MCP — gelembjuk · 2026-07-22
- Open-source AI SDK provider routes Vercel apps through a local Codex subscription — lgrammel · 2026-07-22