Sessions and context
Kimi 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 $KIMI_CODE_HOME/sessions/ (default: ~/.kimi-code/sessions/), grouped by working directory:
~/.kimi-code/
├── config.toml
├── session_index.jsonl
└── sessions/
└── <workDirKey>/
└── <sessionId>/
├── state.json
└── agents/
├── main/
│ └── wire.jsonl
└── <subagentId>/
└── wire.jsonlstate.json: session metadata such as title and creation time.agents/*/wire.jsonl: the agent event stream, used for session recovery and replay.
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 kimi 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:
kimi --continueResume a specific session by ID:
kimi --session abc123Interactively browse session history and choose one:
kimi --sessionWARNING
--continue and --session are mutually exclusive. --yolo and --plan cannot be combined with them either.
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, Kimi 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:
/compactYou can pass a hint to tell the model what to prioritize when compressing:
/compact Keep the discussion about database migrationsForking a session
To explore a new direction without disrupting the current conversation, use /fork:
/forkThe two resulting sessions are completely independent and do not affect each other. You can switch back to the original 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.
Exporting a session
Use kimi export to package a session as a ZIP file — useful for sharing, archiving, or filing a bug report:
kimi 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:
kimi export <sessionId> -o ~/Desktop/my-session.zipThe export includes all files in the session directory, including diagnostic logs. The global diagnostic log (~/.kimi-code/logs/kimi-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 askimi export./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 tokimi-export-<short-id>-<timestamp>.mdin 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
- kimi command reference — complete parameter reference for
--continue,--session,export, and other commands