SYNTHESIS NOTE

Can agents reconstruct memory on demand instead of retrieving it?

Explores whether interleaving reasoning with memory traversal during retrieval beats the standard approach of fetching memories first then reasoning over them. Matters because it could reduce wasted token cost and improve agent adaptability.

Synthesis note · 2026-06-27 · sourced from Memory

Most memory-augmented agents run a rigid pipeline: retrieve a fixed set of memories by similarity, then reason over them. MRAgent's claim is that this ordering is the bug. Because the retrieval step is committed before the model has seen any intermediate evidence, the agent cannot adapt what it looks up based on what it discovers mid-inference. The fix is to interleave reasoning directly into memory access over an associative Cue–Tag–Content graph, so retrieval becomes an active, multi-step reconstruction — the agent iteratively explores and prunes traversal paths conditioned on accumulated evidence, which yields up to 23% gains on LOCOMO and LONG-MEMEVAL while cutting token and runtime cost.

The titular framing — memory is reconstructed, not retrieved — is a genuine reframing borrowed from human cognition, where recall is a constructive act rather than a lookup. The deeper architectural move is deferring relational reasoning to the retrieval stage: instead of pre-computing all relational structure into the graph (the knowledge-graph instinct), MRAgent keeps construction simple and resolves complex dependencies on demand through targeted, state-dependent exploration. This is the traversal-side complement to Should agent memory adapt dynamically based on execution feedback? and to Is agent memory a storage problem or a connectivity problem? — both locate memory's value in dynamic access over a connected structure rather than in the store itself. It also operationalizes Can agents fail from weak memory control rather than missing knowledge?: the failure was control over access, and active reconstruction is that control.

The cost is the mirror image of the benefit, and the paper is candid about it. Because relational reasoning is deferred to retrieval, reconstruction cost grows with exploration depth — queries needing many traversal hops incur higher latency than single-shot retrieval. So the win is not unconditional: active reconstruction pays off when relational structure is sparse and query-specific, but a query that must traverse deeply can cost more than just dumping a large retrieved context would have. The pruning mechanism is doing the real work of keeping this from exploding combinatorially.

Inquiring lines that use this note as a source 15

This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.

Related concepts in this collection 3

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
12 direct connections · 82 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

moving relational reasoning from storage into retrieval lets agent memory be reconstructed on demand rather than retrieved — reasoning interleaved with graph traversal beats retrieve-then-reason