Agent Memory: An Anatomy

https://brgsk.xyz/agent-memory-anatomy/

Comments

teraflopMay 27, 2026, 1:12 AM
I started reading this and right away hit something that doesn't really make any sense to me:

> the extractor. the thing that reads conversation transcripts and decides what to keep.

> the most consequential choice an extractor makes is timing. extract eagerly, after every message, and you spend tokens on small talk that goes nowhere. extract lazily, at the end of a session, and the context you needed to resolve a pronoun is already gone.

If the input is coming from a transcript, then either that transcript contains enough context to understand what a particular pronoun refers to, or it doesn't.

If it does, why would waiting until the end of a session be a problem? What am I missing?

brgskMay 27, 2026, 1:21 AM
good catch - the example is sloppy. the real issue is lost-in-the-middle on long transcripts: the extracting model attends worse to material between endpoints, so "the transcript is still there" doesn't mean the extraction sees it equally.
brgskMay 27, 2026, 1:27 AM
separate tradeoff worth naming - do you want "memories" available within session vs after the conversation has ended? that was what i was trying to convey in this paragraph
vessenesMay 27, 2026, 1:37 AM
Boy I'd like to read a compact non-LLM version of the key concepts here. The signal ratio is very low, and crafted with weird LLM-isms throughout, and very hard to parse.

I've been experimenting with mapping a zettelkasten system over to my agents with a few goals in mind, not least applying the idea of more 'test time compute' to the storing of memories as a way to add useful structure that can be tapped later during retrieval. (github.com/vessenes/zet - MIT license - no warranties)

There's some good and some bad, but I think it's better than just a raw embedding memory store for agents. It's definitely better for a human in that it's navigable and understandable, while remaining useful for agents.

But, I'd really like to read more about the space and get ideas -- this blog post was just too difficult to parse for me, sadly.

brgskMay 27, 2026, 1:52 AM
fair - repetition and density got in the way in places. cleaning that up for next.

the zet description sounds interesting - test-time compute at storage time especially.

is the repo public somewhere? github.com/vessenes/zet 404s for me.

cpardMay 27, 2026, 12:33 AM
This is a great post and I really appreciate making the cognitive science terminology clear.

the author is doing a great job telling what is missing from the current memory frameworks for agents but what is missing in my opinion is also an argument about the necessity or not of these missing components.

brgskMay 27, 2026, 12:37 AM
fair — this post mapped the gaps without making the case for whether filling them changes what an agent can do. the interesting ones are procedural and prospective. both deserve their own post.

thanks for the read.

cpardMay 27, 2026, 12:54 AM
Hopefully I didn’t sound too critical of the post because this wasn’t my intention. The post delivered what was needed and thank you for this!

The reason I asked the question is because in the case we don’t need the rest, it would be better to not use this terminology for these systems. We already anthropomorphize LLMs too much and although I get the marketing value of that, it’s not always to the benefit of the people who interact with them.

Please do write the rest of the posts!

brgskMay 27, 2026, 1:01 AM
not at all, I appreciate your comments!

yeah i agree with you on not using the terminology, although it's intuitive it's also confusing enough. it's tempting to do that, but i share your sentiment

behatMay 27, 2026, 12:53 AM
Thanks for writing this, and look forward to the one on procedural memory.

Seems like teams are encoding procedural knowledge in skills repositories, and I wonder if there’s additional utility from an auto created procedural memory layer

brgskMay 27, 2026, 1:09 AM
[flagged]
rixedMay 27, 2026, 4:54 AM

  multimodal models with environmental grounding may eventually have an analog [of affect]. text-only agents can’t.
I'd be curious to hear an explanation about why text can't. Or equivalently, why multimodal could.
jameslkMay 27, 2026, 1:57 AM
It seems most memory systems are built ETL style, when they'd be better off ELT style. As the core memory systems and LLMs improve, you'd be better off querying from raw source information rather than whatever consolidation of that information was deemed appropriate at the time. That is, just store it all compressed, then build (or rebuild) the memories as new information enters or as architecture evolves
joemoonMay 27, 2026, 12:47 AM
Spidey senses going off here. The first two comments read like an LLM.
brgskMay 27, 2026, 12:51 AM
yeah i used cc to help me write the post itself and the comment, my bad
arkmmMay 27, 2026, 12:58 AM
everything is computer
brgskMay 27, 2026, 1:04 AM
thats beautiful! wow!
chrismsimpsonMay 27, 2026, 1:32 AM
A seminal post
brgskMay 27, 2026, 1:34 AM
thanks for reading
shenli3514May 27, 2026, 12:57 AM
[flagged]
markhuangMay 27, 2026, 1:02 AM
[dead]