Agent skill · AI & Agents

conversation-memory

Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill conversation-memory --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/conversation-memory/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Conversation Memory Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory ## Capabilities - short-term-memory - long-term-memory - entity-memory - memory-persistence - memory-retrieval - memory-consolidation ## Prerequisites - Knowledge: LLM conversation patterns, Database basics, Key-value stores - Skills_recommended: context-window-management, rag-implementation ## Scope - Does_not_cover: Knowledge graph construction, Semantic search implementation, Database administration - Boundaries: Focus is memory patterns for LLMs, Covers storage and retrieval strategies ## Ecosystem ### Primary_tools - Mem0 - Memory layer for AI applications - LangChain Memory - Memory utilities in LangChain - Redis - In-memory data store for session memory ## Patterns ### Tiered Memory System Different memory tiers for different purposes **When to use**: Building any conversational AI interface MemorySystem { // Buffer: Current conversation (in context) buffer: ConversationBuffer; // Short-term: Recent interactions (session) shortTerm: ShortTermMemory; // Long-term: Persistent across sessions longTerm: LongTermMemory; // Entity: Facts about people, plac

What's inside
Steps it walks through
  1. Capabilities
  2. Prerequisites
  3. Scope
  4. Ecosystem
  5. Primarytools
  6. Patterns
  7. Tiered Memory System
  8. Entity Memory
  9. Memory-Aware Prompting
  10. User Context
  11. Recent Conversation
  12. Current Query
  13. Sharp Edges
  14. Memory store grows unbounded, system slows
More from agentic-awesome-skills
All skills →
About this skill
What does the conversation-memory skill do?

Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill conversation-memory --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going