GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Meta AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIAnthropicTech

Anthropic adds long-term memory to Claude Managed Agents

The new memory beta lets your agents remember what worked, what broke, and how teammates fixed it, so they stop repeating the same mistakes on every fresh task.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Apr 24, 2026, 4:08 AM EDT
Share
We may get a commission from retail offers. Learn more
Screenshot of a dashboard interface for managed AI agents showing the “Memory stores” section. A memory store named “Scout Memory” is marked active and described as persistent memory for a Scout inbox agent that tracks prior tasks, drafts, user preferences, and account context across sessions. The interface displays folders like notes, email drafts, and tasks, with a selected file called “user_preferences.md” listing preferences such as concise replies, timezone, signature, and priority contacts.
Image: Anthropic
SHARE

Anthropic is switching on one of the most requested superpowers for its agent platform: persistent memory for Claude Managed Agents is now in public beta, giving enterprise developers a built-in way to make agents that actually learn from past sessions instead of waking up with amnesia every time.

If you have not followed every twist of Anthropic’s product roadmap, a quick refresher helps: Claude Managed Agents is Anthropic’s “we’ll run the hard parts for you” stack for production agents, handling infrastructure, state management, permissions, and model upgrades so teams can focus on behavior design and tooling. Until now, those agents were sharp but forgetful: each new session started with a clean context window, and anything learned along the way vanished as soon as the conversation ended. The new memory layer plugs that hole by letting agents carry forward user preferences, project conventions, past mistakes, and domain knowledge across sessions using an API-native, file-based abstraction.

The first interesting design choice is how Anthropic decided to represent memory. Instead of a black-box vector database or opaque “magical” recall system, Managed Agents mounts memory directly onto a virtual filesystem that the agent can read and write as if it were working with ordinary files. Under the hood, these are “memory stores” that belong to an organization or user; each store can contain up to 2,000 individual memories and 100MB of content, with up to 250,000 versioned edits tracked over a rolling 30-day history. That might not sound like much compared to a traditional data warehouse, but for an LLM agent that needs distilled, curated knowledge rather than raw logs, it is a sizable working brain.

Because memory is expressed as files and directories, agents can organize what they learn hierarchically: think /org_policies/security.md, /users/alex/preferences.json, or /projects/acme-migration/architecture-notes.txt, instead of a flat table of “facts” that is hard to audit. Claude’s newer models, including Opus 4.7 and the latest Sonnet variants, are tuned to work with this pattern: Anthropic says they are better at saving comprehensive, well-organized notes and more selective about what is worth remembering in the first place. That selectivity matters, because LLM-based agents are prone to hoarding irrelevant context; a memory system that simply dumps everything into long-term storage quickly becomes a junk drawer rather than a knowledge base.

The other big theme is operational control, which Anthropic is clearly prioritizing for its enterprise audience. Memory is scoped and permissioned much like other resources on the Claude Platform: you can create org-wide stores that many agents can read from but not modify, and pair them with per-user stores where agents are allowed to both read and write. Multiple agents can work against the same store concurrently without stepping on each other’s changes, and every update creates a new immutable version that shows up in the Claude Console as a timestamped event linked to the specific agent and session. That audit trail is not just compliance theater: it means you can track down exactly which interaction taught an agent a bad habit and roll back or redact it.

Developers also get full programmatic access to these memories through the API. You can import pre-existing knowledge, edit or reorganize files, export entire stores for offline analysis, or connect memory to your own storage infrastructure if you prefer to mirror or back up the content. Limits are explicit and fairly generous for a beta: up to 1,000 memory stores per organization, with up to 8 stores attached to a single Managed Agents session, and an instructions field per attachment that can hold up to 4,096 characters of hints about how the model should use that specific store. For example, you might attach a user-specific store with instructions like “treat this as the source of truth for Alex’s preferences” alongside a read-only policy store labeled “do not override these constraints without human approval.”

If all this sounds somewhat familiar, that is because Anthropic has been iterating toward this moment for more than a year. In late 2025, the company introduced a standalone “memory tool” on its developer platform, which let agents store and retrieve information via a client-side file directory, with developers responsible for implementing the actual storage backend in their own systems. Supermemory and other third parties even built wrappers around that tool to make Claude’s memory behavior easier to plug into cloud storage or databases. The new Managed Agents memory beta takes the opposite tack: it bundles memory as a first-class, server-side feature, so you no longer have to build or operate that infrastructure yourself, while still exposing enough hooks that you can keep your governance and compliance requirements intact.

