Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.277 ·

Plugin $.fetch gains an experimental Unix-socket transport (socketPath)

Plugin fetch can now connect over a Unix socket instead of a network address, as an experimental option

TierUse it nowhow much it should matter to you
Useful4my rating, 1 to 5
Signal3worth watching, 1 to 5
AreaPlugin APIwhat it touches
KindNew Featuresin v2.1.277,
Use it now Notable

Plugin fetch can now connect over a Unix socket instead of a network address, as an experimental option

What

The sandboxed $.fetch helper available to plugins now accepts a socketPath option to connect over a Unix socket (a local, file-based connection) rather than over the network. The path must be absolute, must not contain a NUL byte, and must not resolve to a network location; if the build doesn't support Unix sockets, it throws "no Unix socket transport in this build." When credentials are used with a socket connection, the request forces strict TLS certificate checking and disables connection keep-alive.

Why

This lets plugins talk to local services listening on a Unix socket, useful for tools that expose a local API without going through the network, while keeping the same path and security validation Claude Code already applies elsewhere.

Read from
Names in the bundlesocketPath
What the documentation says

See this entry in the whole of v2.1.277 →