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.0.54 Home All releases olderv2.0.53 v2.0.55newer
Claude Code v2.0.54

Session Memory Path Refactoring

What: Session memory now uses project-based paths instead of global paths, with centralized helper functions.

Details:

  • New path: <project-dir>/<session-id>/session-memory/ instead of <global-config>/session-memory/
  • Three new helpers: zI1() (base path), _B1() (summary.md path), zP3() (path check)
  • New summary.md file with structured template (Task specification, Files and Functions, Workflow, etc.)
  • Better isolation between projects and sessions
  • Evidence: zI1() at line 506034, _B1() at line 506037, jG2() summary reader at line 340819

See this entry in the whole of v2.0.54 →