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 includes minor internal optimizations to how modules are imported:
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?
cwd function directly from node:process instead of importing the entire modulePassThrough class directly from the stream module instead of importing the entire moduleOther releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
These changes represent a shift from default imports to named imports for better tree-shaking and reduced memory footprint:
// Before (v0.2.96)
import process from "node:process";
import stream from "stream";
// After (v0.2.97)
import { cwd } from "node:process";
import { PassThrough } from "stream";
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?
This is a maintenance release focused on code optimization with no changes to CLI commands, arguments, or interactive behavior.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
v0.2.97 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.