Sessions and state
Seepient preserves conversation history across runs. A session records every user prompt, model thinking step, tool invocation, prepared action, and approval decision.
Session storage
By default, Seepient writes session records to ~/.seepient/sessions/ using atomic JSON files. Each session receives a unique identifier based on timestamp and hash.
Managing sessions from the CLI
List previous sessions:
seepient sessions listResume a previous conversation:
seepient --session sess_20260905_a1b2c3Export a session to a markdown transcript:
seepient sessions export sess_20260905_a1b2c3 --output ./transcript.mdManaging sessions in the TUI
Inside the interactive terminal interface:
/session list: Shows recent sessions in an interactive list selector./session resume <id>: Swaps context to the selected session./session new: Starts a fresh session while leaving the current one saved on disk.
Session forking
When experimenting with alternate prompts or refactoring paths, you can fork an existing session from a specific turn:
seepient sessions fork sess_20260905_a1b2c3 --turn 4The new session inherits the conversation history up to turn 4, creating an independent branch that does not overwrite the parent session.
Embedder-owned storage (SDK)
In serverless environments or multi-tenant web applications, writing to a local home directory is not always possible. The TypeScript SDK supports embedder-owned storage.
You can inject custom storage adapters directly into createSeepient:
import { createSeepient, type SessionStore } from 'seepient'
class RedisSessionStore implements SessionStore {
async get(sessionId: string) { /* ... fetch from redis ... */ }
async save(session: SessionRecord) { /* ... write to redis ... */ }
async delete(sessionId: string) { /* ... */ }
}
const agent = createSeepient({
sessionStore: new RedisSessionStore(),
sessionId: 'user_42_workspace_99'
})This architecture allows Seepient to run in zero-disk containers, Lambda functions, or Cloudflare Workers while delegating session persistence to your database of choice.