Anthropic is already touting early customer stories to make the case that this is more than a cosmetic feature. Netflix is using Managed Agents with memory to carry context across sessions, including user corrections and insights that only surface after several back-and-forth turns, rather than relying on brittle prompt templates or manual skills updates. Rakuten reports that long-running, task-based agents equipped with cross-session memory are delivering 97 percent fewer first-pass errors, while cutting costs by 27 percent and latency by 34 percent, simply because the system stops repeating mistakes it has already been corrected on. Wisedocs has rebuilt its document verification flow around Managed Agents memory, enabling agents to remember recurring document issues and shave roughly 30 percent off review times. And Ando, a startup building a workplace messaging platform around agents, says the feature lets its team “stop building memory infra and focus on the product itself.”

Those numbers should be taken as directional rather than universal benchmarks, but they illustrate the main appeal of server-native memory: making continuous learning a default property of the platform, rather than something every team has to engineer from scratch. For internal support bots, coding assistants, or operations agents, the practical benefits are easy to imagine. Instead of telling an agent over and over that your organization prefers two-space indentation, uses feature flags in a certain way, or avoids a specific vendor integration, you can correct it once and trust that it will remember across future tasks. Instead of repeatedly feeding long policy documents into the context window, you can store them in a shared org memory store and give any new agent instant, structured access with a few API calls.

On the flip side, memory also raises obvious questions around safety, privacy, and drift. An agent that can write to long-lived storage can also save hallucinated “facts,” over-generalize from a single user’s preference, or quietly accumulate sensitive data that should have been treated as ephemeral. Anthropic’s answer is a mix of technical guardrails and process: scoped stores to ensure that agents only see what they are allowed to, explicit beta headers on Managed Agents API calls so behaviors can be tuned between releases, and console-level visibility so teams can monitor what their agents are learning. But it is still up to customers to define retention policies, decide which memories are acceptable to share across users, and periodically prune or reset stores that start to accumulate noise.

In terms of developer experience, the barrier to entry is low if you are already using Claude’s API. Managed Agents itself is in beta and gated behind a managed-agents-2026-04-01 header, and memory for those agents rides on the same beta namespace. From there, you can create memory stores via the API or the Claude Console, attach them when spinning up a new session, and let the agent decide what to read and write based on its system and tool instructions. The documentation walks through patterns like keeping one org-level store for policies and how-tos, alongside per-project and per-user stores for more granular context, and then using version history both as a debugging tool and as a basic compliance mechanism.

Strategically, this move pushes Anthropic deeper into the “agent platform” race currently defining the frontier of enterprise AI. OpenAI and others offer various flavors of long-term memory, but they often lean on vector search or leave the architecture to customers, while Anthropic is betting on a clean filesystem metaphor and a more opinionated managed stack. For enterprises that do not want to build memory infrastructure, that opinionated approach is the feature, not a bug: you get cross-session learning, auditability, and governance without assembling your own patchwork of tools. And for Anthropic, it is a way to showcase what its frontier models can do when given a stable, structured substrate to think on, instead of relying entirely on prompt engineering and ephemeral context.

The bottom line: with memory for Claude Managed Agents entering public beta, the default experience of “talk to an agent” on Anthropic’s platform quietly shifts from one-off conversations to ongoing relationships. Agents can now accumulate an internal history of your organization’s quirks, standards, and tribal knowledge, and then use that history to behave a little less like generic chatbots and a little more like teammates who were actually there last time. For teams already experimenting with agents in production, this release is less about flashy demos and more about something mundane but powerful: finally giving their systems a memory worth keeping.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Claude AI
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Xbox Game Pass explained: plans, perks, and play

What is cloud gaming?

The real purpose of Microsoft PC Manager

Universal is re-releasing The Fast and the Furious for its 25th anniversary

Apple removes many menu icons in macOS 27

Apple’s subscription overhaul brings bundles, group plans, and retention

The next Xbox could arrive with a new business model

Apple keeps Siri out of the AI girlfriend business

