Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Deeper second pass · 0/5 agents 427 findings $12.75 so far

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 v0.2.94 Home All releases olderv0.2.93 v0.2.96newer
Claude Code v0.2.94

Changes

Improved Import Specificity

The CLI now uses more targeted imports instead of importing entire modules:

  • Process Module: Instead of importing the entire node:process module, the CLI now imports only the cwd function directly:
  // Before: import YP6 from "node:process"
  // After:  import { cwd as Ti0 } from "node:process"

This change reduces memory footprint by only loading the specific functionality needed for getting the current working directory.

  • Stream Module: Similarly, the stream module import has been optimized to import only the PassThrough class:
  // Before: import Uz4 from "stream"
  // After:  import { PassThrough as MW8 } from "stream"

The PassThrough stream is used internally for piping data between different parts of the CLI without transformation.

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 v0.2.94 →