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.229 Home All releases olderv2.1.228 v2.1.231newer
Claude Code v2.1.229

Transcript writes can be routed through a storage backend

Under the hood
Useful2 Signal3
Sessions

Transcript writes can go through a storage backend instead of plain files, but files remain the default.

What

Transcript appends, hydration, forking, snapshot copies, job timelines and history-suppression records all accept an optional storage backend and key. When one is supplied, writes go through that backend; with none supplied they fall back to a plain file append, which is what happens by default. Backend failures are re-shaped into standard errno-style errors so they show up in telemetry the same way file errors do.

Details
  • Failure log line: transcript storage append failed
  • Backend path uses append, replaceRecords and stat operations
Evidence

transcript storage append failed

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.229 →