Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v1.0.125 Home All releases olderv1.0.124 v1.0.126newer
Claude Code v1.0.125

Sandbox Command Exemptions

What: Configure specific commands to always bypass the sandbox, even when sandbox mode is enabled.

How to use: Add an unsandboxedCommands array to your sandbox configuration in .clauderc:

{
  "sandbox": {
    "unsandboxedCommands": ["git", "docker", "gcloud", "aws"]
  }
}

Details:

  • Commands in this list will never run in the sandbox environment
  • Matching uses smart logic: matches both exact command names and commands with arguments (e.g., "git" matches both git and git push)
  • Useful for commands that require unrestricted filesystem or socket access
  • Bypasses sandbox restrictions while still enforcing permission checks
  • Evidence: qu2() at line 383844, schema at line 363385, integration in Eu2() at line 383855

See this entry in the whole of v1.0.125 →