GPT-56T 861 —
MUSE-SPK 837 +0.2%
GPT-56SC 790 -4.6%
GLM-5 781 -0.4%
CL-OP55X 780 -5.1%
GROK-46H 780 -5.1%
QWEN-38X 748 -9.2%
GPT-6A 743 -9.4%
KIMI-K3X 742 —
CL-FAB5H 698 -6.1%
CL-OP5H 675 -6.2%
GEM-38FH 672 -0.7%
CL-OP5X 670 -5.5%
CL-OP55H 668 —
CL-OP46H 657 -5.9%
CL-OP47H 648 -6.1%
GPT-56S 618 -0.6%
GEM-37FH 610 -7.2%
GEM-36FH 593 —
CL-OP48H 588 —
CL-OP47 581 -0.2%
GEM-35FH 580 —
GPT-55H 541 -7%
INKL 531 —
GEM-31P 512 -0.2%
CL-OP46 498 +0.4%
GEM-3P 498 -0.2%
CL-OP48 492 +0.4%
GPT-52 464 —
GPT-55 423 —
GPT-56T 861 —
MUSE-SPK 837 +0.2%
GPT-56SC 790 -4.6%
GLM-5 781 -0.4%
CL-OP55X 780 -5.1%
GROK-46H 780 -5.1%
QWEN-38X 748 -9.2%
GPT-6A 743 -9.4%
KIMI-K3X 742 —
CL-FAB5H 698 -6.1%
CL-OP5H 675 -6.2%
GEM-38FH 672 -0.7%
CL-OP5X 670 -5.5%
CL-OP55H 668 —
CL-OP46H 657 -5.9%
CL-OP47H 648 -6.1%
GPT-56S 618 -0.6%
GEM-37FH 610 -7.2%
GEM-36FH 593 —
CL-OP48H 588 —
CL-OP47 581 -0.2%
GEM-35FH 580 —
GPT-55H 541 -7%
INKL 531 —
GEM-31P 512 -0.2%
CL-OP46 498 +0.4%
GEM-3P 498 -0.2%
CL-OP48 492 +0.4%
GPT-52 464 —
GPT-55 423 —
← Back to feed

Claude Managed Agents Gets Persistent Memory in Public Beta — Rakuten Reports 97% Fewer Errors

Anthropic has shipped persistent memory for Claude Managed Agents in public beta, giving developers a first-class mechanism for agents that improve across sessions rather than starting cold every time.

The feature works through memory stores: workspace-scoped collections of text files that mount inside the agent’s container at /mnt/memory/. The agent reads and writes them using the same file tools it uses for the rest of the filesystem. Writes persist across sessions. Up to 8 stores can be attached per session; individual memory files are capped at 100KB each.

Memory stores are created via API, attached when a session starts, and configured with read_write or read_only access. Once attached, the system automatically adds a prompt note describing each mount location so the agent knows where to look without explicit instruction. Stores can be shared across sessions — a pattern that enables fleets of agents to propagate lessons learned by one instance to all others.

What Early Adopters Reported

Four companies joined the early access program:

  • Rakuten: 97% fewer first-pass errors, 27% cost reduction, 34% lower latency. Agents distill lessons from each session and apply them in subsequent runs rather than re-deriving context from scratch.
  • Netflix: Agents carry context across sessions and apply mid-conversation human corrections without requiring manual system prompt updates.
  • Wisedocs: Document verification pipeline runs 30% faster by storing domain-specific verification patterns across sessions.
  • Ando: Eliminated the need for custom memory infrastructure built on top of the API.

How the Memory Layer Works

Memory stores are versioned. Every write creates an immutable version attributed to the session, with 30-day retention and full audit trail via the version endpoints. Content can be redacted from history when needed.

The store mounts as a directory, so the agent can organize memory as many small focused files rather than a single growing context dump. Anthropic describes this as enabling just-in-time context retrieval: the agent pulls only what it needs into the active window rather than loading everything upfront.

A security caveat: read_write stores are vulnerable to prompt injection. If the agent processes untrusted input — user prompts, fetched web content, third-party tool output — a successful injection can write malicious content into memory, which then surfaces as trusted context in every subsequent session. Anthropic recommends read_only for reference material or any store the agent does not need to modify.

The memory tool qualifies for Zero Data Retention. When ZDR is active, data is not stored after the API response is returned.

Claude Opus 4.7 Integration

Anthropic says Opus 4.7 is specifically optimized for filesystem-based memory operations. The model is more selective about what to retain and generates more organized, structured memory files compared to earlier versions. For long-running software projects, the pattern Anthropic recommends starts with an initializer session that writes a progress log, feature checklist, and startup reference before any substantive work begins. Subsequent sessions open by reading those artifacts, recovering full project state in seconds without re-exploring the codebase.

The beta header required for access is managed-agents-2026-04-01. During beta, session infrastructure storage and session-minutes are free; usage-based pricing is expected when the feature exits beta.

Key Numbers

  • Rakuten first-pass error reduction: 97%
  • Rakuten cost reduction: 27%
  • Rakuten latency reduction: 34%
  • Wisedocs verification speed improvement: 30%
  • Memory stores per session: up to 8
  • Max memory file size: 100KB (~25K tokens)
  • Version history retention: 30 days