What problem does it solve?
Agents lose important context across turns and sessions or bloat their context windows with irrelevant history, causing degraded responses, repeat prompts from users, and increased cost; this Skill shows how to persist, retrieve, and manage only the memories that improve performance.
Core Features & Use Cases
- Memory taxonomy and mapping: Classifies information into in-context, episodic, semantic, and procedural memory and maps each to the right storage and retrieval strategy.
- Context window and cost control: Provides token-budgeting, fixed-window, and summarization strategies to keep prompts compact and relevant.
- Storage, retrieval, and maintenance: Includes schemas for memory items, embedding-based similarity retrieval, extraction prompts, decay and cleanup policies, and system-prompt injection patterns.
- Use Case: Build a personal assistant that remembers user preferences (semantic), surfaces recent support conversations (episodic), and applies learned behavioral rules at the system prompt (procedural).
Quick Start
Retrieve user-relevant memories by running a semantic similarity query on embeddings, format the top results as a short "What you know about this user" block, and prepend it to the system prompt.