Skip to main content

Persistent Memory

Digit has bounded, curated memory that persists across sessions. This lets it remember your preferences, your projects, your environment, and things it has learned.

How It Works

Two files make up the agent's memory:

FilePurposeStorage limitSent verbatim while under
MEMORY.mdAgent's personal notes — environment facts, conventions, things learned120,000 chars2,200 chars (~800 tokens)
USER.mdUser profile — your preferences, communication style, expectations24,000 chars1,375 chars (~500 tokens)

Both are stored in ~/.digit/memories/ and are injected into the system prompt as a frozen snapshot at session start. The agent manages its own memory via the memory tool — it can add, replace, remove, or search entries.

info

Two different numbers, and the difference is the point. The old 2,200 / 1,375 ceiling was never a property of the file — it was the price of prompt space, because both files were sent in full on every single request. Above that size the store stops travelling in the prompt: the prompt carries a short digest (how many notes, which sectors, which entries are pinned) and only the notes relevant to your message are attached to that turn. See Note search.

Memory still does not auto-compact: when a write would exceed the storage limit, the memory tool returns an error instead of silently dropping entries. The agent then makes room itself — consolidating or removing entries in the same turn before retrying (see What Happens When Memory is Full). Note that replace is also bound by the limit: swapping an entry for a longer one can still overflow, so the new content must be shortened (or another entry removed) to fit.

While a store fits its verbatim budget nothing has changed: every entry is in the system prompt, exactly as before. Small memories therefore behave the way they always did — retrieval can miss, reading cannot, and there is no reason to retrieve what already fits.

Once a store outgrows that budget, three things happen:

  1. The prompt carries a digest, not the notes. Note counts, the sector breakdown, and any entry tagged #pinned — a few hundred characters instead of the whole store.
  2. Relevant notes are attached per turn. Your message is matched against the notes and the best few are appended to it inside a <memory-context> block. Notes linked from a match with [[wikilinks]] come along too, in both directions — a link is the author saying "read these together".
  3. The agent can search on demand with memory(action="search", query="…") when the automatic selection missed something.

Matching is lexical: SQLite FTS5 with BM25 ranking over a light Russian and English stemmer, so "порт" finds "портами" and "proxies" finds "proxy". No embedding model is involved and nothing leaves the machine — memory is consulted on every turn and has to work with the network down. The honest cost of that choice: synonyms are not understood, so "car" will not find a note that only says "automobile". That is what the explicit search action is for.

The index lives in ~/.digit/memories/recall.db and is derived — rebuilt from the two Markdown files whenever their contents change. Deleting it is safe; it comes back on the next load. The files remain the only source of truth.

Entries blocked by the security scanner are blocked here too: search returns the same [BLOCKED: …] placeholder the system prompt shows, so a poisoned entry cannot reach the model through retrieval either.

memory:
recall:
enabled: true # false = old behaviour, whole store in the prompt
memory_char_limit: 120000
user_char_limit: 24000
top_k: 6 # notes attached per turn
max_chars: 2000 # cap on the attached block
hops: 1 # steps followed along [[wikilinks]]

digit memory status shows how many notes you have and whether each store is sitting in the prompt or being searched.

How Memory Appears in the System Prompt

At the start of every session, memory entries are loaded from disk and rendered into the system prompt as a frozen block:

══════════════════════════════════════════════
MEMORY (your personal notes) [67% — 1,474/2,200 chars]
══════════════════════════════════════════════
User's project is a Rust web service at ~/code/myapi using Axum + SQLx
§
This machine runs Ubuntu 22.04, has Docker and Podman installed
§
User prefers concise responses, dislikes verbose explanations

The format includes:

  • A header showing which store (MEMORY or USER PROFILE)
  • Usage percentage and character counts so the agent knows capacity
  • Individual entries separated by § (section sign) delimiters
  • Entries can be multiline

Once the store outgrows its verbatim budget the same block carries a digest instead of the entries, and the entries themselves arrive per turn (see Note search):

══════════════════════════════════════════════
MEMORY (your personal notes) [4% — 5,327/120,000 chars]
══════════════════════════════════════════════
137 notes in MEMORY.md, 42 links between them.
Sectors: инфра (31), разработка (28), процесс (22), …

Full note text is NOT in the prompt — the relevant ones are attached to the
user's message inside <memory-context>. If what you need isn't there, search:
memory(action="search", query="…").

Frozen snapshot pattern: The system prompt injection is captured once at session start and never changes mid-session. This is intentional — it preserves the LLM's prefix cache for performance. When the agent adds/removes memory entries during a session, the changes are persisted to disk immediately but won't appear in the system prompt until the next session starts. Tool responses always show the live state.

