People keep using “context” and “memory” as if they’re synonyms.
They’re not.
Context is what you show a model right now so it can do a job in this moment.
Memory is what you save so you can do a better job later.
If you confuse the two, you get the most common failure mode in agent products: the agent remembers the wrong thing with the wrong confidence.
The sticky note versus the ledger
Context is a sticky note.
Memory is a ledger.
Sticky notes are great. They’re fast. You can put the important bits where you’ll see them. You can throw them away when you’re done.
Ledgers are slower. They have rules. You don’t write random thoughts into a ledger and call it “truth.”
Agent memory needs ledger rules:
- stable IDs (so you’re not “remembering” anonymous text),
- timestamps (so you know what was true when),
- provenance (so you know where it came from),
- and policy (so you decide what gets promoted from “seen once” to “reusable fact”).
This is why “context for agents” is not just retrieval. It’s a system that decides what deserves persistence.
Why this matters in production
In a chat demo, the cost of a bad memory is a weird answer.
In a workflow, the cost is compounding error.
If an agent stores a stale claim as memory, it will keep using it. And because it’s “memory,” it will treat it as more trustworthy than fresh evidence. Humans do this too. It’s just that humans have enough social instincts to say “I might be out of date.”
Models don’t.
So you have to build the instincts into the context system.
A better pipeline
The pattern that works is:
- Use public aggregates and schema contracts to get bearings.
- Retrieve addressable objects with receipts (source, time, evidence, confidence).
- Promote only the parts that survive policy into memory.
Hanging Context is designed to make step one cheap and public. Synorb is designed to make step two and three operational for agents that need to act.
The point is not that every agent needs long-term memory.
The point is that if you want memory, you can’t build it out of sticky notes.