Two labs shipped agent memory frameworks in June 2026. They disagree on one thing
Microsoft and LangChain both shipped agent memory frameworks in June 2026.
Both aim at the same wall. An agent that has to be re-fed its whole history gets slower and dumber as the task grows.
Both cut the context down hard. They split on what the compressed memory should look like.
Microsoft Research published Memora on June 29, 2026. It stores rich memory content but embeds only a short abstraction of each item for search, with lightweight cue anchors as alternate paths in. The value is never retrieved through its own text. It reports up to 98% fewer tokens than full-context inference, with higher accuracy than RAG, Mem0, Zep, and full context on the LoCoMo and LongMemEval benchmarks.
Harrison Chase published Wiki Memory on June 30, 2026. It makes memory an agent-maintained wiki of files. Inspectable, editable, versionable. The agent precomputes a higher-level synthesis so it does not rediscover structure on every query.
The disagreement is legibility.
Memora optimizes for the machine. Memory is a compressed index tuned for retrieval, not for a human to read.
Wiki Memory optimizes for the collaborator. Memory is a document you can open, correct, and diff.
The choice is not academic: • Opaque memory wins on token cost and raw retrieval accuracy • Legible memory wins when a human has to audit or fix what the agent believes • You are picking which failure you would rather debug later
Sources: https://www.microsoft.com/en-us/research/blog/memora-a-harmonic-memory-representation-balancing-abstraction-and-specificity/ and https://www.langchain.com/blog/wiki-memory
One system compresses memory so the model reads it faster.
The other exposes memory so a person can read it at all.
