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

Unix Domain Socket Support for Network Permissions

What: Network permissions now support Unix domain sockets for local IPC, enabling tools like SSH agents and Docker to work within the sandbox.

How to configure:

{
  "permissions": {
    "network": {
      "allowUnixSockets": true  // Allow all Unix sockets
    }
  }
}

Or with specific paths:

{
  "permissions": {
    "network": {
      "allowUnixSockets": [
        "/var/run/docker.sock",
        "~/.ssh/agent.sock"
      ]
    }
  }
}

Details:

  • Three modes: true (allow all), false (block all - default), or array of specific socket paths
  • Currently implemented for macOS sandbox profiles using (remote unix-socket) directive
  • Essential for Docker, SSH agents, and other development tools requiring local IPC
  • Type: boolean | string[]
Evidence

Schema definition at lines 354206-354217, implementation at lines 374968-374975, parameter usage at line 375216

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v1.0.120 →