Memory Types
Core Memory (MEMORY.md)
Stored in~/cow/MEMORY.md, containing long-term user preferences, important decisions, key facts, and other information that doesn’t fade over time. The Agent reads and writes this file via tools to maintain long-term knowledge.
Daily Memory (memory/YYYY-MM-DD.md)
Stored in~/cow/memory/ directory, named by date (e.g., 2026-03-08.md), recording daily conversation summaries and key events. Files are only created on first write to avoid generating empty files.
Dream Diary (memory/dreams/YYYY-MM-DD.md)
A byproduct of the Deep Dream (memory distillation) process, recording discoveries, deduplication operations, and new insights from each consolidation. Stored in~/cow/memory/dreams/ directory, named by date.
Automatic Writing
The Agent automatically persists conversation content to long-term memory through the following mechanisms:- On context trimming — When conversation turns or tokens exceed the configured limit, the oldest half of the context is trimmed, and the discarded content is summarized by LLM into key information and written to the daily memory file. The summary is also asynchronously injected into the retained context for conversational continuity
- Daily scheduled summary — A full summary is automatically triggered at 23:55 every day, ensuring memory is preserved even on low-activity days (skipped if content hasn’t changed)
- Deep Dream (memory distillation) — Runs automatically after the daily summary, distilling daily memories into MEMORY.md and generating a dream diary
- On API context overflow — When the model API returns a context overflow error, the current conversation summary is saved as an emergency measure
Memory Retrieval
The memory system supports hybrid retrieval modes:- Keyword retrieval — FTS5 full-text index matching with BM25 ranking
- Vector retrieval — Embedding-based semantic similarity search, finds relevant memory even with different wording
Related Files
Files related to memory in the workspace (default~/cow):
| File | Description |
|---|---|
AGENT.md | Agent personality and behavior settings |
USER.md | User identity information and preferences |
RULE.md | Custom rules and constraints |
MEMORY.md | Core memory (long-term) |
memory/YYYY-MM-DD.md | Daily memory (created on demand) |
memory/dreams/YYYY-MM-DD.md | Dream diary (auto-generated by Deep Dream) |
Web Console
The memory management page in the Web console allows browsing memory files and dream diaries, with tab switching support:
Configuration
| Parameter | Description | Default |
|---|---|---|
agent_workspace | Workspace path, memory files stored under this directory | ~/cow |
agent_max_context_tokens | Max context tokens; when exceeded, content is trimmed and summarized into memory | 50000 |
agent_max_context_turns | Max context turns; when exceeded, content is trimmed and summarized into memory | 20 |