Memory Tool Actions

The agent uses the memory tool with these actions:

  • add — Add a new memory entry
  • replace — Replace an existing entry with updated content (uses substring matching via old_text)
  • remove — Remove an entry that's no longer relevant (uses substring matching via old_text)

There is no read action — memory content is automatically injected into the system prompt at session start. The agent sees its memories as part of its conversation context.

Substring Matching

The replace and remove actions use short unique substring matching — you don't need the full entry text. The old_text parameter just needs to be a unique substring that identifies exactly one entry:

# If memory contains "User prefers dark mode in all editors"
memory(action="replace", target="memory",
old_text="dark mode",
content="User prefers light mode in VS Code, dark mode in terminal")

If the substring matches multiple entries, an error is returned asking for a more specific match.

Two Targets Explained

memory — Agent's Personal Notes

For information the agent needs to remember about the environment, workflows, and lessons learned:

  • Environment facts (OS, tools, project structure)
  • Project conventions and configuration
  • Tool quirks and workarounds discovered
  • Completed task diary entries
  • Skills and techniques that worked

user — User Profile

For information about the user's identity, preferences, and communication style:

  • Name, role, timezone
  • Communication preferences (concise vs detailed, format preferences)
  • Pet peeves and things to avoid
  • Workflow habits
  • Technical skill level

What to Save vs Skip

Save These (Proactively)

The agent saves automatically — you don't need to ask. It saves when it learns:

  • User preferences: "I prefer TypeScript over JavaScript" → save to user
  • Environment facts: "This server runs Debian 12 with PostgreSQL 16" → save to memory
  • Corrections: "Don't use sudo for Docker commands, user is in docker group" → save to memory
  • Conventions: "Project uses tabs, 120-char line width, Google-style docstrings" → save to memory
  • Completed work: "Migrated database from MySQL to PostgreSQL on 2026-01-15" → save to memory
  • Explicit requests: "Remember that my API key rotation happens monthly" → save to memory

Skip These

  • Trivial/obvious info: "User asked about Python" — too vague to be useful
  • Easily re-discovered facts: "Python 3.12 supports f-string nesting" — can web search this
  • Raw data dumps: Large code blocks, log files, data tables — too big for memory
  • Session-specific ephemera: Temporary file paths, one-off debugging context
  • Information already in context files: SOUL.md and AGENTS.md content

Capacity Management

Memory has character limits, but they no longer bound the system prompt — that is note search's job now:

StoreStorage limitTypical entriesSent verbatim while under
memory120,000 chars~1,200 entries2,200 chars (~20 entries)
user24,000 chars~240 entries1,375 chars (~13 entries)

What Happens When Memory is Full

When you try to add an entry that would exceed the limit, the tool returns an error:

{
"success": false,
"error": "Memory at 2,100/2,200 chars. Adding this entry (250 chars) would exceed the limit. Consolidate now: use 'replace' to merge overlapping entries into shorter ones or 'remove' stale or less important entries (see current_entries below), then retry this add — all in this turn.",
"current_entries": ["..."],
"usage": "2,100/2,200"
}

The agent should then:

  1. Read the current entries (shown in the error response)
  2. Identify entries that can be removed or consolidated
  3. Use replace to merge related entries into shorter versions
  4. Then add the new entry

Best practice: When memory is above 80% capacity (visible in the system prompt header), consolidate entries before adding new ones. For example, merge three separate "project uses X" entries into one comprehensive project description entry.

Practical Examples of Good Memory Entries

Compact, information-dense entries work best:

# Good: Packs multiple related facts
User runs macOS 14 Sonoma, uses Homebrew, has Docker Desktop and Podman. Shell: zsh with oh-my-zsh. Editor: VS Code with Vim keybindings.

# Good: Specific, actionable convention
Project ~/code/api uses Go 1.22, sqlc for DB queries, chi router. Run tests with 'make test'. CI via GitHub Actions.

# Good: Lesson learned with context
The staging server (10.0.1.50) needs SSH port 2222, not 22. Key is at ~/.ssh/staging_ed25519.

# Bad: Too vague
User has a project.

# Bad: Too verbose
On January 5th, 2026, the user asked me to look at their project which is
located at ~/code/api. I discovered it uses Go version 1.22 and...

Duplicate Prevention

The memory system automatically rejects exact duplicate entries. If you try to add content that already exists, it returns success with a "no duplicate added" message.

Security Scanning

Memory entries are scanned for injection and exfiltration patterns before being accepted, since they're injected into the system prompt. Content matching threat patterns (prompt injection, credential exfiltration, SSH backdoors) or containing invisible Unicode characters is blocked.

