Brad Zhang / public archive

Brad Zhang

AI product notes, agent workflow writing, and open-source dossiers for founders and early technical teams.

Original Essay / EN / 中文

Memory Is Not Context

Useful memory is not what survives by default. It is what a system learns to preserve on purpose.

April 2026 / 12 min read / Memory

Visual structure

Essay structure map

Built from summary and key paragraph positions

Memory Is Not ContextTHESISUseful memory is notwhat survives bydefault. It is what asystem learns toSIGNALMost agent systemsstill treat memory asan overflow bucket.When context windowsOPERATORA useful memory layerneeds at least threeeditorial acts:deciding what is worthIMPLICATIONThis is why the designof memory should sitcloser to publishing,indexing, and
Mermaid outline
flowchart LR
  thesis["Useful memory is not what survives by default. It is what a system learns to preserve on purpose."]
  signal["Most agent systems still treat memory as an overflow bucket. When context windows become expensive, people..."]
  operator["A useful memory layer needs at least three editorial acts: deciding what is worth preserving, deciding when..."]
  implication["This is why the design of memory should sit closer to publishing, indexing, and annotation than to raw buff..."]
  thesis -->|frames| signal
  signal -->|develops| operator
  operator -->|lands in| implication

Most agent systems still treat memory as an overflow bucket. When context windows become expensive, people start saving everything elsewhere and call the result memory. But durable memory is not a storage problem first. It is a judgment problem.

A useful memory layer needs at least three editorial acts: deciding what is worth preserving, deciding when it should be recalled, and deciding how much of it deserves to return. Without those acts, recall becomes clutter and persistence becomes vanity.

This is why the design of memory should sit closer to publishing, indexing, and annotation than to raw buffering. The system is not rewarded for remembering more. It is rewarded for remembering what changes the next decision.

Memory Is Not Context