Available modes
Each mode makes a different tradeoff between convenience and oversight. The table below shows what Claude can do without a permission prompt in each mode. Manual mode appears under its config value,default.
The mode that reviews every action is named Manual in the CLI, in
claude --help, in the VS Code and JetBrains extensions, and in the desktop app. Its config value is default, which is what hooks and SDK integrations use. The CLI accepts manual as an alias wherever you type the value, for example claude --permission-mode manual or "defaultMode": "manual". The Manual label and the manual alias require Claude Code v2.1.200 or later. The desktop app’s label doesn’t depend on your CLI version.
Writes to protected paths are never auto-approved except in bypassPermissions mode and in plan-mode sessions where bypass permissions are available, meaning sessions started in a way that puts bypassPermissions in the mode cycle.
Modes set the baseline. Layer permission rules on top to pre-approve or block specific tools. Deny rules block in every mode, including bypassPermissions. Deny and ask rules don’t apply to EndConversation as long as Claude still has at least one other tool it can call. Allow rules have no effect in bypassPermissions.
Actions no mode auto-approves
Claude Code doesn’t auto-approve the following in any mode, includingbypassPermissions. Each bullet links to the section that says what happens instead in each mode:
- Tools matched by an explicit ask rule
- Connector tools your organization set to
ask - Tools that require user interaction: the built-in
AskUserQuestiontool and MCP tools markedrequiresUserInteraction rmandrmdirremovals targeting a critical path, which no allow rule orPreToolUsehook"allow"approves- The cross-session messaging safeguards
Common setups
Permission modes decide whether Claude asks before an action, and the Bash sandbox and outer isolation boundaries decide what an action can reach once it runs. Each row below pairs a goal with the flags or settings that get you there and the isolation it needs, as a starting point. Available modes lists what runs without a prompt in each mode, and the per-mode section each row links carries the full behavior.
The Bash sandbox and auto mode work independently and combine, except in plan mode, where auto-allow doesn’t widen approvals. For the full interaction, see How sandboxing relates to permissions and permission modes and How isolation relates to permission modes.
Which mode a session starts in
When you start a new session in a terminal, Claude Code takes the permission mode from the first of these that applies:- The
--permission-modeflag, or--dangerously-skip-permissions permissions.defaultModein a settings file. An"auto"value in.claude/settings.jsonor.claude/settings.local.jsondoesn’t take effect, and Claude Code then uses the built-in default rather than adefaultModefrom~/.claude/settings.json. The other values apply from any settings file- The built-in default
--permission-mode or --dangerously-skip-permissions; what a resumed session restores lists the exceptions.
The built-in auto default requires Claude Code v2.1.228 or later on macOS, Linux, and WSL, and v2.1.233 or later on native Windows. On earlier versions, the built-in default is Manual.
The built-in default depends on how you run Claude Code, on your plan, and on whether Claude Code could fetch its feature flags. The first row that matches your session applies. The table covers sessions you start in a terminal or through the VS Code extension; for the desktop app and claude.ai, see the Desktop and Web tabs in Switch permission modes.
In those same two cases, feature-flag fetching off or the first session after an install or upgrade, the VS Code extension ignores every settings file when choosing the starting permission mode and uses
default.
When the flag, a settings file, or the built-in default selects auto but auto mode isn’t available to the session, Claude Code starts the session in Manual instead. Auto mode is unavailable when a settings file turns it off or the model doesn’t support it.
The first time the built-in default starts one of your sessions in auto mode, Claude Code shows a notice that links to this page:
- In a terminal, once, at the top of the session
- In the VS Code extension, as a card on the new-conversation screen that stays until you dismiss it
~/.claude/settings.json sets a defaultMode other than auto and no other settings file sets one, your sessions keep starting in that mode. Claude Code asks once, in the terminal or in the VS Code extension, whether to change the setting to auto mode. If you decline, your setting stays as it is.
Start in a different permission mode
You can set the starting permission mode for one session, or as a default for every session on a machine, in a project, or in an organization. When more than one settings file setspermissions.defaultMode, settings precedence decides, so a project or managed value outranks ~/.claude/settings.json. To change the permission mode of a session that’s already running, see Switch permission modes.
This example makes every terminal session on your machine start in Manual mode, whose config value is
default. Save it in ~/.claude/settings.json:
⏸ manual mode on in the status bar.
Switch permission modes
Each interface has its own control for switching permission modes during a session and its own way of choosing the permission mode new sessions start in. Asking Claude in chat to change the permission mode doesn’t work. Select your interface to see its controls.- CLI
- VS Code
- JetBrains
- Desktop
- Web and mobile
During a session: press As a default: set
Shift+Tab to cycle permission modes. From auto, the first press switches to default, and the cycle then runs default → acceptEdits → plan → back to default. Optional modes, described below, slot in after plan. The status bar shows the active mode as a gray ⏸ manual mode on for default, or as ⏵⏵ accept edits on, ⏸ plan mode on, ⏵⏵ auto mode on, ⏵⏵ don't ask on, or ⏵⏵ bypass permissions on.Not every mode is in the default cycle:auto: appears when your account meets the auto mode requirements; cycling to it switches permission modes without a confirmation promptbypassPermissions: appears after you start with--permission-mode bypassPermissions,--dangerously-skip-permissions,--allow-dangerously-skip-permissions, orpermissions.defaultMode: "bypassPermissions"in settings; the--allow-variant adds the permission mode to the cycle without activating itdontAsk: never appears in the cycle; set it with--permission-mode dontAsk
plan, with bypassPermissions first and auto last. If you have both enabled, you will cycle through bypassPermissions on the way to auto.At startup: pass the permission mode as a flag.permissions.defaultMode at the scope you want, as described in Start in a different permission mode.The same --permission-mode flag works with -p for non-interactive runs.Auto-approve file edits with acceptEdits mode
acceptEdits mode lets Claude create and edit files in your working directory without prompting. The status bar shows ⏵⏵ accept edits on while this mode is active.
In addition to file edits, acceptEdits mode auto-approves common filesystem Bash commands: mkdir, touch, rm, rmdir, mv, cp, and sed. These commands are also auto-approved when prefixed with safe environment variables such as LANG=C or NO_COLOR=1, or process wrappers such as timeout, nice, or nohup. Like file edits, auto-approval applies only to paths inside your working directory or additionalDirectories. Paths outside that scope, writes to protected paths, rm and rmdir removals targeting a critical path, and all other Bash commands except the built-in read-only set still prompt.
When the PowerShell tool is enabled, acceptEdits mode also auto-approves Set-Content, Add-Content, Clear-Content, and Remove-Item on in-scope paths, along with their common aliases. The same scope and protected-path rules apply, and Remove-Item gets its own check. A positional argument that contains a quote character, such as the apostrophe in Set-Content .\notes.txt "It's done", still prompts even on in-scope paths, because Claude Code can’t statically validate an argument whose quoted and unquoted readings differ. Pass the content through a named parameter such as -Value to avoid the prompt.
Use acceptEdits when you want to review changes in your editor or via git diff after the fact rather than approving each edit inline.
Press Shift+Tab once from Manual mode to enter it, or start with it directly:
Analyze before you edit with plan mode
Plan mode tells Claude to research and propose changes without making them. Claude reads files, runs shell commands to explore, and writes a plan, but does not edit your source. Except in sessions with bypass permissions available, edits stay blocked until you approve the plan. When auto mode is available and theuseAutoModeDuringPlan setting is on, which it is by default, the classifier reviews shell commands during planning instead of prompting you. Approved commands run, and rejected ones are blocked. Otherwise, commands outside the built-in read-only set prompt for approval, including when the sandbox’s auto-allow mode is enabled. In sessions with bypass permissions available, neither the classifier nor a prompt applies to planning commands; Skip all checks with bypassPermissions mode covers the few things that still prompt there. In v2.1.212 through v2.1.217, sessions without bypass permissions prompted for every command outside the read-only set, whether or not auto mode was available.
Enter plan mode by pressing Shift+Tab or prefixing a single prompt with /plan. You can also start in plan mode from the CLI:
Shift+Tab again to leave plan mode without approving a plan.
Review and approve a plan
When the plan is ready, Claude presents it and asks how to proceed. From that prompt you can choose:- Yes, and use auto mode: approve and start in auto mode. When auto mode is unavailable, this option reads Yes, auto-accept edits. Sessions started with bypass permissions enabled show Yes, and bypass permissions instead.
- Yes, manually approve edits: approve and review each edit individually.
- No, keep planning: stay in plan mode and tell Claude what to change.
Shift+Tab, or prefix your next prompt with /plan.
Press Ctrl+G to open the proposed plan in your default text editor and edit it directly before Claude proceeds. When showClearContextOnPlanAccept is enabled, the list gains a first option that approves the plan and clears the planning context.
Accepting a plan also names the session from the plan content automatically, unless you’ve already set a name with --name or /rename.
Set plan mode as the default
To make plan mode the default for a project’s terminal sessions, setdefaultMode in .claude/settings.json. Conversations the VS Code extension starts don’t read project settings for the starting permission mode. There, set claudeCode.initialPermissionMode to plan in your VS Code user settings instead. This example sets the project default:
Eliminate permission prompts with auto mode
Auto mode lets Claude execute without routine permission prompts. A separate classifier model reviews actions before they run, blocking anything that escalates beyond your request, targets unrecognized infrastructure, or appears driven by hostile content Claude read. Explicit ask rules still force a prompt. On Pro, Max, and Team plans, auto mode is the built-in starting permission mode. The classifier also reviews each message Claude sends to another agent withSendMessage, whether plain text or a structured agent team message, before Claude Code delivers it, both in auto mode and in plan mode while the classifier reviews commands; the send review requires Claude Code v2.1.222 or later.
The classifier also reviews and approves or blocks rm and rmdir removals targeting a critical path, such as rm -rf / and rm -rf ~, including when the removal sits inside command or process substitution.
Auto mode also nudges Claude to keep working without stopping for clarifying questions, though Claude still asks when your prompt or a skill explicitly relies on it. For stronger autonomous behavior in a mode that still prompts you, set the Proactive output style instead.
Auto mode is available only when your account meets all of these requirements:
- Plan: All plans.
- Organization: on Team and Enterprise, auto mode is available by default. Administrators can turn it off for the organization by setting
permissions.disableAutoModeto"disable"in managed settings. - Model: on the Anthropic API and Claude Platform on AWS, Claude Opus 4.6 or later, Sonnet 4.6 or later, or Fable 5. On Amazon Bedrock, Google Cloud’s Agent Platform, Microsoft Foundry, and signed-in Claude apps gateway sessions, only Claude Sonnet 5, Opus 4.7 or later, and Fable 5. Older models, including Sonnet 4.5, Opus 4.5, Haiku, and claude-3 models, are not supported on any provider.
- Provider: available by default on the Anthropic API, Claude Platform on AWS, Amazon Bedrock, Google Cloud’s Agent Platform, Microsoft Foundry, and signed-in Claude apps gateway sessions.
defaultMode: "auto" in settings and a terminal session starts in Manual mode with no error, the setting is likely in .claude/settings.json or .claude/settings.local.json. In Claude Code v2.1.142 and later, auto doesn’t take effect from those files. Move it to ~/.claude/settings.json. For a conversation the VS Code extension started, check the extension’s own list in Switch permission modes instead.
Auto mode on Bedrock, Agent Platform, or Foundry
On Amazon Bedrock, Google Cloud’s Agent Platform, Microsoft Foundry, and signed-in Claude apps gateway sessions, auto mode appears in theShift+Tab cycle by default. Appearing in the cycle doesn’t change the permission mode a session starts in: on these providers, terminal sessions start in your defaultMode, which is Manual unless you change it, and conversations in the VS Code extension start in Manual unless claudeCode.initialPermissionMode or a mode you picked in the extension sets one. Only Claude Sonnet 5, Opus 4.7 or later, and Fable 5 are supported on these providers.
To make auto mode the default starting permission mode, set "permissions": {"defaultMode": "auto"} in user or managed settings. In sessions the VS Code extension starts, select Auto from the mode indicator instead. Switch permission modes covers what outranks that pick.
The /doctor checkup proposes this user-settings default on these providers the same way it does on the Anthropic API.
To prevent developers from using auto mode, set disableAutoMode to "disable" in managed settings. This removes auto from the Shift+Tab cycle, and a session started with --permission-mode auto starts in Manual instead.
In v2.1.158 through v2.1.206, auto mode was off on these providers until you set CLAUDE_CODE_ENABLE_AUTO_MODE=1, and Claude Code ignored defaultMode: "auto" on these providers unless the variable was also set. The variable is still accepted for compatibility and has no effect from v2.1.207 onward.
What the classifier blocks by default
The classifier trusts your working directory and the remotes that were configured for it when the session started. A remote added or repointed during the session withgit remote add or git remote set-url isn’t trusted, and everything else is treated as external until you configure trusted infrastructure. Before v2.1.200, remotes added mid-session were also trusted.
Blocked by default:
- Downloading and executing code, like
curl | bash - Sending sensitive data to external endpoints
- Production deploys and migrations
- Mass deletion on cloud storage
- Granting IAM or repo permissions
- Modifying shared infrastructure
- Irreversibly destroying files that existed before the session
- Force push
- Committing or pushing a change that would send secrets or sensitive data outside the repository when it runs, or widen what a deploy exposes. This covers a CI workflow or deploy configuration that hands a secret to a destination that doesn’t already receive it, a script or setup step that reads a secret store and sends the data out, and a config change that widens what a deploy publishes, such as a registry, visibility, artifact, or sourcemap setting. The check applies on any branch, applies even when the repository is public, and fires when the change lands, whether or not that landing triggers the pipeline; clearing it requires naming the execution effect, not only the commit or push. Before v2.1.211, this check was scoped to the default branch instead: a push there was blocked when it carried sensitive content, changes concealed or misdescribed relative to what you asked for, content ported in from outside the repository, or routed around a review you asked for
git reset --hard,git checkout -- .,git restore .,git clean -fd,git stash drop, orgit stash clear, which the classifier presumes would discard uncommitted changesgit commit --amendwhen the commit at HEAD was not created in this session- From v2.1.198,
git commit --amendwhen the commit at HEAD has already been pushed. A message-only reword is not blocked:--amend -mwith nothing newly staged, on a commit that Claude created during this session terraform destroy,pulumi destroy,cdk destroy, orterragrunt destroy, and applying a plan that destroys resources
- Writing to a secret manager, or changing DNS records or TLS certificates
- Merging a pull request no human has approved, approving Claude’s own pull request, or disabling CI checks
- Posting a comment that is itself a command to automation, such as
atlantis applyor a bot’s/deployor/merge - Toggling, ramping, or deleting a production feature flag
- Applying infrastructure changes to a protected IaC scope, or draining and removing cluster nodes
- Writes to a shared compute cluster that reach beyond the resource you named, such as a label selector or
--allthat catches other users’ jobs - Creating Kubernetes resources that run on every node or intercept cluster traffic, such as DaemonSets and admission webhooks
- Interactive shells or port-forwards into a sensitive remote target
- Opening a tunnel or reverse shell that makes a local service reachable from the public internet
- Printing a live credential or token into the transcript or a file
- Accessing a location listed as a sensitive data location in your environment, or copying data out of one. As of v2.1.198 this also blocks sending data from one to an audience the entry excludes
- Routing a package install around your internal package registry to a public registry. As of v2.1.198, this also applies when you’ve told Claude an internal registry or mirror exists in the conversation, not only when one is listed in your environment
- Running a command with a flag that disarms a safety guard, like
--insecure - Launching an autonomous agent loop that runs without human approval or a sandbox, such as one started with
--dangerously-skip-permissionsor--no-sandbox. As of v2.1.198 this also covers running a third-party agent or eval harness with isolation and per-action approval disabled, such as a runner started with--yes-always - Claude in Chrome browser actions that could send page content, cookies, or credentials off-origin
- Deleting files in
/tmp,$TMPDIR, or another shared scratch or cache directory by wildcard, glob, or age filter rather than by a specific named path - Including sensitive details in content sent, uploaded, published, or written to other people or shared systems, when your own message didn’t authorize those details for that recipient. PR and issue bodies, commit messages, and comments count as this kind of outbound content when the repository is outside the trust boundary or public, including your organization’s own public repositories; internal file paths, code names, live API response data such as emails or account identifiers, and infrastructure identifiers count as sensitive details. The PR, issue, and commit-message scoping requires Claude Code v2.1.200 or later. Live personal data from an API response in a PR or issue body, such as an email address, an account or organization identifier, or a usage metric, requires you to name those details and the recipient regardless of the repository’s visibility or trust boundary. That check requires Claude Code v2.1.203 or later
- Sending keystrokes to Claude Code’s own tmux pane to drive its own interface, which the classifier treats as Claude changing its own permissions or oversight
- Commenting out, deleting, or force-passing a test or assertion that guards security behavior, such as auth, access control, input validation, or sandboxing
- Deleting or tearing down a stateful resource Claude didn’t create in the session, when no more specific deletion rule applies and you didn’t name that resource
- Repointing an API base URL, proxy endpoint, webhook receiver, or registry mirror at a third-party host that doesn’t fit the task, including in example files like
.env.example - Changing where pushes go with
git remote set-urlorgit remote add, unless you named the new remote - Pushing secrets or personal or entrusted data to a repository known to be public, or pushing confidential material there that isn’t part of that repository’s own work. A dotfiles repository’s own subject matter is the one exception for personal or entrusted data, and content from a private repository reaching any public surface is blocked the same way; both refinements require Claude Code v2.1.203 or later. Before v2.1.203, personal data was grouped with confidential material and blocked only when it wasn’t part of that repository’s own work. When a repository’s visibility isn’t established, the classifier doesn’t block on that alone; it judges the content against the other rules instead
- Opening a pull request against a different repository or organization, forking with
gh repo fork, or pushing to a third-party repository, unless you named that external target
- Content from a sensitive local store, or from a file whose name, path, or type marks it as sensitive, entering a commit, a push, PR or issue text, a gist or paste, or a package publish, unless you named both the source and the destination. Session transcripts and conversation logs, credential and configuration dot-folders such as SSH keys, cloud credentials, browser profiles, and shell history, and user-data exports all count, and the repository being private doesn’t clear it
- Writing to Claude Code session transcripts, the
.jsonlhistory files under~/.claude/projects/or your configured config directory, whether directly or through a shell command. The rule also covers the metadata lines Claude Code appends to each transcript entry for its own checks. Reading a transcript isn’t blocked - A recursive forced delete such as
rm -rf "$VAR"orRemove-Item -Recurse -Force $dirwhose target is a shell variable, or a glob rooted at one, that isn’t assigned anywhere in the conversation the classifier sees. The value came only from earlier command output, which the classifier never receives, so the classifier can’t verify the deletion target against the other deletion rules. The block clears when you name the exact path being deleted, or when Claude re-runs the delete with the resolved literal path written into the command. Deletes whose target the classifier can resolve aren’t affected.Remove-Itemtargets that are a bare*or end in/*or\*never reach the classifier: Claude Code denies them outright
- Local file operations in your working directory
- Installing dependencies declared in your lock files or manifests
- Reading
.envand sending credentials to their matching API - Read-only HTTP requests
- Pushing to any branch of the repository you’re working in, including the default branch. A non-default branch whose name marks it as a deploy or publication target, such as
productionorgh-pages, isn’t covered: the classifier judges a push there on its own terms. The push’s content is still checked against the other rules,permissions.denyrules can still block pushes to specific branches outright in every mode, and the remote’s own branch protection still applies. Before v2.1.211, only pushes to the branch you started on, branches Claude created, and routine pushes to the default branch were allowed by default, and before v2.1.203 any direct push to the default branch was blocked
- Deleting the exact jobs Claude created earlier in the same session
- Reading, reviewing, or writing security-related code, configs, and threat models as part of your task
- Messages between agents working together in the same multi-agent session
- Sending data to the trusted domains, buckets, and services you list in
environment. This covers data flow only, not destructive or credential operations on the same infrastructure - Claude in Chrome navigation to a trusted internal domain, localhost, or a URL you named
- An allow is reused until new content enters the conversation, at which point that host is checked again
- Claude Code v2.1.234 and later reuse a deny caused by the conversation outgrowing the classifier’s context window until new content enters the conversation, or until compaction shrinks what the classifier reads. Claude Code then checks the host again
- A deny that the classifier reached by evaluating the request lasts for the turn in the interactive CLI. In non-interactive mode and Agent SDK sessions, Claude Code reuses that deny for the rest of the run, because those sessions have no turn boundary
- Changing your permission mode or rules drops all cached verdicts
claude auto-mode defaults to print the full rule lists as JSON. If routine actions get blocked, an administrator can add trusted repos, buckets, and services via the autoMode.environment setting: see Configure auto mode.
Pushing to any branch of the repository you’re working in and creating a pull request that matches your request run without a prompt, unless the change would send secrets or sensitive data outside the repository or the pull request targets a different repository or organization, the cases the blocked list covers. To require a human checkpoint before these actions while staying in auto mode, add permissions.ask rules: see Common boundaries.