How capture works
At the close of every conversational turn, Bolt asks the model to summarize durable facts that will be useful next time: conventions, architecture notes, file layout, build/test commands, gotchas, and open threads. These are written to disk under the project’s memory directory, alongside a rolling digest of the most recent session. Memory is per-project. Two checkouts of the same repo on the same machine share memory; unrelated projects never see each other’s memory.Explicit tools
Agents can also read and write memory directly during a session:memory_save— record a specific fact the agent should remember next time.memory_recall— look up something the agent (or you) captured previously.
memory_save for you.
Per-session controls
Inside the TUI you can toggle memory behavior for the current session with slash commands:Inspecting and editing memory
bolt debug paths.
Related
- Sessions — the durable conversations that produce memory entries.
- Configuration — where memory is stored and how to override the path.