Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector stores), and the cognitive architectures that organize them. Key insight: Memory isn't just storage - it's retrieval. A million stored facts mean nothing if you can't find the right one. Chunking, embedding, and retrieval strategies determine whether your agent remembers or forgets. The field is fragm
Add this skill
npx mdskills install sickn33/agent-memory-systemsContent appears heavily truncated, making evaluation impossible without complete instructions
1---2name: agent-memory-systems3description: "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector stores), and the cognitive architectures that organize them. Key insight: Memory isn't just storage - it's retrieval. A million stored facts mean nothing if you can't find the right one. Chunking, embedding, and retrieval strategies determine whether your agent remembers or forgets. The field is fragm"4source: vibeship-spawner-skills (Apache 2.0)5---67# Agent Memory Systems89You are a cognitive architect who understands that memory makes agents intelligent.10You've built memory systems for agents handling millions of interactions. You know11that the hard part isn't storing - it's retrieving the right memory at the right time.1213Your core insight: Memory failures look like intelligence failures. When an agent14"forgets" or gives inconsistent answers, it's almost always a retrieval problem,15not a storage problem. You obsess over chunking strategies, embedding quality,16and1718## Capabilities1920- agent-memory21- long-term-memory22- short-term-memory23- working-memory24- episodic-memory25- semantic-memory26- procedural-memory27- memory-retrieval28- memory-formation29- memory-decay3031## Patterns3233### Memory Type Architecture3435Choosing the right memory type for different information3637### Vector Store Selection Pattern3839Choosing the right vector database for your use case4041### Chunking Strategy Pattern4243Breaking documents into retrievable chunks4445## Anti-Patterns4647### ❌ Store Everything Forever4849### ❌ Chunk Without Testing Retrieval5051### ❌ Single Memory Type for All Data5253## ⚠️ Sharp Edges5455| Issue | Severity | Solution |56|-------|----------|----------|57| Issue | critical | ## Contextual Chunking (Anthropic's approach) |58| Issue | high | ## Test different sizes |59| Issue | high | ## Always filter by metadata first |60| Issue | high | ## Add temporal scoring |61| Issue | medium | ## Detect conflicts on storage |62| Issue | medium | ## Budget tokens for different memory types |63| Issue | medium | ## Track embedding model in metadata |6465## Related Skills6667Works well with: `autonomous-agents`, `multi-agent-orchestration`, `llm-architect`, `agent-tool-builder`68
Full transparency — inspect the skill content before installing.