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.200 Home All releases olderv2.1.199 v2.1.201newer

Memory Sync Error Classification Improvements

The HTTP error handler for memory operations now parses the server error body and maps specific server error messages to typed error codes:

  • "memory store has reached its memory limit"store_full
  • "content must be at most 102400 bytes"content_too_large
  • "memory content appears to contain a credential or API key"content_secret
  • Path validation failures ("path must be at most 1024 bytes", "path must be NFC-normalized", etc.) → invalid_path
  • "cannot modify archived resource"store_archived

Users will see more specific notifications when memory writes fail for these reasons, rather than generic HTTP error messages.

Evidence

Error classification map (search for "memory store has reached its memory limit", "cannot modify archived resource", "content must be at most 102400 bytes")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.1.200 →