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.225 Home All releases olderv2.1.224 v2.1.226newer

Secret-redaction patterns factored into shared lists

Under the hood
Useful2 Signal0
Telemetry

Secret-scrubbing rules live in one shared list so more paths can strip credentials consistently.

What

The credential-scrubbing regex table was split into two reusable arrays so more than one code path can apply the same rules.

Details
  • One array covers Bearer, Basic, sk-ant, sk-, AKIA and ASIA forms.
  • The other covers gh_ tokens, xox- tokens and JWTs.
  • The existing transcript redactor splices both lists in.
  • A new standalone helper applies all of them to any string, and is what the SDK error paths use for file paths.
Evidence

/\bey[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,}/g

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