Data Locations
Kimi Code CLI stores all data in the ~/.kimi/ directory under the user's home directory. This page describes the locations and purposes of various data files.
You can customize the share directory path by setting the
KIMI_SHARE_DIRenvironment variable.Note:
KIMI_SHARE_DIRonly affects the storage location of the runtime data listed above, not Agent Skills search paths. Skills, as cross-tool shared capability extensions, are a different type of data from runtime data.
Directory Structure
~/.kimi/
├── config.toml # Main configuration file
├── kimi.json # Metadata
├── mcp.json # MCP server configuration
├── credentials/ # OAuth credentials
│ └── <provider>.json
├── sessions/ # Session data
│ └── <work-dir-hash>/
│ └── <session-id>/
│ ├── context.jsonl
│ ├── wire.jsonl
│ └── state.json
├── imported_sessions/ # Imported session data (via kimi vis)
│ └── <session-id>/
│ ├── context.jsonl
│ ├── wire.jsonl
│ └── state.json
├── plans/ # Plan mode plan files
│ └── <slug>.md
├── user-history/ # Input history
│ └── <work-dir-hash>.jsonl
└── logs/ # Logs
└── kimi.logConfiguration and Metadata
config.toml
Main configuration file, stores providers, models, services, and runtime parameters. See Config Files for details.
You can specify a configuration file at a different location with the --config-file parameter.
kimi.json
Metadata file, stores Kimi Code CLI's runtime state, including:
- work_dirs: List of working directories and their last used session IDs
- thinking: Whether thinking mode was enabled in the last session
This file is automatically managed by Kimi Code CLI and typically does not need manual editing.
mcp.json
MCP server configuration file, stores MCP servers added via the kimi mcp add command. See MCP for details.
Example structure:
{
"mcpServers": {
"context7": {
"url": "https://mcp.context7.com/mcp",
"transport": "http",
"headers": {
"CONTEXT7_API_KEY": "ctx7sk-xxx"
}
}
}
}Credentials
OAuth credentials are stored in the ~/.kimi/credentials/ directory. After logging in to your Kimi account via /login, OAuth tokens are saved in this directory.
Files in this directory have permissions set to read/write for the current user only (600) to protect sensitive information.
Session Data
Session data is grouped by working directory and stored under ~/.kimi/sessions/. Each working directory corresponds to a subdirectory named with the path's MD5 hash, and each session corresponds to a subdirectory named with the session ID.
context.jsonl
Context history file, stores the session's full context in JSON Lines (JSONL) format. The first line is a system prompt record (_system_prompt), followed by messages (user input, model response, tool calls, etc.) or internal records (checkpoints, token usage, etc.).
The system prompt is generated and frozen at session creation time, and reused on session restore instead of being regenerated.
Kimi Code CLI uses this file to restore session context when using --continue or --session.
wire.jsonl
Wire message log file, stores Wire events during the session in JSON Lines (JSONL) format. Used for session replay and extracting session titles.
state.json
Session state file, stores the session's runtime state, including:
- title: User-set session title
- approval: Approval decision state (YOLO mode on/off, auto-approved operation types)
- plan_mode: Plan mode on/off status
- plan_session_id: Unique identifier for the current Plan session, used to associate the plan file
- plan_slug: The file path identifier for the plan (the slug in
~/.kimi/plans/<slug>.md), preserved so restarts resume the same file - subagent_instances: Subagent instance state and metadata
- additional_dirs: Additional workspace directories added via
--add-diror/add-dir
When resuming a session, Kimi Code CLI reads this file to restore the session state. This file uses atomic writes to prevent data corruption on crash.
subagents/<agent_id>/
Each subagent instance created via the Agent tool has its own storage directory under the session directory, containing:
- context.jsonl: Subagent conversation history
- wire.jsonl: Subagent Wire event log
- meta.json: Instance metadata (status, type, creation time, etc.)
- prompt.txt: Last executed prompt
- output: Execution output
When resuming a session, subagent instance context and state are automatically restored, allowing continuation via the resume parameter.
Plan Files
Plan mode plan files are stored in the ~/.kimi/plans/ directory. Each Plan session corresponds to a randomly named Markdown file (i.e., <slug>.md).
plan_slug is saved in state.json, so the same plan file is resumed after a process restart. Use the /plan clear command to delete the current Plan session's plan file.
Input History
User input history is stored in the ~/.kimi/user-history/ directory. Each working directory corresponds to a .jsonl file named with the path's MD5 hash.
Input history is used for history browsing (up/down arrow keys) and search (Ctrl-R) in Shell mode.
Logs
Runtime logs are stored in ~/.kimi/logs/kimi.log. The default log level is INFO; use the --debug parameter to enable TRACE level.
Log files are used for troubleshooting. When reporting bugs, please include relevant log content.
Cleaning Data
Deleting the share directory (default ~/.kimi/, or the path specified by KIMI_SHARE_DIR) completely clears all Kimi Code CLI data, including configuration, sessions, and history.
To clean only specific data:
| Need | Action |
|---|---|
| Reset configuration | Delete ~/.kimi/config.toml |
| Clear all sessions | Delete ~/.kimi/sessions/ directory |
| Clear sessions for a specific working directory | Use /sessions in Shell mode to view and delete |
| Clear plan files | Delete ~/.kimi/plans/ directory, or use /plan clear in Plan mode |
| Clear input history | Delete ~/.kimi/user-history/ directory |
| Clear logs | Delete ~/.kimi/logs/ directory |
| Clear MCP configuration | Delete ~/.kimi/mcp.json or use kimi mcp remove |
| Clear login credentials | Delete ~/.kimi/credentials/ directory or use /logout |