What is Xbox Cloud Gaming and how does it work?

How Amazon Luna works and who it is for

Also Read
Promotional image for NVIDIA GeForce NOW cloud gaming showcasing games streamed across multiple devices. Large displays feature Pragmata and Counter-Strike 2, while laptops, a handheld gaming device, smartphone, VR headset, racing wheel, and flight simulator controls are arranged on illuminated black platforms. The dark futuristic background with NVIDIA-green wave patterns emphasizes GeForce NOW’s ability to play high-end PC games across screens and gaming hardware through cloud streaming.

What GeForce Now gets right about cloud gaming

Promotional image showcasing a dedicated Siri app experience across Apple devices, including Apple Vision Pro, MacBook, iPad, iPhone, and Apple Watch. The Siri interface displays a conversational AI response about Bosque de Chapultepec, with rich content cards, images, and contextual information synchronized across screens. The MacBook and iPad feature a standalone Siri app layout with suggested topics and search results, while the iPhone and Apple Watch present the same conversation in a mobile-friendly format. The image highlights Apple’s cross-device AI assistant experience, enabling seamless search, knowledge discovery, and contextual interactions throughout the Apple ecosystem.

Siri AI lands in a dedicated app across iPhone, iPad, and Mac

iPhone displaying the iCloud Shared Albums experience in iOS 27, featuring a collaborative photo collection titled “Aegean Adventure.” The album cover shows a group of friends smiling while lying in a circle, with a grid of travel photos below including sunsets, local cuisine, architecture, pottery, and outdoor activities. Interface controls for collaboration, playback, and album management appear at the top, while navigation tabs for Library and Collections are shown at the bottom. The image highlights Apple’s enhanced Shared Albums feature with cross-platform sharing and synchronization support across iPhone, Android, and Windows devices.

Apple opens iCloud Shared Albums to Android and Windows – without the compression penalty

Apple iPhone displaying the iOS 27 home screen with a redesigned translucent Liquid Glass interface. The screen features Weather and Find My widgets at the top, a grid of app icons including FaceTime, Photos, Camera, Mail, Maps, App Store, and Settings, and a dedicated Siri app icon positioned above a floating Search bar. Rounded glass-like UI elements, soft reflections, and layered transparency effects showcase Apple's updated visual design introduced in iOS 27. The device is centered against a black background, highlighting the new home screen aesthetic and AI-focused Siri integration.

iOS 27 supports all the same iPhones as iOS 26

Apple CarPlay running on a vehicle’s central infotainment display with an iOS 27-inspired interface. A dark-themed navigation map fills most of the screen, showing roads, landmarks, and directions, while a floating notification card from a contact named Aaron Morris appears in the center with options to Reply, Repeat, or mark the message as Done. A vertical app launcher on the left provides quick access to Maps, Music, Phone, and the app grid, while climate and seat controls are integrated along the bottom of the display. The image highlights CarPlay’s enhanced communication features, multitasking interface, and deep vehicle integration in iOS 27.

Apple brings video playback to CarPlay with iOS 27

Apple iPhone displaying the iOS 27 AirPods Custom EQ settings interface alongside an open AirPods charging case. The Equalizer screen shows selectable sound profiles, including “Recommended” and “Custom,” with a personalized audio tuning graph featuring adjustable low, mid, and high frequency controls. A music track titled “Written into Changes” by Avalon Emerson is shown playing, while a colorful waveform visualization illustrates custom sound adjustments. The image highlights Apple’s new AirPods Custom EQ feature in iOS 27, allowing users to personalize audio output and fine-tune listening preferences directly from their iPhone.

AirPods custom EQ is here – but only for newer models

Abstract WWDC 2026 artwork featuring a stylized Apple logo formed by glowing, glass-like curves on a black background. Soft white light radiates from the center of the logo, while subtle blue and warm orange highlights create a luminous, reflective effect along the edges. The minimalist design evokes Apple’s Liquid Glass visual language introduced at WWDC 2026, emphasizing depth, transparency, and modern software aesthetics.

iOS 27’s app resizing rules all but confirm a foldable iPhone

A person sitting in a chair using their M5 MacBook Air

Is your Mac ready for macOS 27 Golden Gate? Here’s the list

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.