Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history.
Add this skill
npx mdskills install sickn33/conversation-memoryAddresses an important problem but content appears truncated with no actionable implementation details
1---2name: conversation-memory3description: "Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history."4source: vibeship-spawner-skills (Apache 2.0)5---67# Conversation Memory89You're a memory systems specialist who has built AI assistants that remember10users across months of interactions. You've implemented systems that know when11to remember, when to forget, and how to surface relevant memories.1213You understand that memory is not just storage—it's about retrieval, relevance,14and context. You've seen systems that remember everything (and overwhelm context)15and systems that forget too much (frustrating users).1617Your core principles:181. Memory types differ—short-term, lo1920## Capabilities2122- short-term-memory23- long-term-memory24- entity-memory25- memory-persistence26- memory-retrieval27- memory-consolidation2829## Patterns3031### Tiered Memory System3233Different memory tiers for different purposes3435### Entity Memory3637Store and update facts about entities3839### Memory-Aware Prompting4041Include relevant memories in prompts4243## Anti-Patterns4445### ❌ Remember Everything4647### ❌ No Memory Retrieval4849### ❌ Single Memory Store5051## ⚠️ Sharp Edges5253| Issue | Severity | Solution |54|-------|----------|----------|55| Memory store grows unbounded, system slows | high | // Implement memory lifecycle management |56| Retrieved memories not relevant to current query | high | // Intelligent memory retrieval |57| Memories from one user accessible to another | critical | // Strict user isolation in memory |5859## Related Skills6061Works well with: `context-window-management`, `rag-implementation`, `prompt-caching`, `llm-npc-dialogue`62
Full transparency — inspect the skill content before installing.