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.122 Home All releases olderv1.0.120 v1.0.123newer
Claude Code v1.0.122

Sandbox Violation Filtering

What: Configure which sandbox violations to ignore for specific commands or globally

How to use:

// In settings file
{
  "sandbox": {
    "ignoreViolations": {
      "*": ["/tmp", "/dev/null"],           // Ignore these paths for all commands
      "npm install": ["/private/var/folders"], // Ignore for specific command
      "python": ["/Library/Python"]
    }
  }
}

Details:

  • Reduces noise from expected/harmless sandbox violations
  • Violations are now correlated with the specific command that triggered them
  • Commands are base64-encoded in sandbox logs for precise tracking
  • Each violation now includes the command, not just the filesystem path
  • Evidence: Ec4 schema at line 370115, eR2() at line 370611, jc4() at line 370372

See this entry in the whole of v1.0.122 →