Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Configuration

cryo init creates a cryo.toml file with project settings:

# cryo.toml — Cryochamber project configuration
agent = "opencode"        # Agent command (opencode, claude, codex, etc.)
max_retries = 1           # Max retry attempts on agent failure (1 = no retry)
max_session_duration = 0  # Session timeout in seconds (0 = no timeout)
watch_inbox = true        # Watch inbox for reactive wake

# Web UI host and port (for `cryo web`)
# web_host = "127.0.0.1"
# web_port = 3945

Fields

FieldDefaultDescription
agent"opencode"Agent command to run. Use "claude" for Claude Code, "codex" for Codex.
max_retries1Max retry attempts on agent failure. 1 means no retry.
max_session_duration0Session timeout in seconds. 0 disables timeout.
watch_inboxtrueWatch messages/inbox/ for new files and wake immediately.
web_host"127.0.0.1"Host for cryo web to listen on. Use "0.0.0.0" for remote access only behind an authenticated, TLS-terminating proxy.
web_port3945Port for cryo web to listen on.

CLI Overrides

CLI flags to cryo start override config values for that session:

cryo start --agent claude             # override agent
cryo start --max-retries 3            # override retries
cryo start --max-session-duration 3600  # override timeout

These overrides are stored in timer.json (runtime state) and do not modify cryo.toml.

Config vs State

FilePurposePersists
cryo.tomlProject configuration (checked into git)Yes
timer.jsonRuntime state (session number, PID lock, CLI overrides)No (ephemeral)