Overview of ai-memory
mainai-memory provides long-term memory for AI coding agents. It solves the problem of context loss when an LLM session ends by creating a shared, persistent wiki compiled from sanitized lifecycle observations.
Key characteristics:
- Persistent Wiki: The memory is stored as plain markdown in a git repository, making it
grep-able, compatible with tools like Obsidian, and easy to back up withrsync. - No Infrastructure Overhead: It does not require a vector database or manual
write_noteceremonies. - Seamless Handoffs: When a session ends, relevant observations are summarized into a coherent handoff that the next agent can consume.
- Cross-Harness Continuity: Using
ai-memory runallows for higher-fidelity continuity when switching between different coding agents (e.g., moving from Claude Code to OpenAI Codex).