What problem does it solve?
Provides a persistent, searchable memory layer so AI agents can retain and recall long-term facts, user preferences, and project context across conversations, eliminating the need to repeat context or manually reintroduce prior details.
Core Features & Use Cases
- Two-layer storage: MEMORY.md holds long-term facts loaded into context, while HISTORY.md is an append-only event log used for archival search.
- Searchable recall: Use memory_search to locate past events or facts across both files and memory_read to retrieve entire files or recent HISTORY lines.
- Write and summarize: Persist important facts immediately with memory_save and rely on automatic consolidation that summarizes older sessions into HISTORY.md and extracts long-term facts into MEMORY.md.
- Use case: Track user preferences like preferred UI theme, capture project decisions and milestones, and recall relevant context during future agent interactions.
Quick Start
Use the memory skill to save the user's preference I prefer dark mode and then retrieve it when asked what the user's preferred theme is.