5.7 KiB
summary, read_when, title
| summary | read_when | title | |||
|---|---|---|---|---|---|
| How OpenClaw manages conversation sessions |
|
Session management |
OpenClaw organizes conversations into sessions. Each message is routed to a session based on where it came from -- DMs, group chats, cron jobs, etc.
How messages are routed
| Source | Behavior |
|---|---|
| Direct messages | Shared session by default |
| Group chats | Isolated per group |
| Rooms/channels | Isolated per room |
| Cron jobs | Fresh session per run |
| Webhooks | Isolated per hook |
DM isolation
By default, all DMs share one session for continuity. This is fine for single-user setups.
If multiple people can message your agent, enable DM isolation. Without it, all users share the same conversation context -- Alice's private messages would be visible to Bob.The fix:
{
session: {
dmScope: "per-channel-peer", // isolate by channel + sender
},
}
Other options:
main(default) -- all DMs share one session.per-peer-- isolate by sender (across channels).per-channel-peer-- isolate by channel + sender (recommended).per-account-channel-peer-- isolate by account + channel + sender.
Dock linked channels
Dock commands let a user move the current direct-chat session's reply route to another linked channel without starting a new session. See Channel docking for examples, config, and troubleshooting.
Verify your setup with openclaw security audit.
Session lifecycle
Sessions are reused until they expire:
- Daily reset (default) -- new session at 4:00 AM local time on the gateway
host. Daily freshness is based on when the current
sessionIdstarted, not on later metadata writes. - Idle reset (optional) -- new session after a period of inactivity. Set
session.reset.idleMinutes. Idle freshness is based on the last real user/channel interaction, so heartbeat, cron, and exec system events do not keep the session alive. - Manual reset -- type
/newor/resetin chat./new <model>also switches the model.
When both daily and idle resets are configured, whichever expires first wins. Heartbeat, cron, exec, and other system-event turns may write session metadata, but those writes do not extend daily or idle reset freshness. When a reset rolls the session, queued system-event notices for the old session are discarded so stale background updates are not prepended to the first prompt in the new session.
Sessions with an active provider-owned CLI session are not cut by the implicit
daily default. Use /reset or configure session.reset explicitly when those
sessions should expire on a timer.
Where state lives
All session state is owned by the gateway. UI clients query the gateway for session data.
- Store:
~/.openclaw/state/openclaw.sqlitefor global state plus~/.openclaw/agents/<agentId>/agent/openclaw-agent.sqlitefor agent-owned rows. Legacysessions.jsonindexes are imported byopenclaw doctor --fix. - Transcripts: SQLite
transcript_eventsrows in the per-agent database. JSONL transcript files are import/export/debug shape, not runtime storage.
The session store keeps separate lifecycle timestamps:
sessionStartedAt: when the currentsessionIdbegan; daily reset uses this.lastInteractionAt: last user/channel interaction that extends idle lifetime.updatedAt: last store-row mutation; useful for listing, but not authoritative for daily/idle reset freshness.
Older rows without sessionStartedAt are resolved from the SQLite transcript
session header when available. If an older row also lacks lastInteractionAt,
idle freshness falls back to that session start time, not to later bookkeeping
writes.
Session Repair
SQLite is the durable session store. Gateway runtime writes do not prune, cap,
or import session rows, and session store reads do not run cleanup during
startup. Legacy session.maintenance settings are handled only by
openclaw doctor --fix, which removes them from older config files.
Use openclaw doctor --fix to import remaining legacy session files. If a row
still references a transcript that no longer exists after doctor runs, reset or
delete that session explicitly.
Inspecting sessions
openclaw status-- agent database path and recent activity.openclaw sessions --json-- all sessions (filter with--active <minutes>)./statusin chat -- context usage, model, and toggles./context list-- what is in the system prompt.
Further reading
- Session Pruning -- trimming tool results
- Compaction -- summarizing long conversations
- Session Tools -- agent tools for cross-session work
- Session Management Deep Dive -- store schema, transcripts, send policy, origin metadata, and advanced config
- Multi-Agent — routing and session isolation across agents
- Background Tasks — how detached work creates task records with session references
- Channel Routing — how inbound messages are routed to sessions