Common operations
Backing it up
Because it’s a single SQLite file, backup is a copy:bolt export / bolt import — they produce a portable JSON representation that survives schema migrations.
Schema at a glance
sessions— one row per session, with title, project, timestamps, and status.messages— the full turn log per session.tool_calls— every invocation with inputs, outputs, and duration.
PRAGMA table_info(<table>) to see the live schema.
Related
- Sessions — what the database stores.
- Stats & Cost — aggregated views over the same data.