Agent memory is not just RAG over user facts
Summary
The article argues that simple RAG-based agent memory systems fail in production due to issues like stale preferences, missed keywords, and prompt injection, and advocates for a layered memory architecture with active selection, deterministic fallback, governance, and testing.
Similar Articles
Agent Memory: An Anatomy
An exploration of the components and design decisions behind agent memory libraries, clarifying the gap between cognitive science terminology and engineering implementation.
agent memory should probably have verbs, not just storage
The article critiques the current framing of agent memory as merely a storage problem, arguing that memories should have typed roles, freshness, and authority levels to prevent stale or incorrect information from being treated as gospel.
Memory for agents ain't here yet
A critique of current memory solutions for AI agents, arguing that RAG wrappers and similar approaches fail to address core issues of model bias and context bloat.
After a year building agent memory, I'm convinced "save everything + RAG it" is the wrong default
The article argues that the default approach to agent memory (saving all messages and using RAG) fails due to lack of suppression, identity, and relation tracking, and proposes using a lightweight temporal knowledge graph to model the user's world instead.
Agent Memory Atlas - what should an agent remember?
Claude investigated 61 repos of agent memory systems (including OpenClaw, Hermes, Pi) to analyze how their memory works, aiming to help developers build their own implementations.