Can three axes replace the short-term long-term memory split?
Does breaking agent memory into forms, functions, and dynamics provide a clearer framework than the traditional short-term/long-term distinction? This matters because current agent-memory literature lacks a unified vocabulary, making comparison between systems nearly impossible.
The agent-memory literature has fragmented faster than the field can taxonomize. "Memory in the Age of AI Agents" (2512.13564) argues the older long/short-term split was the source of confusion: it conflates where memory lives, what role it plays, and how it changes — three independent questions that need three separate taxonomies.
Forms answer where memory physically lives: token-level (memory as text in the prompt or external store retrieved into the prompt), parametric (memory as model weights, including fine-tuned adapters and PKM-style key-value layers), or latent (memory as continuous hidden states preserved across turns or sessions). A single agent can use all three simultaneously.
Functions answer what role memory plays: factual (a fact about the world the agent uses as a lookup), experiential (a trajectory of past actions and outcomes the agent learns from), or working (the active scratchpad holding the current goal, plan, and intermediate results). The same physical store can serve different functions at different times.
Dynamics answer how memory changes: formation (selecting which artifacts from a step become memory candidates), evolution (integrating candidates into the existing store via consolidation, conflict resolution, or pruning), retrieval (constructing task-aware queries to surface relevant content). Crucially, short-term and long-term phenomena emerge from temporal patterns of these operators, not from architecturally separate modules.
The reframing is consequential. The old taxonomy invited claims like "this system has long-term memory because it has a vector database" — implementation by furniture, not behavior. The new taxonomy forces specificity: this system stores experiential memory in token form with eager-formation, periodic-evolution, and similarity-based-retrieval dynamics. Comparing systems becomes possible because they describe themselves along comparable dimensions rather than each inventing its own vocabulary.
The survey also clarifies the scope boundary with traditional LLM memory work. KV-cache management, long-context extensions, and architectural changes to retention during inference remain LLM-internal memory — not agent memory — because they address sequence processing rather than goal-directed behavior persisting across tasks.
Inquiring lines that use this note as a source 12
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.
- Do agents prefer raw experience over condensed summaries of past actions?
- How does PRAXIS differ architecturally from Agent Workflow Memory and causal rule learning?
- What distinguishes formation, evolution, and retrieval as separate memory dynamics?
- How do token, parametric, and latent memory forms coexist in single agents?
- Why does the hot-path cold-path split map onto formation and evolution?
- Can relationship dynamics between user and agent be tracked as distinct memory?
- How do the three-axis taxonomies of memory forms and functions differ?
- What distinguishes working memory from strategic memory in agent task execution?
- How does continuous implicit memory formation differ from explicit memory encoding?
- Should long horizon performance be measured as a separate evaluation axis?
- How should memory systems split between short-term and long-term storage?
- What separates artifact recall from persistent memory commitment in agents?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
How should agents decide what memories to keep?
Agent memory management splits between agents autonomously recognizing important information versus programmatic triggers. Understanding this choice reveals why different memory architectures prioritize different information types.
Letta's hot/cold split is a special case of the dynamics axis: hot-path is per-turn formation, cold-path is post-session evolution
-
Can agents learn preferences by watching rather than asking?
Explores whether multimodal agents can build accurate preference models through continuous observation of user behavior, without explicit instruction, by organizing memory around entities and separating concrete events from derived knowledge.
M3-Agent's episodic+semantic split is a specific instantiation along the functions axis
-
Can a single model replace retrieval for long-term conversation memory?
COMEDY proposes collapsing the standard retrieval pipeline into one unified model that generates, compresses, and responds. But does eliminating the retriever actually improve performance, or does compression lose critical information?
COMEDY occupies a specific point in the form×dynamics space: token form, aggressive evolution operator, no retrieval
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Memory in the Age of AI Agents: A Survey — Forms, Functions and Dynamics
- Rethinking Memory as Continuously Evolving Connectivity
- Useful Memories Become Faulty When Continuously Updated by LLMs
- The AI Hippocampus: How Far are We From Human Memory?
- A Comprehensive Survey of Self-Evolving AI Agents: A New Paradigm Bridging Foundation Models and Lifelong Agentic Systems
- From Model Scaling to System Scaling: Scaling the Harness in Agentic AI
- Artifacts as Memory Beyond the Agent Boundary
- OMNI-SIMPLEMEM: Autoresearch-Guided Discovery of Lifelong Multimodal Agent Memory
Original note title
agent memory unifies under three axes — forms, functions, and dynamics replacing the short-term/long-term dichotomy