Skip to content

Latest commit

 

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Code Mate

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. 🤖✨

中文博客:

Installation

# Install with uv (recommended)
uv pip install --system claude-code-mate

# Or with pip
pip install claude-code-mate

Or 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]"

Usage

$ 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.yaml

Quick Start

Start the LiteLLM proxy:

export OPENROUTER_API_KEY=your-api-key
ccm start

Set up the environment variables according to the output instructions:

export ANTHROPIC_BASE_URL=http://0.0.0.0:4000
export ANTHROPIC_AUTH_TOKEN=sk-1234567890

Then run Claude Code with your desired model:

claude --model claude-3.5-haiku

Configuration

UI disabled (YAML-based)

Default 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/v1

Edit the config as needed, then restart the proxy to apply changes:

ccm restart

Note that you need to update the environment variables if master_key is changed.

UI enabled (UI-based)

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.

Admin UI

If you installed Claude Code Mate with Admin UI enabled, you can access the UI for model management and usage tracking:

ccm ui

Note

The default username and password are admin and sk-1234567890 (i.e., the master_key) respectively.

Model Management

Add Model

Usage Tracking

Usage Tracking

For more details, please check out the Admin UI Documentation.

Resources

License

MIT

About

A companion tool for Claude Code, enabling flexible LLM integration through LiteLLM proxy.

Resources

Stars

14 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages