A companion tool for Claude Code, enabling flexible LLM integration through LiteLLM proxy.
The code (as well as the README) of Claude Code Mate is mainly vibe coded by Claude Code, with some adjustments and enhancements made by the author. 🤖✨
中文博客:
# Install with uv (recommended)
uv pip install --system claude-code-mate
# Or with pip
pip install claude-code-mateOr with Admin UI enabled (only support Python 3.9-3.12 for now):
# Install with uv (recommended)
uv pip install --system --python 3.12 "claude-code-mate[ui]"
# Or with pip
pip install "claude-code-mate[ui]"$ ccm -h
usage: ccm [-h] {start,stop,restart,status,logs} ...
A companion tool for Claude Code, enabling flexible LLM integration through LiteLLM proxy.
positional arguments:
{start,stop,restart,status,logs}
Available commands
start Start the LiteLLM proxy in background
stop Stop the running LiteLLM proxy
restart Restart the LiteLLM proxy
status Show current proxy status
logs Show proxy logs
options:
-h, --help show this help message and exit
Examples:
ccm start
ccm stop
ccm restart
ccm status
ccm logs
ccm logs -f -n 100
This tool manages a LiteLLM proxy running with: litellm --config ~/.claude-code-mate/config.yamlStart the LiteLLM proxy:
export OPENROUTER_API_KEY=your-api-key
ccm startSet up the environment variables according to the output instructions:
export ANTHROPIC_BASE_URL=http://0.0.0.0:4000
export ANTHROPIC_AUTH_TOKEN=sk-1234567890Then run Claude Code with your desired model:
claude --model claude-3.5-haikuDefault config (at ~/.claude-code-mate/config.yaml):
general_settings:
master_key: sk-1234567890
model_list:
- model_name: claude-3.5-haiku
litellm_params:
model: openrouter/anthropic/claude-3.5-haiku
api_key: os.environ/OPENROUTER_API_KEY
api_base: https://openrouter.ai/api/v1Edit the config as needed, then restart the proxy to apply changes:
ccm restartNote that you need to update the environment variables if master_key is changed.
If you find it cumbersome to manually edit the config file, you can use the Admin UI.
Note
The models configured in ~/.claude-code-mate/config.yaml are considered static in the UI: they cannot be edited or deleted via the UI.
For better experience, it's recommended to configure all models via the UI if you like to use the UI.
If you installed Claude Code Mate with Admin UI enabled, you can access the UI for model management and usage tracking:
ccm uiNote
The default username and password are admin and sk-1234567890 (i.e., the master_key) respectively.
For more details, please check out the Admin UI Documentation.

