Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
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.
What's wrong with this entry?
This release focuses on optimizing module imports for better performance and cleaner code structure.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
The CLI now uses more targeted imports instead of importing entire modules:
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.
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.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Version 0.2.94 is a performance-focused release that optimizes how the CLI loads Node.js built-in modules. Users won't notice any behavioral changes, but the CLI should have slightly improved startup times and reduced memory usage due to more efficient module loading.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
v0.2.94 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.
The system prompt was not captured for this release, so this page cannot say whether it moved.