Beyond MEMORY.md and USER.md, the agent can search its past conversations using the session_search tool:

  • All CLI and messaging sessions are stored in SQLite (~/.digit/state.db) with FTS5 full-text search
  • Search queries return actual messages from the DB — no LLM summarization, no truncation
  • The agent can find things it discussed weeks ago, even if they're not in its active memory
  • The agent can also scroll forward/backward inside any session it finds
digit sessions list # Browse past sessions

See Session Search Tool for the three calling shapes (discovery / scroll / browse) and the response format.

session_search vs memory

FeaturePersistent MemorySession Search
Capacity~1,300 tokens totalUnlimited (all sessions)
SpeedInstant (in system prompt)~20ms FTS5 query, ~1ms scroll
CostToken cost in every promptFree — no LLM calls
Use caseKey facts always availableFinding specific past conversations
ManagementManually curated by agentAutomatic — all sessions stored
Token costFixed per session (~1,300 tokens)On-demand (searched when needed)

Memory is for critical facts that should always be in context. Session search is for "did we discuss X last week?" queries where the agent needs to recall specifics from past conversations.

Learning Journey (/journey)

The learning journey is a timeline view of everything Digit has learned — saved skills and memory entries plotted over time (oldest at top, newest at bottom), with a playable "constellation" scrubber that replays the build-up. The same graph data drives three surfaces:

  • Classic CLI / standalonedigit journey (aliases: digit learning, digit memory-graph) renders the timeline in the terminal. Flags: --play animates the build-up (--fps to tune it), --width/--height override the render size, --no-color disables color, and --json dumps the raw graph payload.
  • TUI/journey (aliases: /learning, /memory-graph) opens the timeline as an overlay.
  • Desktop app/journey opens the Star Map / memory-graph panel, an interactive visual of the same nodes.

Beyond viewing, the journey is also where you prune and correct what Digit has learned:

CommandWhat it does
digit journey listList node ids — skill names and memory:<source>:<index> ids for memory chunks.
digit journey delete <node> [-y]Delete a node. Skills are archived (restorable), memory chunks are removed. -y skips the confirmation.
digit journey edit <node>Open the node's content (a skill's SKILL.md or the memory chunk) in $EDITOR.

The same list / delete <id> / edit <id> subcommands work from the in-chat /journey command on the CLI, and the desktop panel offers edit/delete on nodes directly.

Sectors — the graph by area (digit journey sectors)

The timeline answers when something was learned. Chronology scatters one subject across every date row, so it cannot answer what areas do I know about, and what holds each one together?digit journey sectors (also digit memory-graph sectors) is that second axis over the same graph.

Structure comes from what you already write inside a memory entry:

  • [[Note title]] links one entry to another. The link is matched against the entry's first line, ignoring a leading #, case and extra spaces.
  • #tag files the entry into a sector. The first tag wins. # Heading is markdown, not a tag, and #26045 is an issue number, not a tag.
  • An entry with no tag inherits the sector of the entries it is linked to — linking a note into a cluster is itself the act of filing it.
  • Anything neither tagged nor linked is listed under unsorted, honestly.

Each row shows outgoing () and incoming () links, so a hub and an orphan are told apart at a glance. Incoming links are the point: an entry never declares who points at it, and without backlinks a link can only be followed in the direction it was typed. A link to an entry that does not exist yet is flagged with rather than dropped — in a note network that is a normal state and usually the next thing worth writing.

$ digit journey sectors
✦ Sectors · knowledge by area, with links in both directions

retrieval 4 ████████████████████ ◆4 ⇄5
◆ Vector search →2 ←2
◆ Hybrid search →1 ←2
◆ Embeddings →1 ←1
◆ RAG plans →1 ←0 ⚑1
infra 2 ██████████ ◆2 ⇄1
◆ Fail2ban on our hosts →1 ←0
◆ SSH config →0 ←1

2 sectors · 6 memories · 6 note↔note links · 0 note↔skill links
6/8 notes are linked to another note (75%)
⚑ 1 links point at notes that don't exist yet

Flags: a bare sector name narrows the view to one area (link counts stay whole-graph, so the filter never overstates how isolated an area is), --limit sets how many entries are listed per sector, --json emits the breakdown for scripts, plus the usual --width / --no-color.

Learned skills appear in the same sectors as your notes, filed by their category frontmatter, so one view covers both halves of what Digit knows.

Configuration

