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.236 Home All releases olderv2.1.235 v2.1.237newer
Claude Code v2.1.236

Saved database documents land under a per-collection path, with per-document skip reasons

You'll notice
Useful3 Signal2
Artifacts not in their notes

Saved database documents go into per-collection folders, and you get a list of skipped ones with reasons.

out_dir
What

Documents saved by an artifact database read are written to <out_dir>/<collection path>/<doc_id>.json, large ones compacted, and the read returns empty data plus a list of the files written and the ones skipped.

Details
  • Per-document skip reasons cover an unusable id, a duplicate name, an unsafe name, and a name that was not approved.
  • If any target file is denied by the file-edit rules, the whole save is aborted rather than partially written.
  • New failure codes distinguish a denied write, a file kept, a file moved, and a general error.
Evidence

Add \out_dir\ to a read to save each returned document as a JSON file under that directory

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