Working Notes on Agent Systems/Brad Zhang

@teach_fireworks / X longform

The Agent memory system is moving from "storing more and more" to "using more and more accurately".

The Agent memory system is moving from "storing more and more" to "using more and more accurately". Mem0's latest release, Memory Decay, is noteworthy. It addresses not...

May 9, 2026 · 2 min read

The Agent memory system is moving from "storing more and more" to "using more and more accurately". Mem0's latest release, Memory Decay, is noteworthy. It addresses not “how can AI remember more” but a more critical question: how can AI know which memories should be trusted first? In the past, many Agent Memories were essentially designed to store user preferences, historical conversations, task status, and tool results in a vector library. Then pull back by similarity search. But the problem is that once the memories become more numerous, there will be 3 classic disasters:

  • Old preferences pollute new decisions
  • Similar but outdated information is recalled incorrectly
  • The more "long memory" Agent is, the more error-prone Memory Decay introduces a sorting logic closer to human memory: not all memories should be permanently equal. The newer the memory, the higher the weight; the longer the unused memory, the gradual decay; important but long-term related memory, can be reinforced. This is actually a signal for Agent Memory to move from "storage system" to "cognitive system". In the future, good AI Memory will be more like a dynamic state management system than just rag + vector DB: Memory = Facts + Recency + Frequency + Importance + Context I think the most worthwhile thing here is two points: First, the Agent's long-term memory is not a database problem, but a sorting problem. The real difficulty is not "can it survive", but "what to believe in under the current task". Many Agents fail not because they have no memory, but because they recall the wrong memory. Second, memory decay will become the basic ability of the personal agent. An agent who truly accompanies you for a long time must understand that the tools you liked three years ago do not mean that you are still using them today; your career goals last month may have been rewritten by new opportunities; your past preferences need to be recalibrated by time. So the essence of Memory Decay is not forgetting, but letting the Agent learn to “understand you with a sense of time”. This can be a critical step for the Agent to move from demo to production-grade personal systems. Because true intelligence is not about remembering everything, but knowing when to forget.🧠

Visual summary

Article argument map

Generated from the post's content graph

FORMATTOPICCAPABILITYMARKETcoverscoverscoverscoverscoverssignalssignalsFORMATlongform noteTOPICagentsTOPICtechnical distributionTOPICmemoryTOPICretrievalTOPICtoolingCAPABILITYagent workflowCAPABILITYproduct surface
Mermaid outline
flowchart LR
  format-long_post["longform note"]
  topic-agents["agents"]
  topic-technical-distribution["technical distribution"]
  topic-memory["memory"]
  topic-retrieval["retrieval"]
  topic-tooling["tooling"]
  capability-agent-workflow["agent workflow"]
  capability-product-surface["product surface"]
  format-long_post -->|covers| topic-agents
  format-long_post -->|covers| topic-technical-distribution
  format-long_post -->|covers| topic-memory
  format-long_post -->|covers| topic-retrieval
  format-long_post -->|covers| topic-tooling
  format-long_post -->|signals| capability-agent-workflow
  format-long_post -->|signals| capability-product-surface

Visual structure

Essay structure map

Built from summary and key paragraph positions

The Agent memory system is moving from "storing more and more" to "using more and mor...THESISThe Agent memorysystem is moving from"storing more andmore" to "using moreSIGNALThe Agent memorysystem is moving from"storing more andmore" to "using moreOPERATOR2. Similar butoutdated informationis recalledincorrectlyIMPLICATION3. The more "longmemory" Agent is, themore error-proneMemory Decay
Mermaid outline
flowchart LR
  thesis["The Agent memory system is moving from \"storing more and more\" to \"using more and more accurately\". Mem0's..."]
  signal["The Agent memory system is moving from \"storing more and more\" to \"using more and more accurately\". Mem0's..."]
  operator["2. Similar but outdated information is recalled incorrectly"]
  implication["3. The more \"long memory\" Agent is, the more error-prone Memory Decay introduces a sorting logic closer to..."]
  thesis -->|frames| signal
  signal -->|develops| operator
  operator -->|lands in| implication

Source: View the original post