Anthropic "Dreaming": Claude Agents Now Self-Improve Between Sessions
Quick summary
Anthropic launched Dreaming for Claude Managed Agents: a background process that reviews past sessions, prunes memory, and extracts patterns. Harvey saw 6x task completion. Wisedocs cut review time 50%.
Read next
- Grok 3 vs ChatGPT vs Claude 3.5: Benchmarks Reveal the 2026 WinnerGrok 3 outscores GPT-4o on HumanEval coding and costs 25x less per API call. Side-by-side comparison vs Claude 3.5 and Gemini 2.0 — developer verdict.
- Elon Musk Macrohard: AI That Emulates Companies on a $650 ChipMacrohard pairs Digital Optimus with Grok to run entire companies autonomously. It runs on the $650 Tesla AI 4 chip. Elon Musk announced it in March 2026.
Anthropic released "Dreaming" for Claude Managed Agents on May 6, 2026 — a background process that runs between agent sessions to review past work, prune stale memories, merge duplicate information, and surface patterns that no single session could identify. The system does not change model weights. It curates the agent's persistent memory and context so the next session starts with a cleaner, more accurate knowledge base than the previous one left behind. Harvey, the legal AI platform, saw task completion rates increase roughly 6x after implementing Dreaming. Wisedocs, a medical document review company, cut document review time by 50%.
Those numbers are large enough to require a look at what is actually happening under the hood before accepting them at face value.
What Dreaming Actually Does
Dreaming is a scheduled background process that fires between sessions — when an agent is not actively working on a user task. It operates on the agent's persistent memory store and prior session logs.
The process has four stages:
Review: The system reads the agent's accumulated session records and memory entries, looking at the full history rather than just the most recent session.
Merge: Duplicate information is identified and consolidated. An agent that has been told the same fact by different users in different sessions (a company name, a style guide rule, a data source) will have redundant entries; Dreaming identifies and merges them into a single authoritative record.
Prune: Outdated entries are removed. If a previous session recorded a deadline that has passed, a price that has changed, or a workflow that has been superseded, Dreaming removes or flags those entries rather than leaving them as potential sources of incorrect responses in future sessions.
Pattern extraction: The system identifies patterns across sessions that no single session would see. Recurring mistakes — the same type of error appearing across multiple sessions with different users. Team preferences — choices that multiple agents working in the same environment consistently make. Workflow convergence — different agents independently discovering the same efficient approach to a task type.
The output is a curated memory set that the agent begins its next session with. The underlying model — Claude Sonnet, Haiku, or whichever managed agent variant — is unchanged. What changes is what the model knows about its specific deployment context when it starts.
The Harvey Result: 6x Task Completion
Harvey is an AI platform built for legal workflows — document review, contract analysis, research, drafting. The legal domain has specific characteristics that make Dreaming's memory curation particularly valuable.
Legal work is procedurally dense. The same factual patterns recur across matters (jurisdiction rules, filing deadlines, standard clause structures). The same preferences recur across clients and teams (preferred citation formats, drafting styles, entity naming conventions). Without Dreaming, Harvey agents accumulated this context gradually within each session, or relied on users to re-establish it. With Dreaming, the agent begins each session with the accumulated preferences and patterns from all prior sessions that Dreaming has curated.
Harvey describes the 6x task completion rate increase as driven by agents requiring dramatically fewer clarification rounds and fewer error corrections per task — the agent already knows, from Dreaming's pattern extraction, what preferences apply and what mistakes to avoid. The 6x figure is task completion rate (tasks completed to user satisfaction per session), not raw speed.
The Wisedocs Result: 50% Faster Document Review
Wisedocs processes medical documents — clinical records, insurance claims, prior authorisation requests — using AI to extract structured information from unstructured documents.
Medical document review has its own repetition pattern: the same document types, the same field extraction requirements, the same edge cases (handwritten annotations, non-standard abbreviations, missing data). Dreaming's ability to surface recurring patterns across a large volume of similar documents means agents learn which document structures are most common, which extraction errors recur, and which disambiguation rules apply — and apply that knowledge from the first page of each new document rather than rediscovering it partway through.
Wisedocs reports a 50% reduction in document review time. The practical mechanism: agents that previously spent significant time rechecking and correcting extraction errors now make those errors less frequently, and errors that do occur are identified faster because the agent recognises the pattern.
What This Is and Is Not
Dreaming is a memory management system, not a new kind of learning. The distinction matters for understanding what it can and cannot do.
What it is: A scheduled process that curates an agent's persistent notes and context. The model weights remain identical between sessions. The model's general capabilities do not change. What changes is the quality and relevance of the contextual information the model has access to at the start of each session.
What it is not: Online learning, fine-tuning, or reinforcement learning. Dreaming does not update the underlying model based on experience. It does not give the model new capabilities it did not have before. An agent running on Claude Sonnet with Dreaming is still running on Claude Sonnet — it just has better notes.
The distinction matters practically: Dreaming does not raise AI safety concerns about models developing unexpected capabilities through deployment. It raises different concerns (about the quality and accuracy of accumulated memory, about privacy implications of session data being retained and analysed across users) that are more analogous to database management than model training.
Availability and How to Access It
Dreaming is available in research preview for Claude Managed Agents as of May 6, 2026. It is not available for standard API users using the Messages API directly. It is specifically a Managed Agents feature — meaning it requires using Anthropic's agent orchestration layer rather than building custom agent loops on top of the raw API.
The research preview designation means Anthropic is collecting feedback from enterprise customers on memory quality, pruning accuracy, and unexpected behaviour from the curation process. Harvey and Wisedocs are among the first production deployments Anthropic has cited publicly.
For developers building agent systems: Dreaming is the clearest signal yet that Anthropic's product roadmap for enterprise AI is centred on Managed Agents as the primary deployment surface, not raw API access. The features that matter for production AI — persistent memory, cross-session learning, autonomous improvement — are being built into the managed layer.
Why This Matters Beyond the Benchmark Numbers
The Harvey 6x and Wisedocs 50% numbers are enterprise-specific. Your deployment context will produce different results depending on how repetitive your agent's task domain is and how much accumulated session data is available to extract patterns from.
The more important signal is architectural. Dreaming represents Anthropic's answer to one of the core limitations of stateless language model APIs: every session starts from scratch. Enterprises building AI agents for real work have been solving this problem with custom memory systems, vector databases, and context injection pipelines. Dreaming is Anthropic offering that infrastructure natively within the Managed Agents product.
The competitive context: OpenAI's Deployment Company (launched May 11) puts 150 forward deployed engineers inside enterprise clients. Anthropic's response appears to be making the underlying agent infrastructure smarter so fewer human implementation hours are required. The two approaches — more human implementation vs. more autonomous agent improvement — will compete on enterprise outcomes over the next 12-18 months.
Key Takeaways
- Dreaming released May 6, 2026: Available in research preview for Claude Managed Agents; background process that runs between sessions, not a model update
- What it does: Reviews past sessions, merges duplicate memory, prunes outdated entries, extracts patterns across sessions that no single session sees
- Harvey (legal AI): 6x task completion rate increase — fewer clarification rounds, fewer error corrections per task
- Wisedocs (medical docs): 50% reduction in document review time — agents apply accumulated extraction patterns from first page
- What it is not: Online learning, fine-tuning, or weight updates; the model is unchanged; it is memory curation, not new capabilities
- Architectural signal: Persistent, self-improving memory is a Managed Agents feature, not a raw API feature — Anthropic is building the intelligent infrastructure layer into its enterprise product
For Anthropic's infrastructure expansion that provides the compute for these agent workloads, read Anthropic Leases SpaceX Colossus 1: 220K GPUs, Claude Rate Limits Doubled. For the banking AI agents Anthropic launched with Goldman Sachs and Blackstone, read Anthropic + Goldman Sachs + Blackstone $1.5B JV: Banking AI Agents Are Live.
FAQ
Frequently Asked Questions
What is Anthropic Dreaming for Claude agents?
Dreaming is a background process in Claude Managed Agents (released May 6, 2026) that runs between sessions to review the agent's accumulated memory and session history. It merges duplicate information, removes outdated entries, and extracts patterns across sessions — recurring mistakes, team preferences, and workflow convergences that no single session would identify. The result is a curated memory set the agent begins its next session with. Dreaming does not update model weights or give the agent new capabilities; it improves the quality of contextual information the model has access to.
Why did Harvey see a 6x improvement from Anthropic Dreaming?
Harvey (legal AI platform) saw roughly 6x task completion rate improvement because legal work has high repetition of procedural patterns, preferences, and client-specific rules. Before Dreaming, Harvey agents re-established these preferences within each session or required users to repeat context. After Dreaming, the agent begins each session with curated knowledge of prior preferences and common error patterns, requiring fewer clarification rounds and making fewer repeatable errors. The 6x figure measures task completion to user satisfaction per session, not raw speed.
Does Dreaming mean Claude agents are learning and changing their behaviour permanently?
No. Dreaming does not update model weights, fine-tune the underlying model, or produce reinforcement learning from deployment experience. The Claude model running the agent is identical before and after Dreaming runs. What changes is the agent's persistent memory store — its notes about the specific deployment context. It is more analogous to a person's notebook being organised overnight than to the person's brain changing. The underlying model's capabilities are unchanged; it just has better-organised contextual notes to work from.
Who can use Anthropic Dreaming and how do you access it?
Dreaming is available in research preview for Claude Managed Agents as of May 6, 2026. It is not available for standard API users using the Messages API directly. Accessing Dreaming requires using Anthropic's Managed Agents product — the orchestration layer that handles agent memory, tool use, and multi-step task management — rather than building custom agent loops on top of the raw API. Enterprise customers working with Claude Managed Agents can request research preview access through Anthropic.
Free Weekly Briefing
The AI & Dev Briefing
One honest email a week — what actually matters in AI and software engineering. No noise, no sponsored content. Read by developers across 30+ countries.
No spam. Unsubscribe anytime.
More on AI
All posts →Grok 3 vs ChatGPT vs Claude 3.5: Benchmarks Reveal the 2026 Winner
Grok 3 outscores GPT-4o on HumanEval coding and costs 25x less per API call. Side-by-side comparison vs Claude 3.5 and Gemini 2.0 — developer verdict.
Elon Musk Macrohard: AI That Emulates Companies on a $650 Chip
Macrohard pairs Digital Optimus with Grok to run entire companies autonomously. It runs on the $650 Tesla AI 4 chip. Elon Musk announced it in March 2026.
Mistral Voxtral TTS: Open-Weight Model Beats ElevenLabs at 90ms Latency
Mistral released Voxtral-4B-TTS on March 26, 2026. 4B parameters, open weights, 90ms time-to-first-audio, 68.4% win rate vs ElevenLabs. At $0.016 per 1,000 chars it changes the TTS pricing floor.
AI Website Builders vs Custom Development in 2026: The Honest Truth
AI builders have improved dramatically — but they still fail at SEO, performance, and custom features. A developer's honest breakdown of when to use Wix/Framer AI and when to pay for custom development. Includes real cost comparisons.
Free Tool
Will AI replace your job?
4 questions. Get a personalised developer risk score based on your stack, role, and what you actually build day to day.
Check Your AI Risk Score →Written by
Software Engineer based in Delhi, India. Writes about AI models, semiconductor supply chains, and tech geopolitics — covering the intersection of infrastructure and global events. 952+ posts cited by ChatGPT, Perplexity, and Gemini. Read in 167 countries.
