← All posts Abstract illustration of a wireframe tangled knot with one thread breaking free and drifting upward

Key Takeaways

  • Claude Memory (public beta since 23 April 2026) and Dream (research preview, announced 6 May 2026) give agents durable, self-curating memory that persists across sessions.
  • Rakuten reported a 97 percent reduction in first-pass errors and Wisedocs a 30 percent faster document verification workflow after deploying Memory-enabled agents.
  • Harvey, the legal AI platform, reported a sixfold increase in task completion after enabling Dream, though the figure is Anthropic-published and comes from long-form legal drafting.
  • Anthropic held roughly 40 percent of enterprise LLM API spend in late 2025, ahead of OpenAI's 27 percent, per Menlo Ventures' survey of 495 US enterprise decision-makers.
  • Before deploying, plan for memory data governance, human-in-the-loop review of Dream in regulated workflows, periodic audits, and a cost model favouring high-volume, repeating tasks.

Persistent context is one recurring production problem for enterprise agents. A pilot can perform well while its prompts and reference data are fresh, then lose useful context between sessions or accumulate stale instructions over time. Memory is not the only cause of agent failure, but it is an architectural constraint teams otherwise have to solve themselves.

Anthropic has designed two Managed Agents features around that constraint. Memory, in public beta since 23 April 2026, provides durable, versioned, developer-controlled stores that persist across sessions. Dream, announced at Code with Claude on 6 May 2026 and currently in research preview, schedules reviews of past sessions and can propose or apply changes to those stores.

Together, the features may reduce custom persistence and curation work. Whether they reduce total operating effort depends on the workload, review policy and quality of the stored material.


The Problem These Features Solve

Enterprise AI deployments have historically faced three compounding challenges that limit how far adoption can go:

Memory and Dream address the first two directly. Multiagent orchestration — also now in public beta — tackles the third. Used together, they remove the ceiling that has kept enterprise AI confined to narrow, carefully managed use cases.


Memory — Durable Knowledge That Agents Control

Claude Memory stores are persistent, versioned text documents mounted to an agent's file system at /mnt/memory/<store-name>/. Agents read and write them using standard file tools — there is no special API to learn, no new abstraction layer. From an agent's perspective, memory is just files.

That simplicity hides real engineering underneath. Every write produces an immutable version (memver_...), so any change can be inspected, rolled back, or redacted without touching the agent's underlying model. Developers can configure stores as read-only (for shared organisational knowledge) or read-write (for user- or team-specific context). Concurrency controls prevent conflicts when multiple agents access the same store at once.

What this means in practice:

Early adopters have published numbers worth examining. Rakuten reported a 97 percent reduction in first-pass errors after deploying Memory-enabled agents, and Wisedocs’ document verification workflow ran 30 percent faster. Both figures come from named customer case studies published within Anthropic's commercial ecosystem, not controlled or independent evaluations. They demonstrate potential in those workflows, not an expected effect size for other deployments.

Critically for enterprise teams, every memory write is developer-controlled. Data is exportable, editable, and redactable via the API or the Claude Console. The agent learns, but the organisation retains ownership of what it has learned.


Dream — Automated Memory Curation

Memory addresses persistence. Dream is Anthropic's approach to curation.

In any long-running enterprise deployment, memory stores accumulate noise. Resolved edge cases stop being relevant, context goes stale, entries duplicate, and patterns that helped six months ago get superseded. Without intervention, the signal-to-noise ratio degrades and agents perform worse, not better, the longer they run. This is the slow failure mode that most enterprise teams do not see coming.

Dream is a scheduled, asynchronous process that runs between active sessions. It reviews up to 100 past sessions alongside the current memory store to identify patterns and deduplicate entries, then surfaces recurring insights and reorganises memory into a more effective structure. Developers can configure it to apply updates automatically or to surface proposed changes for human review before they take effect.

Critically, Dream analyses across agents at once, not just within a single session. This means it can surface insights that no individual session could observe — recurring mistakes made across different users, converging workflow patterns, team-level preferences. In effect, the agent stops learning only from its own sessions and starts learning from the whole deployment.

