GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIAnthropicTech

Claude Code makes auto mode the default for paid users

Auto mode is now the starting point for Pro, Max and Team users, with a classifier designed to block risky actions instead of relying on endless clicks.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Aug 8, 2026, 9:00 AM EDT
Share
We may get a commission from retail offers. Learn more
Bar chart titled “Harmful actions caught: Humans vs. auto mode” comparing detection rates in a controlled study of 1,053 paid developers: human review caught 13.6% of harmful actions, while Claude Code auto mode caught 89%.
Image: Anthropic
SHARE

Anthropic is making a fairly bold change to Claude Code: auto mode is becoming the default for paid users. Starting August 14, new Claude Code sessions on Pro, Max and Team plans will begin in auto mode unless a user or administrator has already pinned another default.

At first glance, this might sound like a small permissions-setting tweak. In practice, it is a statement about where AI coding tools are headed. Anthropic is betting that developers do not want to sit beside an agent and approve a long stream of routine shell commands, file edits and development tasks. More importantly, the company argues that asking humans to approve everything is not necessarily safer.

That is the uncomfortable premise behind the rollout. Permission prompts look reassuring in theory: an AI proposes an action, a person reviews it, and nothing risky happens without a click. But in real development work, those prompts can arrive dozens or hundreds of times during a session. Eventually, many people stop reading them carefully.

Anthropic says its data reflects exactly that behavior. Users approve 97% of Claude Code permission prompts, while rejecting only 3%, compared with a 39% rejection rate for higher-level plans presented by the tool. In other words, developers appear much more likely to scrutinize an overall proposal than a steady drip of individual command approvals.

Auto mode is Anthropic’s attempt to move that judgment from a tired human clicking “allow” to a classifier built specifically to assess tool calls. The system is meant to let Claude proceed without constantly interrupting the user, while blocking actions it considers irreversible, destructive or directed outside the user’s intended environment. When it blocks an action, Claude can try to find a safer route or ask the user for explicit approval; after repeated blocks, it falls back to manual permissions.

The shift matters because coding agents are increasingly being asked to do more than autocomplete a function or explain an error message. They can navigate repositories, run tests, change files, manage Git workflows and interact with development infrastructure. The more capable the agent becomes, the less useful it is if a developer must babysit every command. But the more autonomy it receives, the more consequential a mistake can be.

That tension has become one of the defining problems in AI-assisted software development. Developers want an agent that can take a multi-hour task, work through failures, run validation and return with a pull request. They do not want an agent that quietly deletes production data, pushes sensitive code to a public repository or escalates cloud permissions far beyond what was requested.

Anthropic’s answer is not unrestricted autonomy. It is what might be called managed autonomy: fewer interruptions for ordinary work, but more attention around actions that cross a meaningful risk boundary.

Why Anthropic thinks clicking is failing

The company’s core argument is that manual review often creates a false sense of security. It may sound safer to leave every decision with the human, but that depends on the human actually evaluating every warning. If the same permission dialog appears repeatedly in the middle of a debugging session, it can become background noise.

Anthropic says it ran a controlled study with 1,053 paid professional testers. During the exercise, one routine-looking permission prompt was replaced with a clearly dangerous command. Human reviewers caught just 13.6% of those commands, according to the company, while auto mode blocked 89%. The gap worsened as sessions became longer: human participants reportedly blocked about 17% of dangerous commands early on, falling to roughly 5% after 50 or more earlier prompts.

Those results come from Anthropic’s own research and should be read with that in mind. Still, the broader phenomenon will sound familiar to anyone who has clicked through system dialogs, browser permissions or application warnings simply to get back to work. Security controls that interrupt too often can train people to dismiss the very warning that matters.

Anthropic also says that many Claude Code users had already begun working around permission friction. As of June, nearly half of active command-line users had created Bash allow rules, including rules that can effectively permit arbitrary Python or Node commands. The company says 62% of users had either used bypassPermissions or selected a “don’t ask again” option for Bash, while a quarter of interactive sessions began in bypass-permissions mode.

That is the real backdrop for auto mode. The choice, Anthropic suggests, is not always between cautious human review and an autonomous AI. In many cases, it is between a more targeted automated guardrail and people broadly disabling safeguards because the prompt burden became unbearable.

What auto mode actually does

In auto mode, Claude Code sends each tool call through a classifier that evaluates whether the intended action is risky. The classifier focuses on actions that may be destructive, irreversible or external to the developer’s environment, rather than treating every command as equally suspicious.

For example, Anthropic says the system now considers the destination of Git pushes and pull requests, distinguishing between public, private and trusted locations. It also checks Git status before potentially destructive commands such as git reset --hard, so it has context about whether uncommitted work could be lost.

There are also hard-deny rules. Anthropic says certain data-exfiltration-style actions are designed to never receive automatic approval in auto mode. A user would need to switch modes or run the command manually, and organizations can create additional hard-deny rules through settings.

The system also attempts to address one of the harder security problems facing AI agents: prompt injection. A coding agent may ingest instructions hidden in a webpage, a document, an issue tracker entry or tool output. Those instructions could try to steer the model away from the developer’s actual intent, perhaps toward exposing credentials or uploading source code. Anthropic says tool results are screened for potentially malicious instructions, and suspicious content can trigger a warning in Claude’s context before the result is used.

This is a more ambitious approach than a simple allow-or-deny list. Traditional permission systems are good at recognizing categories of commands. But an AI agent’s risky behavior often depends on context. A Git push is normal in one situation and potentially disastrous in another. Granting access to billing data may be appropriate, while granting root-level administrative control instead is clearly not.

