Sessions
Manage conversations and history.
Sessions are the core unit of conversation in Arctic. Every interaction with a model happens inside a session.
Create sessions
- TUI:
arcticstarts a new session automatically. - CLI:
arctic run "..."creates a session for the prompt.
List sessions
arctic session listResume sessions
Continue the most recent session:
arctic run --continue "follow‑up question"Resume a specific session:
arctic run --session <session-id> "follow‑up question"Fork sessions
Fork to explore a different approach without losing the original:
arctic session fork <session-id>Fork from a specific message (exclusive):
arctic session fork <session-id> <message-id>Delete sessions
arctic session delete <session-id>Export / import
arctic export <session-id>
arctic import <file-or-url>Diffs and snapshots
See file changes made in a session:
arctic session diff <session-id>Snapshots also power undo/revert and benchmarking. See Snapshots.