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

Artifact share titles and name folding tightened

Under the hood
Useful2 Signal2
Artifacts

Shared artifact titles get cleaner quoting, and German sharp-S spellings no longer count as different names.

What

Live artifact sharing can now be given a callback that supplies the title, falling back to the URL, with quote characters normalised to apostrophes and an extra sanitizing pass. Separately, name collision handling for synced items now folds capital ẞ (U+1E9E) to ß before case folding, so the two spellings can no longer end up as different names.

Evidence

.replace(/\u1e9e/g, "\xDF")

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