Switch language한국어
Back to the list

Claude Code Auto Mode: No More Pressing Y

TL;DR AI

Key summary

2 min read
  1. I pressed "y" 87 times during a 45-minute refactoring session with Claude Code.

  2. Anthropic shipped auto mode for Claude Code on March 24.

  3. A separate classifier model (runs on Claude Sonnet 4.6) sits between Claude and your system, evaluating every tool call in real time to auto-approve safe actions and block dangerous ones.

  4. The default permission mode required approval for every tool call (file reads, code searches, running git status), creating friction; past workarounds included --dangerously-skip-permissions and an allowlist option to register tools.

  5. Auto mode has no manual approvals for file reads and no --dangerously-skip-permissions flag; the classifier fires on every tool call for speed and cost-effectiveness, using context-based safety because a static allowlist cannot distinguish safe from unsafe actions.

Read the original