# In ~/.digit/config.yaml
memory:
memory_enabled: true
user_profile_enabled: true
# How much of each store is sent in the system prompt VERBATIM. Above this,
# the prompt gets a digest and notes are retrieved per turn instead.
memory_char_limit: 2200 # ~800 tokens
user_char_limit: 1375 # ~500 tokens
write_approval: false # false = write freely (default) | true = require approval
recall: # see "Note search" above
enabled: true
memory_char_limit: 120000 # storage ceiling once retrieval is on
user_char_limit: 24000

Controlling memory writes (write_approval)

By default the agent saves memory freely — including from the background self-improvement review that runs after a turn. If you'd rather approve saves first, set memory.write_approval: true. It's a simple on/off gate applied to both foreground turns and the background review:

write_approvalBehaviour
false (default)Write freely — the gate is off (the pre-gate behaviour).
trueRequire approval before anything is saved. In the interactive CLI, foreground writes prompt you inline (entries are small enough to read in full). Everywhere else — messaging platforms, scripts, and the background self-improvement review — writes are staged for review with /memory pending.

To turn memory off entirely (not just gate it), set memory_enabled: false.

Review staged writes from the CLI or any messaging platform:

/memory pending # list staged memory writes (auto ones tagged [auto])
/memory approve <id> # apply one (or 'all')
/memory reject <id> # drop one (or 'all')
/memory approval on # turn the gate on (or 'off') and persist it

This is the answer to "the agent saved a wrong assumption about me": set write_approval: true, and every save — especially the unprompted background ones — waits for your yes/no before it ever enters your profile.

Background review notifications (display.memory_notifications)

After a turn, the background self-improvement review may quietly save a memory or update a skill. This is Digit' consent-aware learning loop: repeated corrections and durable workflow lessons become compact memory entries or procedural skills, while write_approval can stage those writes for review before they affect future sessions. By default it surfaces a short 💾 Memory updated line in chat so you know it happened. Control how chatty that is:

display:
memory_notifications: on # off | on (default) | verbose
ValueBehaviour
offNo chat notification. The review still runs and still writes — you just don't see a line for it.
on (default)Generic line, e.g. 💾 Memory updated, 💾 Skill 'foo' patched.
verboseIncludes a compact preview of what changed, e.g. 💾 Memory ➕ User prefers terse replies or a "old" → "new" skill diff snippet.

This only governs the gateway chat notification. The review itself, and writes to your memory/skill stores, are unaffected by this setting. Set it per-platform via display.platforms.<platform>.memory_notifications.

Running the review on a cheaper model (auxiliary.background_review)

The review runs on your main chat model by default, replaying the conversation — which is already warm in the prompt cache, so it's cheap cache reads. On an expensive main model you can run the review on a cheaper model instead:

auxiliary:
background_review:
provider: openrouter
model: google/gemini-3-flash-preview # auto (default) = main chat model

When you point it at a model different from your main one, the review runs there for substantially lower cost (~3–5× in benchmarks). Because a different model can't reuse your main model's prompt cache anyway, the fork automatically replays a compact digest of the conversation (recent turns verbatim + a summary of older ones) rather than the full transcript — minimizing what it writes to the new cache. Capture holds: in testing, memory capture was identical and skill capture near-identical to the main-model review.

Leave it at auto (or set it to your main model) and nothing changes — the review keeps running on the main model with the full warm-cache replay.

Controlling skill writes (skills.write_approval)

Skills use the same on/off gate, but the review UX differs because a SKILL.md is far too large to read in a chat bubble:

skills:
write_approval: false # false = write freely (default) | true = require approval

When write_approval: true, skill writes (create / edit / patch / write_file / delete) always stage regardless of origin. You review the one-line gist inline, but the full diff stays out-of-band:

/skills pending # list staged skill writes + a one-line gist each
/skills diff <id> # full unified diff (best viewed in CLI or dashboard)
/skills approve <id> # apply it (or 'all')
/skills reject <id> # drop it (or 'all')
/skills approval on # turn the gate on (or 'off') and persist it

On a messaging platform, approve a skill from its gist + metadata, or open /skills diff on the CLI / dashboard / the staged file under ~/.digit/pending/skills/<id>.json when you want to read the whole change. Full details in Gating agent skill writes.

External Memory Providers

For deeper, persistent memory that goes beyond MEMORY.md and USER.md, Digit ships with 8 external memory provider plugins — including Honcho, OpenViking, Mem0, Hindsight, Holographic, RetainDB, ByteRover, and Supermemory.

External providers run alongside built-in memory (never replacing it) and add capabilities like knowledge graphs, semantic search, automatic fact extraction, and cross-session user modeling.

digit memory setup # pick a provider and configure it
digit memory status # check what's active

See the Memory Providers guide for full details on each provider, setup instructions, and comparison.