Anthropic shipped two significant additions to Claude Code in March 2026: Auto Mode and Computer Use. Both push Claude Code further toward autonomous operation. Here's what they do and what changes for teams already using it.
Auto Mode: Safety Checks Before Each Action
Auto Mode, currently in Research Preview, adds an AI-driven safety review before Claude Code executes any action. It detects risky operations and potential prompt injection attempts, halting execution when something looks suspicious.
# Auto Mode in action
$ claude --mode auto "Fix failing tests and update all affected files"
[Auto Mode] Pre-action check running...
✓ File write: src/utils/helper.ts — safe
✓ Test runner: npm test — safe
⚠ External URL request detected — requires confirmationFor teams running multi-file refactors or automated fix pipelines through Claude Code, this provides a meaningful safety layer. The tradeoff is additional latency per step, so whether it's worth enabling depends on the risk profile of your automation. For low-risk tasks in a sandboxed environment, the overhead may not be worth it. For anything touching production-adjacent code, it's a sensible precaution.
Computer Use: GUI Access Without Integration Setup
Computer Use lets Claude Code open files, run dev tools, and navigate screens — including GUI applications — without any custom integration. Available for Pro and Max subscribers.
What this enables in practice:
- Browser DevTools interaction: inspecting rendered pages, not just static source code
- GUI-only tools: applications that have no CLI or programmatic API
- Cross-tool chaining: trace a browser error back to source, apply a fix, verify in the UI — all in one workflow
Current limitations are worth naming: complex IDEs and multi-window setups can still produce unpredictable behavior. The feature is most reliable for well-scoped, repeatable tasks. Treat it as a productivity gain for specific workflows, not as a fully autonomous agent you can leave unattended.
Claude Sonnet 4.6: 1M Token Context in Beta
Released alongside these features, Claude Sonnet 4.6 supports a 1M token context window in beta. That's enough to load a substantial codebase, a long log file, or an extended conversation history into a single API call.
// Passing a full codebase for analysis
const response = await anthropic.messages.create({
model: "claude-sonnet-4.6",
max_tokens: 8192,
messages: [
{
role: "user",
content: `Review this entire codebase and list all
TypeScript type safety issues:\n\n${codebaseContent}`
}
]
});Practical use cases: analyzing a large monorepo without chunking, debugging multi-thousand-line log files, or reviewing a substantial PR diff without losing context mid-conversation.
How This Shifts Developer Workflows
Auto Mode and Computer Use together move Claude Code from a suggestion tool to an execution tool. That shift creates both opportunity and responsibility.
Where AI can take on more:
- Repetitive tasks: type error fixes, documentation updates, lint warnings
- Multi-step sequences: run tests → identify failure → trace root cause → fix → verify
- Cross-tool workflows that previously required manual handoffs between tools
Where human judgment remains essential:
- Architecture decisions and tradeoff analysis
- Security-sensitive code paths and access control logic
- Final review before merging — Auto Mode checks are not a code review substitute
Before You Change Your Workflow
Before integrating Computer Use or Auto Mode into production workflows, two steps are worth taking:
-
Audit what Claude Code currently does: understand which file operations, commands, and external calls your existing usage triggers. This gives you a baseline for what Auto Mode will flag.
-
Ensure version control and CI are solid: Claude Code in execution mode will make changes. You need the ability to diff, revert, and catch unintended modifications through automated checks.
Start with Auto Mode in a staging environment. Observe which actions it flags and why. Build your team's process around that data, not around assumptions. The safety checks are real, but they're one layer of a defense-in-depth approach — not the whole strategy.
AI coding tools are genuinely moving toward greater autonomy. Meeting that with clear boundaries and strong tooling is the right response.