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.