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.
Credential redaction in environment dumps can be skipped by the caller
Under the hood
Useful2Signal3
Internals
Environment-dump redaction can be skipped by callers, though it still redacts by default.
What's wrong with this entry?
Anonymous. No account, no email.
What
The helper that strips bearer tokens and credentials before environment variables are logged now takes a mode argument and returns the values untouched when a caller passes "none". The default is still to redact everything.
Evidence
if (e === "none") return r;
Strings lifted out of the shipped bundle, so the claim above can be checked against them.