Skip to content

Sessions and context

Jarvis Code CLI persists every conversation as a "session" — storing message history and metadata so you can close the terminal and pick up right where you left off. This page covers how to resume sessions, manage context, and export or fork sessions.

Session storage

All sessions are saved under $JARVIS_CODE_HOME/sessions/ (default: ~/.jarvis-code/sessions/), grouped by working directory:

text
~/.jarvis-code/
├── config.toml
├── session_index.jsonl
└── sessions/
    └── <workDirKey>/
        └── <sessionId>/
            ├── state.json
            └── agents/
                ├── main/
                │   └── wire.jsonl
                └── <subagentId>/
                    └── wire.jsonl
  • state.json: session metadata such as title and creation time.
  • agents/*/wire.jsonl: the agent event stream, used for session recovery and replay. It also carries a request trace — the tool schemas, request parameters, and MCP tool listings sent to the model — for debugging.

WARNING

Do not manually edit files inside the sessions/ directory — doing so may prevent sessions from being restored correctly.

Starting and resuming sessions

Every time you run jarvis directly it creates a new session. To resume a previous session, use one of the following:

Resume the most recent session in the current directory:

sh
jarvis --continue

Resume a specific session by ID:

sh
jarvis --session abc123

Interactively browse session history and choose one:

sh
jarvis --session

WARNING

--continue and --session are mutually exclusive.

Switching sessions inside the TUI

You can manage sessions without leaving the terminal. The following slash commands are available only when the agent is idle:

  • /new (alias /clear): switch to a new session, discarding the current context.
  • /sessions (alias /resume): browse and resume a previous session.
  • /fork: fork the current session (see below).
  • /title <text> (alias /rename): set a session title for easier identification; without arguments, displays the current title.

Context compression

As a conversation grows, Jarvis Code CLI automatically compresses the message history when the context approaches the window limit, freeing up token space. You can also trigger compression manually at any time:

/compact

You can pass a hint to tell the model what to prioritize when compressing:

/compact Keep the discussion about database migrations

Forking a session

To explore a new direction without disrupting the current conversation, use /fork:

/fork

Forking does not switch you away: you stay in the original session and the conversation continues untouched. The fork is an independent copy you can switch to at any time using /sessions. A saved /goal is not copied to the fork. Start a new goal there if you want autonomous goal work.

After forking, the CLI prints a ready-to-run command that changes into the working directory and runs jarvis --resume <forkId> (also copied to the clipboard), so you can enter the fork directly from a new terminal process.

Exporting a session

Use jarvis export to package a session as a ZIP file — useful for sharing, archiving, or filing a bug report:

sh
jarvis export <sessionId>

Omitting sessionId exports the most recent session in the current directory (with an interactive confirmation prompt; add -y to skip). Use -o to specify an output path:

sh
jarvis export <sessionId> -o ~/Desktop/my-session.zip

The export includes all files in the session directory, including diagnostic logs. The global diagnostic log (~/.jarvis-code/logs/jarvis-code.log) is also bundled by default; add --no-include-global-log to exclude it.

You can also export from inside the TUI without leaving the interactive session:

  • /export-debug-zip: produces the same debug ZIP as jarvis export, always including the global diagnostic log.
  • /export-md (alias /export): exports the conversation as a human-readable Markdown file, suitable for sharing or archiving. Accepts an optional path argument; without one, it writes to jarvis-export-<short-id>-<timestamp>.md in the current working directory.

TIP

Exported files may contain code, command output, and file paths that are sensitive. Review the content before sharing.

Next steps

  • Data locations — full directory layout for session files
  • Tower mode — when one task needs several agents on separate branches instead of one session
  • jarvis command reference — complete parameter reference for --continue, --session, export, and other commands