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

Auto-mode classifier dump mirroring is compiled out

Under the hood
Useful1 Signal0
Permissions

A function for shipping auto mode's classifier inputs elsewhere returns immediately and nothing calls it.

Classifier dump mirroring exists as an empty-bodied function with no callers.

What

A function for shipping auto mode's classifier inputs elsewhere for inspection exists but its body is just an immediate return, so nothing is ever sent. Nothing in the build calls it either.

Details
  • It takes a session id, timestamp, stage, agent id and a map of already-mirrored system prompt hashes, and its unreachable error handler logs "Failed to mirror auto mode dump to CCR".
  • The matching state field on the auto-mode state class, a map of mirrored hashes, is declared and never read or written.
  • Two payload names, auto-mode-classifier-dump and auto-mode-classifier-system, are referenced only by a check used in one place, to filter those payloads out of a stream.
  • Two sibling names, auto-mode-env-edit- and auto-mode-builtins-, have no references at all.
Evidence

auto-mode-classifier-dump

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