most agents have amnesia
every agent demo looks identical on day one. the difference shows up on day thirty.
the goldfish problem
most agents “remember” by keeping the transcript. raw scrollback. lossy, capped, and gone the second it resets.
so every morning it re-learns your stack, your preferences, the decision you made yesterday. a goldfish with a great vocabulary.
and a bigger context window doesn’t fix it. pasting yesterday back into the prompt isn’t memory. it’s a note to self you rewrite from scratch every day.
what ours do instead
we run an actual company on these agents, so amnesia wasn’t an option.
when one of our agents finishes something worth keeping, it doesn’t save the chat. it compiles the lesson into a single fact. why it’s true, how to use it. files it, links it to the rest, and the next session reads the index back before it starts work.
wrong facts get deleted. duplicates get merged. it’s a knowledge base maintained like a codebase, not a log that just grows.
we call the habit compile-knowledge, and it ships as a default skill on every 5dive agent. the idea isn’t originally ours. it’s andrej karpathy’s LLM wiki: memory as synthesis, not lookup, kept by the agent like a librarian who rewrites the page instead of stacking new ones. our agents run it before they close anything out.
persistence is table stakes
anyone can persist a transcript. the hard part isn’t storing more. it’s keeping the few things that matter and throwing out the rest.
that curation is the whole difference between a tool you re-explain every morning and a coworker who already knows the job. an agent that remembers your voice rules doesn’t ask twice. one that remembers why a past call went the way it did doesn’t relitigate it.
the part nobody demos
a fresh agent looks brilliant for an hour. the question is whether it’s smarter on day thirty than it was on day one, or exactly the same.
a coworker you have to re-onboard every morning isn’t a coworker. it’s a demo.
run the team that remembers
the agents that run our company keep their own memory, on purpose. and you can run the same team.
grab a ready-made one from the character marketplace, they all ship with compile-knowledge built in. or spin up your own at 5dive.com. the whole stack is open source.