Anthropic highlights an internal example that captures the difference. When Claude was asked to provision read-only billing access, it reportedly reached for a cloud role that would have granted full administrative control at the account root. Auto mode stopped the action because the requested task and the proposed permission level did not match.

The promise of longer-running agents

The productivity case is as important as the security case. Auto mode is built for the kind of work that takes longer than a few minutes: refactoring a large codebase, running a research loop, debugging a stubborn failure or building and validating a feature across many files.

Anthropic says Teams and Enterprise customers using auto mode ship about 25% more pull requests. It points to companies including Adobe, Nuro, Gusto and Garner Health as users that have adopted the feature in production workflows.

Nuro, for instance, uses auto mode across research and engineering teams for overnight agents that work on improving evaluation metrics and return completed pull requests for review in the morning, according to Anthropic. Adobe’s merchandising platform team uses it in an agentic loop that builds and verifies web pages across Adobe.com, which operates across more than 90 countries and 30 languages.

These examples should not be mistaken for a claim that software development has become fully autonomous. A finished pull request is not the same thing as approved production code, and a team still needs code review, tests, deployment controls and accountability. But it does show how the definition of “AI coding assistant” is changing.

The earlier generation of tools helped developers write code faster line by line. The emerging generation is trying to own a larger chunk of the engineering loop: inspect the task, make changes, run tools, test the result, correct failures and hand back something reviewable. The natural endpoint is not an agent that replaces engineering judgment, but one that can carry a bounded task much further before needing a person to step in.

A default, not a mandate

The rollout is broad, but it is not universal yet. Auto mode is now the default for Pro, Max and Team users who start new Claude Code sessions without another default selected. Existing user defaults and administrator-managed settings remain in place.

For Claude Enterprise users, API customers and deployments through Amazon Bedrock, Google Cloud’s Agent Platform and Microsoft Foundry, auto mode remains opt-in for now. Anthropic says it plans to make the mode the default across those environments in the coming month, after giving administrators time to assess the change.

Anthropic is also removing the extra usage charge associated with the classifier overhead for Pro, Max and Team users. That is a practical move: a safety layer is much easier to embrace if it does not look like an extra meter running in the background.

Users who prefer a different setup can switch modes with Shift+Tab in the command-line interface or use the mode menu in the desktop app. Organization administrators can set a company-wide default through managed settings, or disable auto mode entirely.

That flexibility is important because different environments carry wildly different stakes. A developer working locally on a disposable prototype has a different risk profile from an engineer with access to production infrastructure, customer data or a sensitive cloud account. No classifier can fully understand a company’s security posture, deployment process or business constraints without careful configuration and controls around it.

Anthropic acknowledges that point directly. The company says auto mode reduces risk for most users but does not eliminate it, and recommends that people continue to review high-stakes changes involving production infrastructure.

The bigger message

The interesting part of this announcement is not merely that Anthropic has enabled a new default. It is that the company is openly challenging the traditional assumption that more pop-ups equal more safety.

For years, software has treated permissions as a binary ritual: show a warning, get a click, transfer responsibility to the person who clicked. Agentic coding tools make that model look increasingly outdated. When an AI system can perform hundreds of actions during a long-running task, prompt-by-prompt supervision becomes a poor fit for how humans actually work.

Auto mode is Anthropic’s wager that security needs to become more selective, contextual and automated – not less. That is a reasonable direction, provided developers and IT teams treat it as a layer of defense rather than a permission slip to stop paying attention.

The most useful way to think about it is simple: Claude Code is being asked to take on more work without demanding constant supervision. Auto mode tries to make that possible by reserving human attention for the moments when it is most valuable. Whether it can consistently make the right call in the messy reality of production software work is the question that will matter far more than the new default setting.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Claude AIClaude Code
Leave a Comment

Leave a ReplyCancel reply

Most Popular

What is Walmart+ membership?

Walmart+ free trial: when it saves you money (and when it doesn’t)

Meet the Samsung Galaxy Card: perks, metal build, and rewards

Porsche launches Advanced Package for the Macan, Macan 4 and 4S

How Amazon Locker works for apartments, dorms, and busy schedules

Also Read
A Dell laptop with the Windows logo displayed on its screen is shown on a colorful background with pink on top and blue on the bottom, viewed at an angle with part of the keyboard visible.

Microsoft overhauls the Windows 11 right-click menu

Samsung Galaxy Z Fold8 showing the Warranty and care hub with limited warranty details, Samsung Care+ eligibility, and device support categories.

Samsung’s One UI 9 brings diagnostics, repairs, and Care+ into one place

ElevenLabs MCP and Claude logos displayed side by side on a dark background, separated by a horizontal line.

ElevenLabs MCP arrives in Claude, bringing voice-agent control into the chat window

Futuristic digital artwork showing a glowing computer face icon inside a translucent glass-like sphere resting on a soft grassy surface. Floating reflective droplets surround the sphere against a dark black background, creating a surreal and minimalist sci-fi atmosphere.

Perplexity Computer adds Allow, Always Ask, Deny for connectors

A lineup of three black LG xboom Power party speakers in different sizes, each with circular illuminated woofers and the xboom logo on top, shown against a white background.

LG launches xboom Power 9000, 7000 and 5000 with AI karaoke tools

Porsche Sonderwunsch 911 GT2 RS Flachbau RS

Porsche crafts one-off Flachbau RS in tribute to ‘Moby Dick’

Porsche 911 GT3 100 Jahre Nürburgring

Green Hell tribute: Porsche builds a Nürburgring-only 911 GT3

Notion AI model picker showing a menu of model options, including Auto, Opus 5, GPT-5.6 Terra, GPT-5.6 Sol, and Kimi K3, with scorecards for speed and intelligence.

Notion now lets you pick your AI model

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.