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.247 Home All releases olderv2.1.246 v2.1.248newer
Claude Code v2.1.247

Deleting a transcript message falls back to a streaming scan instead of giving up

You'll notice
Useful2 Signal2
Sessions

Deleting a transcript message now retries with a backwards scan instead of giving up.

What

Removing a message from a transcript stored in the newer on-disk format used to abandon the deletion when reading the end of the file failed. It now retries with a record-by-record scan that pages backwards through the file.

Details
  • The fallback only runs when the read error matches a specific recoverable case; other errors still abandon as before.
  • The scan is bounded by a sliding window size, a page size and a maximum number of bytes read.
  • It logs its own failure, Tombstone removal abandoned: stream stat failed, when it cannot even size the file.
Evidence

Tombstone removal abandoned: stream stat 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.247 →