Claude Code Auto Mode Becomes the Default on August 14
Anthropic has announced that Claude Code's auto mode will become the default for all Pro, Max, and Team accounts starting August 14. Launched in March as an opt-in feature, auto mode eliminates the per-step human approval prompts that have been Claude Code's safety net since launch, replacing them with a two-stage AI classifier that decides in real time which actions are safe to execute autonomously.
How the two-stage classifier works
Every action Claude Code considers taking passes through one of three tiers:
- Tier 1 — auto-pass: Read-only operations (file searches, code navigation, grep) proceed instantly with no classifier review. The risk surface is near-zero.
- Tier 2 — auto-pass: In-project edits are allowed automatically because they're already tracked by version control and trivially reversible.
- Tier 3 — classified: Higher-risk operations (shell commands, web fetches, filesystem writes outside the project, external integrations) go to the classifier. A fast single-token filter runs first; if that's insufficient, chain-of-thought reasoning kicks in for edge cases.
A key design decision: the classifier sees only user messages and tool calls — Claude's own reasoning traces and tool results are stripped from the input. This prevents the model from constructing self-justifying arguments that could "talk the classifier into" approving risky moves.
What the classifier blocks
Dangerous patterns that trigger a block regardless of context:
- Credential exploration (reading
~/.ssh,.envfiles, credential stores) - Scope escalation from vague instructions ("clean up branches" → mass branch deletion)
- Agent-inferred parameters not present in the user's request
- Data exfiltration patterns (reading secrets then making outbound network calls)
- Attempts to bypass safety checks in Claude Code's own configuration
If you currently rely on Claude Code pausing at every shell command for your review, that behaviour will change: safe, Tier-2 operations now proceed without a prompt. You'll still see pauses for genuine Tier-3 risks. If you want the old behaviour back, you can re-enable per-step approval in Claude Code settings. Enterprise and API rollout follows "in the coming days" after the August 14 consumer wave — watch your admin console for the toggle.