The short version: on August 14, 2026, Claude Code stops asking you to approve every command. For Pro, Max, and Team users, the default permission mode becomes auto mode — a safety classifier that adjudicates each shell command and tool call in context, running the routine ones and pausing to a human only on the risky edge cases. Anthropic cites a study where that classifier caught ~89% of dangerous commands to a human's ~13.6%, and says it's no longer charging those plans for the classifier's tokens. Enterprise and API-platform users are exempt for now. Here's what changes and the four things to check before the switch.
What's actually flipping#
Until now, Claude Code's default posture has been conservative: when it hits a command it can't prove is safe, it stops and asks you. That's a deterministic gate — nothing runs without a human yes. It's also a drag on any long or unattended run, because you end up clicking "allow" dozens of times.
Auto mode replaces that reflex. Instead of a static analyzer plus a human prompt, a separate safety classifier looks at each command in context and decides: allow it, or escalate to you. Anthropic has been shipping this mechanism for weeks — we covered how the trust boundary moved from a prompt to a classifier when the pieces landed in the July–August releases. What's new on August 14 is that it stops being the mode power users opt into and becomes the default for consumer and team plans.
Who's in, who's out#
- Pro, Max, Team: default flips to auto mode on August 14, 2026.
- Enterprise seats and API-platform users — Claude Code running through AWS Bedrock or Google Cloud Vertex AI — stay opt-in. Their default does not change on this date.
If you administer seats, confirm which plan they're on before you assume the switch does or doesn't apply.
The number Anthropic is leading with#
The company's case rests on approval fatigue: humans are bad at reviewing a long stream of permission prompts. In a study it cites of 1,053 paid testers, the classifier flagged about 89% of dangerous commands, while humans doing manual per-command approval caught only about 13.6% — because on a long run, people stop reading and just click through. Anthropic also reports teams on auto mode shipped roughly 25% more PRs.
These are the vendor's own figures, so weight them accordingly — but the failure mode underneath is real and well-documented. A model that adjudicates in context doesn't get bored halfway through a build.
One more change worth noting: Anthropic stopped charging Pro, Max, and Team users for the extra classifier tokens as of the announcement (~August 7). The safety layer runs an additional model call per command; on those plans, that's no longer a line item.
The catch: a classifier is a filter, not a fence#
A probabilistic gate is a better default than either extreme — prompting a human for every borderline command is a non-starter for headless runs, and a pure static analyzer either over-blocks or waves through what it can't reason about. But "better default" is not "proof." The classifier is a model with edge cases, and Claude Code's own changelog is the evidence: over July–August the team patched permission-check bypasses (commands hidden inside shell conditionals) and a case where auto mode wrongly denied commands after an OAuth token expired mid-session. Fast patching is a good sign. It also confirms the boundary is living code, not a fence.
Four things to check before August 14#
- Decide, per use case. For interactive work on your laptop, auto mode is a clear win — let it flip. For an unattended agent with write access to anything that matters, be deliberate about whether and where you enable it.
- Put an allowlist under it. Enumerate the commands the agent may run. The classifier decides the ambiguous cases; an allowlist removes them from the table entirely.
- Run in a real sandbox. A container or worktree-isolated session so a false "allow" is contained, not catastrophic — your container is not a sandbox by default, so configure it like one. Pair it with deny-by-default network egress so a mistaken command can't phone out.
- Use non-privileged, scoped credentials. The blast radius of a wrong command is exactly the reach of the token it runs with. Narrow that reach and the worst case stays small.
Auto mode moves the trust boundary from you, per command to a classifier, in context. That's the right trade for most work — as long as the deterministic layer underneath survives the cases the classifier misses. For the bigger picture on where this fits the coding-agent landscape, see our week-of-August-7 wire on the coding-agent war.



