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

Memory path resolution calls a warm-up step that currently does nothing

Under the hood
Useful1 Signal4
Memory

Memory path lookups call a new warm-up step that currently does nothing at all.

A workspace-root priming step is wired into seven memory call sites but its body is empty, so lookups still fall back to the git root.

What

Seven places that touch auto-memory, including the memory file watcher and the memory tool, now await a new warm-up call before resolving paths. Its body immediately resolves and nothing ever fills the canonical workspace root it is meant to prime, so path resolution still falls back to the existing git-root lookup.

Details
  • The resolver gained fields for the canonical root, a per-project map of it, and the warm-up promise, plus a latch cleared on reset.
  • The per-project lookup feeds the project-directory hash but always returns undefined in this build.
  • No flag involved; the call sites shipped ahead of the implementation.
Evidence

warmCanonicalWcRoot

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