Back openDesk Edu for a sovereign, open-source education β every vote counts.
Vote nowAgent memory is one of the fastest-growing areas in LLM research. Between early 2023 and July 2026, the field has expanded from a handful of papers to 282 publications spanning three memory categories and three representation substrates. This article presents a comprehensive graph data science analysis β from network metrics and degree centrality to publication velocity and category mix evolution.
The agent-memory-research repository tracks papers across three functional categories and three representational subcategories:
| Category | Description | Papers |
|---|---|---|
| Factual | Knowledge storage and retrieval | 144 |
| Experiential | Insights and skills from experience | 78 |
| Working | Active context management | 60 |
| Subcategory | Description | Papers |
|---|---|---|
| Token-level | Explicit, discrete representations | 214 |
| Parametric | Implicit weight-based memory | 26 |
| Latent | Hidden state representations | 42 |
All 282 papers are stored as structured YAML with metadata including title, date, category, subcategory, venue, and URLs β enabling systematic graph analysis.
The analysis pipeline works entirely with Python standard library (no PyYAML, no NetworkX). Parse β aggregate β compute β render:
papers.yamlThe entire pipeline runs in less than 1 second and regenerates docs/graph_analysis.html from scratch.
The force-directed graph yields several network-science metrics that quantify the structure of the research community:
| Metric | Value | Interpretation |
|---|---|---|
| Nodes | 282 | Papers in the corpus |
| Edges | 496 | Relationships (shared venue, subcategory-year, category-year) |
| Graph Density | 0.0125 | ~1.25% of all possible edges exist β a moderately sparse scientific collaboration graph |
| Average Degree | 3.52 | Each paper connects to ~3.5 others on average |
| Maximum Degree | ~28 | Hub papers that bridge multiple venue/category communities |
The low graph density is expected for a bibliometric network spanning 3.5 years. The maximum degree reveals that a small number of papers act as bridges between different research communities β typically survey papers published at major conferences that connect factual, experiential, and working memory subfields.
The force-directed graph is the central visualization, where each paper is a node colored by category and sized by degree centrality (how well-connected the paper is):
Node color: Blue = Factual (144)
Green = Experiential (78)
Gold = Working (60)
Node size: Larger = higher degree centrality (more connections)
Smaller = lower degree centrality (fewer connections)
Edge types:
Strong (0.6) = same venue (ACL, ICML, ICLR, NeurIPS)
Medium (0.3) = same subcategory + same year
Weak (0.15) = same category + same year
Degree-centrality sizing reveals hub papers. Unlike the previous recency-based sizing (which penalized earlier work), degree centrality highlights papers that bridge multiple communities β surveys connecting factual and experiential memory, or venue-anchoring papers that co-author-network links radiate from.
Venue clusters dominate the graph structure. Papers published at the same venue form tight clusters β ACL 2026 alone accounts for dozens of connected papers. The force simulation pulls these into distinct spatial groups, revealing which venues are the primary publication channels for agent memory research.
The three memory categories form loose but distinguishable regions. Factual memory papers (blue) dominate the graph center as the largest category. Working memory (gold) and experiential memory (green) tend to cluster in the periphery, often connected through shared-venue edges to the factual core.
Degree distribution is skewed. A small number of survey and taxonomical papers accumulate most of the edges, while the majority of papers have degree 1-3. This power-law-like distribution is typical of citation and collaboration networks.
The heatmap reveals where research effort concentrates:
| Token-level | Parametric | Latent | |
|---|---|---|---|
| Factual | 111 | 17 | 16 |
| Experiential | 66 | 6 | 6 |
| Working | 37 | 3 | 20 |
Token-level representations dominate across all categories (214/282 = 76%). This makes intuitive sense: most agent memory systems store explicit text β conversation history, extracted facts, compressed summaries.
The latent subcategory remains distinctive for working memory (20 vs 16 and 6). This reflects the use of hidden states and recurrent mechanisms for active context management β approaches like MemAgent, Memory-R1, and RMM that learn memory update policies over latent state spaces.
The monthly timeline with 3-month rolling average overlay shows three distinct phases:
A dedicated velocity chart plots raw monthly paper counts alongside a 3-month rolling average and a linear regression trend line:
Papers/month β 0.30 Γ month_index β 0.4
The positive slope confirms sustained acceleration. The 3-month rolling average smooths out conference-driven spikes (e.g., ACL submission deadlines) and reveals the underlying growth rate.
| Year | Papers |
|---|---|
| 2023 | ~15 |
| 2024 | ~45 |
| 2025 | ~80 |
| 2026 (through July) | ~140+ |
The field is doubling approximately every 12 months. At current trajectory, the corpus would exceed 400 papers by end of 2027.
The cumulative chart shows all three categories growing in tandem, with factual memory maintaining a consistent lead, followed by experiential memory pulling ahead of working memory in 2026. The curves are approximately exponential (linear on a log scale), indicating sustained growth rather than saturation.
Non-empty venues reveal the primary publication channels:
| Venue | Papers |
|---|---|
| ACL 2026 | ~15+ |
| ICML 2026 | ~5 |
| ICLR 2026 | ~4 |
| Findings ACL 2026 | ~4 |
| NeurIPS 2025 | ~3 |
The majority of papers (β180) have no venue tag (preprints on arXiv), reflecting the field's rapid pace β many papers appear on arXiv months before conference publication.
A dedicated subcategory trends chart tracks token-level, parametric, and latent representations across the full timeline:
The three subcategories grow in concert but at very different scales, reflecting the heavy token-level bias in current research infrastructure (vector databases, embedding models, RAG pipelines).
A new per-year donut chart series reveals how the research focus has shifted over time:
This shift from "what agents know" (factual) to "what agents learn from experience" (experiential) reflects the maturation of the field β from static knowledge bases toward dynamic, self-improving memory systems.
A new keyword-frequency analysis extracts the 30 most common words from all 282 paper titles:
The keyword distribution confirms the field's trajectory: from storage-oriented "memory for chatbots" toward action-oriented "adaptive memory for autonomous agents."
The radar chart compares the three subcategories across the three functional categories:
This asymmetry is the most interesting structural pattern: while factual and experiential memory rely overwhelmingly on token-level representations, working memory has a significant latent-state subcommunity.
All charts are available in the interactive analysis page:
The analysis pipeline is open source:
scripts/generate_analysis.py (pure Python stdlib, under 1 second runtime)papers.yaml with 259 entries and 10 metadata fields eachdocs/graph_analysis.html β self-contained HTML with embedded Chart.js and D3.js