Skip to main content
Long-term memory is stored in workspace files, persisting across sessions. The Agent loads historical memory on demand via retrieval tools during conversation, and automatically writes conversation summaries to long-term memory when context is trimmed.

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
All memory writes run asynchronously in a background thread (LLM summarization + file writing), never blocking normal conversation replies.

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
The Agent automatically triggers memory retrieval during conversation as needed, incorporating relevant historical information into context. Results are ranked by a combined score (default: 0.7 vector weight + 0.3 keyword weight). Daily memory scores decay over time (30-day half-life), while core memory does not decay. Files related to memory in the workspace (default ~/cow):
FileDescription
AGENT.mdAgent personality and behavior settings
USER.mdUser identity information and preferences
RULE.mdCustom rules and constraints
MEMORY.mdCore memory (long-term)
memory/YYYY-MM-DD.mdDaily memory (created on demand)
memory/dreams/YYYY-MM-DD.mdDream 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

ParameterDescriptionDefault
agent_workspaceWorkspace path, memory files stored under this directory~/cow
agent_max_context_tokensMax context tokens; when exceeded, content is trimmed and summarized into memory50000
agent_max_context_turnsMax context turns; when exceeded, content is trimmed and summarized into memory20