The performance data comes with a caveat: it is from Anthropic's own announcement, not an independent benchmark. Harvey, the legal AI platform, reported a 6x increase in task completion rates after enabling it, driven mostly by agents no longer repeating the same filetype and tool-specific mistakes across sessions. Whether that multiple holds outside long-form legal drafting, where failure modes are unusually consistent, is untested.

The commercial hypothesis is a compound effect: useful operational history accumulates while Dream keeps the store legible. That is plausible, but it has not yet been demonstrated through an independent, year-long comparison. Teams should treat improved memory as a testable system behaviour, not assume that the underlying model has learned; its weights remain unchanged.


What This Changes — and What It Does Not

Maintenance overhead is one reason agent pilots struggle in production. Persistent memory can remove some plumbing, but it also creates a governed data asset that needs permissions, retention rules, quality checks and monitoring.

Memory and Dream directly address that maintenance burden. Consider what teams no longer need to build or manage:

The Managed Agents platform handles surrounding infrastructure including stateful sessions, immutable event histories, permission controls and optional self-hosted sandboxes. That can shift engineering effort towards domain logic, but it does not remove the need to evaluate outputs, operate the service or govern the data retained in memory.

Anthropic has positioned this explicitly as infrastructure in the same category as databases or email hosting: something enterprises consume as a managed service, not something they build from scratch. Anthropic held roughly 40 percent of enterprise LLM API spend as of late 2025, ahead of OpenAI's 27 percent, according to Menlo Ventures' survey of 495 US enterprise decision-makers. That positioning is landing. Worth reading that number carefully: it measures the model-API layer, roughly $12.5bn of a $37bn enterprise generative-AI market, not enterprise AI spending as a whole.


What to Consider Before Deploying

Memory and Dream are powerful, but they introduce considerations worth planning for before you commit to a production architecture.

Data governance

Memory stores persist sensitive information across sessions. Before deploying, define what categories of data agents are permitted to write to memory and configure store permissions accordingly. Read-only stores suit shared organisational knowledge; read-write stores are appropriate for user- or team-specific context. Use the distinction deliberately rather than defaulting everything to read-write.

Human-in-the-loop for Dream

Dream can apply memory updates automatically or hold them for review. For regulated industries or high-stakes workflows — legal, financial, clinical — the review mode is the safer default until you have built confidence in the system's judgment. The performance benefit is still there; it just comes with an additional approval step.

Memory as a single point of drift

An agent with high-quality memory performs far better than one without. The inverse is also true: poorly curated memory can entrench bad patterns. Audit memory stores periodically in the same way you would audit any critical configuration. Dream reduces this risk substantially, but it does not eliminate it.

Cost model

Memory stores and Dream cycles consume compute. Public evidence is not yet broad enough to claim a typical return. Model the storage and review cost against measured changes in task completion, human-review time and error rates in your own workload. Repeating, high-volume tasks are the clearest place to test the hypothesis.


Claude Memory and Dream make persistent context a managed platform capability rather than an entirely bespoke application layer. That is architecturally useful. It is not the same as autonomous learning, and it does not guarantee that maintenance effort falls as a deployment grows.

The sensible next step is a bounded evaluation: compare a Memory-enabled agent with a stateless baseline, define what Dream may change, and measure quality, review effort and cost over enough time for stale context to become visible.


Frequently asked questions

What are Claude's Memory and Dream features?

Memory, in public beta since 23 April 2026, gives agents durable, versioned, developer-controlled stores that persist across sessions. Dream, in research preview, runs scheduled reviews of past sessions and proposes or applies changes to the memory store. Neither feature changes the model weights.

How does Claude Memory work?

Memory stores are persistent, versioned text documents mounted to the agent's file system, which agents read and write with standard file tools. Every write is immutable and versioned, and stores can be read-only or read-write, with data exportable, editable and redactable by the developer.

What results have early adopters reported?

Rakuten reported a 97 percent reduction in first-pass errors with Memory-enabled agents, and Wisedocs a 30 percent faster document workflow. Harvey, the legal AI platform, reported a sixfold increase in task completion after enabling Dream.

What should you plan for before deploying?

Data governance over what agents may write to memory, a human-in-the-loop review mode for Dream in regulated workflows, periodic auditing of memory stores, and a cost model — the gains are largest for high-volume, repeating workflows.

New posts land here first. Sign up for email updates.

← All posts