How should we actually evaluate agent memory systems?
Current benchmarks score agent memory by task success alone, hiding critical design questions about cost, trade-offs, and robustness. What would evaluation reveal if we decomposed memory into its core data-management stages?
Agent memory has quietly become a full data-management system — it stores, extracts, retrieves, routes, updates, consolidates, and governs the lifecycle of information across long-horizon execution. But evaluation never caught up: benchmarks still score the whole apparatus by end-to-end task success (F1, BLEU), which treats memory as a monolithic black box. This paper argues that framing is what hides the questions that actually matter in production — operational cost, the architectural trade-offs between memory modules, and robustness when the stored knowledge keeps changing.
The move is to decompose memory into four core modules — representation and storage, extraction, retrieval and routing, and maintenance — and evaluate 12 systems (Mem0, Letta, Zep, A-MEM, MemoryBank, etc.) module by module across 11 datasets. This is the memory analogue of what the vault already argues about working context: since How should agent memory split across time scales?, granularity and module boundaries are themselves the design surface, not just the content stored. And it grounds the practical claim that since Is agent memory a storage problem or a connectivity problem?, measuring "did the task succeed" tells you nothing about which module failed. A task-success score cannot distinguish a bad extractor from a bad router — which means it cannot guide design. The data-management lens restores that diagnostic resolution.
Inquiring lines that read this note 8
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
How should memory consolidation strategies shape agent performance over time?- How does memory extraction differ from retrieval in agent systems?
- What governance semantics must be built into memory layers?
- Why does connectivity between memory modules matter more than storage capacity?
- How should we measure operational cost of memory systems in production?
- How should memory systems handle deletion as a structural property?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
How should agent memory split across time scales?
Explores whether agent working memory should be organized by temporal scope—some components persisting across a conversation, others refreshed each turn. Understanding this distinction could reveal why some memory designs fail.
parallel decomposition of the working-memory side; this note does it for the persistent-memory system
-
Is agent memory a storage problem or a connectivity problem?
Most systems treat memory as a repository to store and retrieve. But what if memory's real usefulness depends on how units are linked together rather than what is stored?
grounds why storage-only metrics mislead
-
Can agents fail from weak memory control rather than missing knowledge?
As multi-turn agent workflows grow longer, performance degrades—but is this due to insufficient context or poor memory management? This explores whether memory *control* is the real bottleneck.
same relocation of blame from knowledge to memory mechanics
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Are We Ready For An Agent-Native Memory System?
- Towards a Science of Scaling Agent Systems
- From Model Scaling to System Scaling: Scaling the Harness in Agentic AI
- GateMem: Benchmarking Memory Governance in Multi-Principal Shared-Memory Agents
- OMNI-SIMPLEMEM: Autoresearch-Guided Discovery of Lifelong Multimodal Agent Memory
- Why Do Multi-agent LLM Systems Fail?
- Useful Memories Become Faulty When Continuously Updated by LLMs
- Memory in the Age of AI Agents: A Survey — Forms, Functions and Dynamics
Original note title
agent memory should be evaluated as a data-management system decomposed into storage extraction retrieval and maintenance not as a black box scored by task success