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

Perplexity Computer adds a Command Panel

Summer Sale gives Nothing’s lineup a more tempting price tag

Also Read
Collage of four web-based artifacts created with Claude Code, including an analytics dashboard, a mobile app design showcase, a software migration report, and a systems workflow visualization. The examples demonstrate interactive interfaces, data-rich dashboards, design systems, and technical documentation generated through AI-assisted development.

Live artifacts come to Claude Code

Illustration of a Claude Connectors settings panel with organization-wide access enabled. A large toggle switch labeled “Enable for organization” is turned on, and a hand-shaped cursor points to it. Below, a list of connected apps—Asana, Atlassian, Canva, Figma, and Granola—each displays an enabled blue toggle switch. The interface appears on a light gray background with a clean, minimalist design.

Claude just solved the enterprise AI authorization headache — and it only took one login

Abstract 3D visualization of a connected network represented as a dark globe covered with intersecting lines and glowing spherical nodes. The illuminated points appear linked across the curved surface, symbolizing artificial intelligence, neural networks, global data connections, and knowledge processing.

Perplexity launches Brain for its Computer agent

Simple illustration of a shopping bag with a keyhole symbol on the front, representing secure or private shopping, on a solid orange background.

Anthropic killed the API key (for workloads, at least)

Design editor interface displaying a crowdfunding webpage for Maple Grove Park alongside a Claude Code terminal window. The design canvas shows editable text, fundraising progress, and donation information, while Claude Code is used to synchronize design components between the visual editor and development workflow.

Claude Design adds admin controls, direct editing, and a connector army

Abstract promotional graphic for LifeSciBench featuring layered design elements on a soft blue gradient background with light reflections and blurred yellow highlights. The composition includes a pale yellow rectangle, a scientific-style bar chart with error bars, and a large cropped text block reading “LifeSciBench” in bold black lettering on a light blue panel. The clean, modern layout combines data visualization and branding elements to represent a life sciences benchmarking or evaluation platform.

OpenAI’s GPT-Rosalind leads LifeSciBench — at a 36% pass rate

Abstract science-themed graphic featuring a soft green and blue gradient background with layered geometric shapes. A chemical structure diagram labeled “4-hydroxy-TEMPO” appears in the upper-right section, while large cropped black typography partially displays the letters “Mo.” The composition combines molecular chemistry imagery with modern design elements, suggesting a scientific research, chemistry, or drug discovery platform.

OpenAI’s near-autonomous chemist just proved it can do real wet-lab science

Apple iCloud logo displayed on a blue gradient background. The image features the iCloud cloud icon centered above the “iCloud” wordmark in white, representing Apple’s cloud storage and synchronization service used for backing up data, syncing files, photos, documents, and settings across iPhone, iPad, Mac, Apple Watch, and other Apple devices.

Apple’s new private.icloud.com domain has a downside

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.