@DanKornas: Most agents don’t need more prompts. They need memory that fits the job. Agent Memory Techniques is a hands-on GitHub g…
Summary
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.
View Cached Full Text
Cached at: 05/24/26, 06:36 PM
Most agents don’t need more prompts. They need memory that fits the job.
Agent Memory Techniques is a hands-on GitHub guide to memory patterns for LLM agents, organized as 30 runnable Jupyter notebooks.
It helps you choose and test memory designs by grouping techniques into short-term, long-term, cognitive architecture, retrieval/routing, framework, and evaluation/production sections, with a decision tree and comparison matrix for navigation.
Key features:
• 30 runnable notebooks – covers conversation buffers, vector stores, knowledge graphs, episodic/semantic memory, MemGPT, Mem0, Letta, Zep, Graphiti, LoCoMo benchmarks, and production patterns • Six-family taxonomy – splits memory into short-term, long-term, cognitive architecture, retrieval, framework, and evaluation/production tracks • Decision tree for builders – points you toward the right technique based on current chat, cross-session memory, frameworks, or production/evaluation needs • Comparison matrix – helps you filter techniques by persistence, retrieval style, token cost, and best-fit use case • Notebook-first learning path – starts with Conversation Buffer Memory and links each technique to runnable notebooks and Colab
It’s open-source under the Apache License 2.0.
Link in the reply
Similar Articles
I thought markdown memory would be enough for agents. It turned into prompt debt.
The author reflects on the limitations of using flat markdown files for long-term agent memory, which leads to prompt debt as the memory grows, and advocates for graph-based memory representations that retrieve relevant context dynamically.
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.
@tom_doerr: Curated papers on short, long-term, and experiential agent memory https://github.com/TsinghuaC3I/Awesome-Memory-for-Age…
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.
Tired of onboarding your agent every session? Building a memory system to fix the problem? Here's a guide to some things you should be thinking about when designing your system.
An exploration of how AI agent memory systems often miss crucial cognitive processes like working memory, drawing parallels to anterograde amnesia, and offering design guidance for more effective solutions.
How are you handling agent memory without turning it into a junk drawer?
A discussion on the practical challenges of managing agent memory in AI systems, focusing on avoiding information overload that degrades output quality, and proposing strategies like using workflow state and multi-agent architecture.