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.242 Home All releases olderv2.1.241 v2.1.243newer
Claude Code v2.1.242

The remote-tools runtime loads as a separate chunk on first use

Not switched on
Useful1 Signal4
Remote Tools

Running tools on another machine now loads only when used, and its gate is off in this build.

The remote-tools runtime is present as an on-demand chunk but its gate is off, so it never loads.

What

The machinery for running tools on another machine is fetched with a dynamic import and cached rather than being linked into the main bundle, keeping it off the startup path entirely while its gate is off.

Details
  • If the import throws, the failure is logged and the loader resets, so a later access retries instead of staying broken.
  • With no runtime loaded, there is simply no remote tool host.
Evidence

createRemoteToolHostsRuntime

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 v2.1.242 →