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 W1
    • 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
    • Meta 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

Anthropic adds auto mode to cut Claude Code approval fatigue

Claude Code’s auto mode is built for longer, more autonomous runs, letting the agent carry out refactors and scripts without pinging you at every tiny step.

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
Mar 25, 2026, 6:06 AM EDT
Share
We may get a commission from retail offers. Learn more
Logo featuring a stylized orange asterisk-like symbol followed by the word 'Claude' in bold black serif font on a light beige background.
Image: Anthropic
SHARE

Anthropic is giving Claude Code a new gear, and it’s aimed squarely at developers who are tired of clicking “yes” on endless permission prompts but don’t quite have the nerve to hand the keys over completely. Auto mode, launched as a research preview for Claude Team users, is essentially a smarter middle path between Claude’s ultra-cautious default behavior and the anything-goes --dangerously-skip-permissions flag that only the bravest (or most reckless) folks touch in production-like environments.

If you’ve used Claude Code for real work, you already know the trade-off. By default, every file write and bash command requires an explicit green light from you. That’s great for safety, but it means you can’t just kick off a big refactor, a multi-step migration script, or a long-running debugging session and walk away. You end up babysitting the model, approving small, incremental steps one by one. Some developers have been sidestepping that friction by running with permission checks disabled via --dangerously-skip-permissions — which Anthropic openly calls out as risky, suitable only for tightly isolated environments where a destructive command can’t hurt anything important.​

Auto mode is Anthropic’s attempt to solve that tension without pretending the risk goes away. Instead of prompting you for every action, Claude decides on permissions for you, but under the watchful eye of a classifier that screens each tool call before it runs. That classifier is trained to flag obviously dangerous patterns: mass file deletion, suspicious data exfiltration, or commands that look like they’re trying to execute malicious code. If the action looks safe, it just goes through automatically; if it trips the risk detector, it gets blocked and Claude is nudged to find a different route to the goal.​

In practice, this means you can finally run longer tasks with far fewer interruptions. You can imagine starting a coding session where Claude needs to create a bunch of helper files, reorganize a directory, and run a series of tests: under default mode, that’s a flurry of “approve/deny” boxes; under auto mode, the mundane steps flow while the system stands guard against the truly dangerous ones. The model doesn’t just slam into a wall when something is blocked, either. If a risky action gets denied, Claude is redirected to try another approach, and only if it repeatedly insists on the blocked pattern will you eventually see a permission prompt asking you to step in.

Anthropic is careful not to oversell how safe this is. Auto mode reduces risk compared with skipping permissions entirely, but it doesn’t make your environment bulletproof. The classifier can still get calls wrong in both directions: it might allow something that turns out to be risky in your specific context, especially if your setup is idiosyncratic or the intent is ambiguous, and it might occasionally block harmless operations because they resemble something sketchy at a glance. That’s why Anthropic still recommends using auto mode in isolated environments for now and labels it clearly as a research preview. It’s a tool to reduce friction, not a blanket guarantee.​

There’s also a small practical cost: every tool call now goes through that extra review step, which Anthropic says may slightly increase token consumption, cost, and latency. For most teams, the trade-off will likely be worth it — shaving off constant human approvals and context switching can easily pay back milliseconds of extra model overhead. But if you’re running very tight, high-volume automation pipelines, that overhead may be something you’ll want to measure in your own environment.​

On the rollout side, Anthropic is starting with Claude Team users and then expanding to Enterprise and API customers in the coming days, covering both the Sonnet 4.6 and Opus 4.6 models under Claude Code. Admins get centralized control: on Enterprise, Team, and API plans, they’ll be able to disable auto mode for the CLI and VS Code extension via managed settings by setting "disableAutoMode": "disable". On the Claude desktop app, auto mode is actually off by default and can be toggled on under Organization Settings → Claude Code. That gives security-conscious organizations a clear way to stage and test the feature before letting everyone loose with it.

For individual developers, enabling auto mode is straightforward. On the command line, you can run claude --enable-auto-mode and then cycle to that permission mode with Shift+Tab during a session. In the desktop app or the VS Code extension, you turn it on in Settings → Claude Code and then pick it from the permissions drop-down once it’s available. From there, the day-to-day experience should feel pretty similar — you still ask Claude to perform coding tasks and use tools — but you’ll see far fewer confirmation pop-ups mid-flow, especially for routine edits and commands.​

Zooming out, auto mode fits into a broader push from Anthropic to make Claude feel more like a reliable teammate embedded in your local workflow, not a remote assistant you have to micromanage. In recent weeks, Anthropic has been rolling out features that connect Claude more deeply to your computer and development tools, positioning Claude Code as something that can actually drive day-to-day engineering work rather than just generate code snippets in a chat window. Giving the model a limited autonomy layer — bounded by a safety classifier — is a natural next step on that path.​

For teams evaluating whether to flip the switch, the big questions will be cultural as much as technical. If your org has already normalized --dangerously-skip-permissions in safe sandboxes, auto mode will probably look like a welcome upgrade: similar convenience, better guardrails. If your security posture is stricter, you might treat auto mode like any new privilege escalation mechanism: roll it out to a subset of users, monitor what it does in real projects, and tune your policies before wider adoption. In both cases, developers who have been wrestling with approval fatigue now have a more nuanced option that doesn’t require choosing between safety and sanity every time they open a terminal.


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

Dell XPS 16 Creator Edition: Tandem OLED, RTX Spark, and 128GB unified memory

OpenAI expands GPT-Rosalind access with new Rosalind Biodefense program

Dell’s new XPS 13 has more features than a MacBook Neo – at the same price

Claude Opus 4.8 now powers Perplexity Max and Computer

Codex computer use comes to Windows, with mobile in the loop

Also Read
A graphic representation of Apple’s M5 chip against a black background.

Apple rolls out iOS 26.5.1 and macOS 26.5.1 with important fixes

Stylized illustration of the upper portion of an iPhone with a white device frame and black Dynamic Island cutout centered at the top of the display. The screen features abstract overlapping shapes and gradients in pastel orange, pink, blue, and purple, while status icons for signal, Wi-Fi, battery, and the time 9:41 appear along the top edge. The background continues the soft multicolor gradient theme with large decorative curves and shapes.

Apple Intelligence comes back to WWDC with more to prove

A person wearing Apple Vision Pro on a train.

Vision Pro 2 isn’t dead – it’s just slowing down

The classic Apple logo, shown in light silvery-blue, set against a black background. The logo has a clean, minimalist design featuring the iconic bitten apple silhouette with a soft, matte finish.

Apple Car Key is finally headed to future Mahindra models

WWDC 2026 wallpaper on Apple's Mac, iPad, and iPhone devices.

WWDC26 hype starts: new Apple wallpaper, playlist, and more

Promotional poster for Apple's WWDC26 developer conference featuring a glowing Apple logo centered on a black background. Beneath the illuminated logo, the text reads “WWDC26” and the slogan “All systems glow.” with event dates listed as June 8–12. The design uses bright white highlights and subtle blue reflections to create a futuristic, luminous effect.

Apple teases WWDC 2026 with ‘All systems glow’ and a big Siri reboot incoming

Grocery, gardening, and household items from a Walmart delivery are arranged on a front doorstep outside a brick home. A blue Walmart shopping bag, a bag of Miracle-Gro potting mix, bread, and potted flowers sit on a welcome mat, surrounded by decorative planters and colorful blooming plants near a wooden front door.

Walmart’s 30-minute delivery is now live in 33 U.S. cities

Acer Iconia Duo S14 Android tablet

Acer announces three Iconia Duo tablets with 3:2 OLED displays

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.