@tom_doerr: Curated papers on short, long-term, and experiential agent memory https://github.com/TsinghuaC3I/Awesome-Memory-for-Age…
Summary
A curated repository of papers on agent memory, organized by short-term, long-term, and experiential memory, with a taxonomy and application scenarios for LLM agents.
View Cached Full Text
Cached at: 05/31/26, 03:13 PM
Curated papers on short, long-term, and experiential agent memory https://github.com/TsinghuaC3I/Awesome-Memory-for-Agents…
TsinghuaC3I/Awesome-Memory-for-Agents
Source: https://github.com/TsinghuaC3I/Awesome-Memory-for-Agents
Awesome-Memory-for-Agents
The paper list is maintained by Hongyi Liu, Yu Fu, Kaiyan Zhang, contributed by Yuxin Zuo, Che Jiang, Guoli Jia, Yuru Wang, Kaikai Zhao, Yuchen Fan, Zhenzhao Yuan, Kai Tian, Weizhi Wang.
Table of Contents
Overview
This repository provides a curated list of papers on agent memory, structured by a core taxonomy. We first divide agent memory based on its persistence:
- Short-Term Memory: Transient information managed within the context window for a single task;
- Long-Term Memory: Persistent information stored externally across tasks.
Within Long-Term Memory, we further distinguish based on its reliance on task outcomes (success/failure) for curation:
- Experience involves knowledge explicitly validated by task outcomes;
- Memory denotes information without reference to task outcomes.
This taxonomy maps directly to the three primary application scenarios that organize the papers in this repository:
| Application | Memory Content | Description |
|---|---|---|
| Personalization | User profiles, interaction history, facts, etc. | Continuous personalized interaction, mainly targeting the conversation scenario and using an external memory pool with retrieval-based memory interaction |
| Learning from Experience | Trajectories, success/failure lessons, reusable skills, etc. | Cross-task experience accumulation & transfer |
| Long-horizon Agentic Task | Intermediate results, reasoning traces, environmental observations, etc. | Context management within a single long-horizon task via summarization, reflection, or scratchpad, etc. |
Paper List
Application
Personalization
Learning from Experience
Long-horizon Agentic Task
Survey
Benchmark
Product & Project
Similar Articles
@DanKornas: Most agents don’t need more prompts. They need memory that fits the job. Agent Memory Techniques is a hands-on GitHub g…
A hands-on GitHub guide covering 30 runnable Jupyter notebooks on memory patterns for LLM agents, organized into short-term, long-term, cognitive architecture, retrieval, framework, and evaluation/production sections with a decision tree and comparison matrix.
From Storage to Experience: A Survey on the Evolution of LLM Agent Memory Mechanisms
This survey paper proposes an evolutionary framework for LLM agent memory mechanisms, categorizing their development into three stages: storage, reflection, and experience. It analyzes core drivers such as long-range consistency and continual learning to provide design principles for next-generation agents.
@Voxyz_ai: a framework for agent memory: Remember, Cite, Forget. here's one way to do it. mine looks like this: → Remember: hot se…
Introduces a framework for agent memory with three components: Remember (hot session and cross-session storage), Cite (authority ordering via AGENTS.md), and Forget (timestamped facts with Mem0-style soft decay). Argues that missing any of these leads to stale facts or unauthorized sources.
rohitg00/agentmemory
agentmemory is an open-source persistent memory layer for AI coding agents (Claude Code, Cursor, Gemini CLI, Codex CLI, etc.) that uses knowledge graphs, confidence scoring, and hybrid search to give agents long-term memory across sessions via MCP, hooks, or REST API. Built on the iii engine, it requires no external databases and exposes 51 MCP tools.
@adxtyahq: For the past few weeks, me and @iamadityaanjana have been working on a Collaborative Multi-Agent Memory System, and we'…
The authors developed a collaborative multi-agent memory system with shared/private memory scopes, trust-aware retrieval, lineage tracking, and contradiction resolution, and submitted a paper to a conference.