Custom Linux Sandbox Binary Paths #
What
Linux users can now configure exact bwrap and socat binary paths for sandbox and proxy bridge setup.
Usage
{
"sandbox": {
"bwrapPath": "/usr/bin/bwrap",
"socatPath": "/usr/bin/socat"
}
}
Details
bwrapPath controls the bubblewrap executable used for Linux sandboxing.socatPath controls the executable used for HTTP/SOCKS bridge processes.- Claude Code validates that configured paths are executable and reports clearer errors if not.
- This is useful on systems where these tools are installed outside
PATH, or where a managed environment pins exact binary locations.
Evidence
Sandbox schema adds bwrapPath and socatPath settings (search for "Linux only: absolute path to the bwrap" and "Linux only: absolute path to the socat binary")
MCP Wait For Servers [Gradual Rollout] #
What
Claude can wait briefly for MCP servers that are still connecting, then continue once their tools are available.
Usage
Claude calls WaitForMcpServers when an MCP server is still connecting.
Details
- The new
WaitForMcpServers tool waits for all pending servers, or for specific server names. - Results distinguish connected, failed, still pending, needs-auth, disabled, and unknown servers.
- Missing-tool guidance now tells Claude when a requested MCP tool belongs to a server that is still connecting.
- The tool is gated by
tengu_ashen_kelp, so it may not be visible for every user yet.
Evidence
MCP wait tool and gated enablement (search for "WaitForMcpServers" and "The MCP server '")
WebFetch HTTP Error Results #
WebFetch now returns structured HTTP failure information when a server responds with an error status, including status text and Retry-After when present. This should help users distinguish an authentication-required page, a rate limit, and a normal fetch failure without guessing from a generic exception.
Evidence
WebFetch HTTP error result text (search for "The server returned HTTP" and "The response body was not retrieved")
Fullscreen Renderer Controls #
Terminal fullscreen behavior is more conservative and easier to override. Claude Code now recognizes CLAUDE_CODE_DISABLE_ALTERNATE_SCREEN as an explicit opt-out, and it auto-disables fullscreen on Windows-over-SSH ConPTY sessions unless CLAUDE_CODE_NO_FLICKER=1 is set.
Evidence
Fullscreen environment handling (search for "CLAUDE_CODE_DISABLE_ALTERNATE_SCREEN" and "fullscreen disabled: Windows over SSH")
Background Session Detach Key #
Background session instructions now consistently use Ctrl+Z to detach, replacing older Ctrl+B then d and Ctrl+Q guidance in redraw/startup messages.
Evidence
Background session prompts (search for "Ctrl+Z to detach")
MCP Connection Resilience #
Remote MCP retry behavior now logs recovery and stops retrying once failed remote servers recover. MCP stdio transports also detect excessive non-protocol stdout and disconnect before unbounded memory growth.
Evidence
MCP retry and stdout overflow handling (search for "[MCP] Retry: all remote servers recovered, stopping" and "StdoutOverflowError")
Read-only command validation gained additional shell-edge-case detection, especially around zsh recursive evaluation, array subscripts, assignment side effects, redirect expansion, and escaped brace handling. These checks reduce cases where a command that looks harmless can still execute dynamic shell code.
Evidence
Shell safety reasons (search for "zsh $name[expr]", "assignment alters command lookup/execution", and "Redirect target starts with =")
Long-Running Command Guidance #
The Bash tool description now explains run_in_background more directly and removes stale advice to read output later immediately. Claude Code also includes stronger guidance to avoid foreground sleep and use background commands or Monitor for waiting.
Evidence
Background command guidance (search for "run_in_background runs the command detached" and "Foreground sleep is blocked")
Policy Limit Cache Handling #
When policy limits are fetched and no restrictions apply, Claude Code now preserves an explicit cached empty result instead of treating it like a deleted cache file. This should reduce noisy policy-limit cache churn in environments with no active restrictions.
Evidence
Policy limit cache message (search for "Policy limits: No restrictions (cached empty)")
Service Availability Messages #
Daemon/service messages now distinguish unsupported installation from on-demand operation, making platform limitations clearer.
Evidence
Service messaging (search for "service install not available on this platform" and "service uninstall not available on linux")