Can shared agent memory systems reliably delete information?
When multiple users access a shared memory pool with different permission levels, does any current system successfully balance recall utility with access control and true deletion? This matters because institutional deployments require governed, not just intelligent, memory.
Almost every memory benchmark assumes a single user, so memory failures only ever hurt one person and the objective collapses to "maximize recall." GateMem breaks that assumption. In the deployments that matter institutionally — hospitals, workplaces, campuses, households — multiple principals write to a shared memory pool and query it under different roles, scopes, and relationships. There, recall is no longer the goal; it can be the failure. Retrieving a memory the querying principal is not authorized to see is a leak, and surfacing a memory a user asked to delete is a governance breach.
GateMem evaluates three requirements jointly: utility on legitimate long-horizon requests, access control across contextual authorization boundaries, and active forgetting after explicit deletion. The headline finding is that no method satisfies all three at once. Long-context prompting gets the best governance score but at high token cost — it "governs" essentially by re-reading everything and re-deciding each time, which does not scale. Retrieval-based and external-memory systems cut that cost but leak unauthorized or deleted information, because deletion in a vector store rarely means the information is truly unrecoverable. This reframes memory as governed shared state: since Can governance rules embedded in runtime memory actually protect autonomous agents?, access and deletion semantics have to be structural properties of the memory layer, not a policy document bolted on top. The uncomfortable implication is that the more capable an agent's recall, the harder its forgetting problem becomes — which means institutional deployment is blocked less by intelligence than by the absence of reliable delete.
Inquiring lines that read this note 2
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.
What memory architectures best support persistent reasoning across extended interactions? How does memorization interact with learning and generalization?Related concepts in this collection 2
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
-
Can governance rules embedded in runtime memory actually protect autonomous agents?
Explores whether safeguards woven into an agent's operating loop—rather than documented separately—remain durable and retrievable when most needed. Tests whether runtime governance is engineering solution or false assurance.
the design principle GateMem operationalizes for shared memory
-
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?
governance is the maintenance module made adversarial and multi-user
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- GateMem: Benchmarking Memory Governance in Multi-Principal Shared-Memory Agents
- From Model Scaling to System Scaling: Scaling the Harness in Agentic AI
- The Landscape of Agentic Reinforcement Learning for LLMs: A Survey
- Are We Ready For An Agent-Native Memory System?
- Memory is Reconstructed, Not Retrieved: Graph Memory for LLM Agents
- OMNI-SIMPLEMEM: Autoresearch-Guided Discovery of Lifelong Multimodal Agent Memory
- Useful Memories Become Faulty When Continuously Updated by LLMs
- Externalization in LLM Agents: A Unified Review of Memory, Skills, Protocols and Harness Engineering
Original note title
shared multi-principal agent memory needs governance not recall — no current system achieves utility access control and reliable forgetting at once