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 v2.1.248 Home All releases olderv2.1.247 v2.1.250newer
Claude Code v2.1.248

Remote agent proxy adds upload and receive backpressure, with two env kill switches

Use it now
Useful3 Signal4
Remote Agents Notable not in their notes

The remote agent proxy now caps stalled uploads and reads, with two env vars to disable each.

CCR_AGENT_PROXY_RECEIVE_GATE_DISABLEDCCR_AGENT_PROXY_UPLOAD_GATE_DISABLED
What

The remote agent proxy tunnel now aborts an upload with a visible reason if the tunnel accepts no bytes for 60 seconds, and pauses reads past a receive high-water mark. Two new environment variables, CCR_AGENT_PROXY_RECEIVE_GATE_DISABLED and CCR_AGENT_PROXY_UPLOAD_GATE_DISABLED, turn each limit back off. Both are unset by default, so the limits are active for anyone running the remote proxy.

Details
  • Defaults: sendPauseAfterPendingBytes: 0, sendStallTimeoutMs: 60000, plus receive high/low water marks and a queued-download report size.
  • The two variables are read once at proxy startup and then removed from the inherited environment, so child processes do not see them. Both names were added to the remote env allowlist.
  • The whole path requires CCR_AGENT_PROXY_ENABLED and a remote (CLAUDE_CODE_REMOTE) session.
Usage
CCR_AGENT_PROXY_UPLOAD_GATE_DISABLED=1 claude
Evidence

CCR_AGENT_PROXY_UPLOAD_GATE_DISABLED, CCR_AGENT_PROXY_RECEIVE_GATE_DISABLED

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

See this entry in the whole of v2.1.248 →