Anthropic Claude API 配置管理工具,支持多环境切换
Project description
Claude Switch
A Python CLI tool for managing multiple Anthropic Claude API configurations with seamless environment switching.
Features
- Multi-configuration management: Handle multiple Anthropic API configurations
- One-click switching: Switch between development, testing, and production environments
- Dual authentication: Support for both
auth_tokenandapi_keyauthentication methods - Multiple credentials input: Support adding multiple keys at once (comma/space separated)
- Enhanced add command: Choose between creating new config or adding to existing ones
- Automatic environment activation: Environment variables automatically take effect after configuration switch
- Secure storage: Configuration file permission protection with encrypted credential storage
- Interactive navigation: Arrow key navigation with color highlighting
- Backup mechanism: Automatic configuration file backup to prevent data loss
Installation
uv Installation (Recommended)
# Global installation with uv (recommended)
uv tool install claude-switch
# Or run without installation using uvx
uvx claude-switch --help
pip Installation
pip install claude-switch
# Or using pipx (recommended to avoid dependency conflicts)
pipx install claude-switch
From Source
Development Installation (Editable Mode)
For development or testing the latest changes:
# Using uv tool (recommended for development)
uv tool install . --force
# Or using uv pip (installs to project virtual environment)
uv pip install -e .
# Or using pip (editable mode)
pip install -e .
uv tool vs uv pip:
uv tool install .- Installs to system path, similar to pipx, changes take effect immediately after re-install with--forceuv pip install -e .- Installs to project.venv, requires virtual environment activation
Development Workflow
# 1. Make code changes
# 2. Re-install to apply changes
uv tool install . --force
# 3. Test changes
cs edit
cs --help
# 4. If something goes wrong, uninstall
uv tool uninstall claude-switch
Getting Started
Initialization
After installation, initialize shell integration:
cs init
Initialization will:
- Automatically detect your shell environment (bash/zsh/fish)
- Generate dynamic shell configuration files
- Add configuration to your shell profile
- Optionally add the first configuration
Restart your terminal or run:
source ~/.claude-switch/cs-wrapper.sh
Verification
# Check version
cs --version
# View help
cs --help
# Add first configuration
cs add
Commands
Interactive Operations
cs- Interactive configuration selection (arrow key navigation)cs add- Create new configuration or add credentials to existing onescs css- Quick credential addition (shortcut command)
Management Commands
cs list- List all configurationscs use <name>- Switch to specified configurationcs current- Display current configurationcs edit [name]- Edit configuration (interactive selection if name not provided)cs remove [name]- Remove configuration (interactive selection if name not provided)cs add-credential [config]- Add credentials to specified configuration (or select interactively)
Environment Export
cs current --export- Output executable export commands
Usage Examples
Adding a Configuration
# Interactive configuration addition with options
cs add
# Choose: Create new configuration OR add credentials to existing
# Quick credential addition
cs css
# Select configuration and add credentials
# Add multiple credentials at once
cs add-credential work
# Input: sk-ant-xxx|prod,sk-ant-yyy|dev,sk-ant-zzz|staging
# Or: sk-ant-xxx|prod sk-ant-yyy|dev sk-ant-zzz|staging
Viewing and Managing Configurations
# View all configurations
cs list
# Output:
# → work - 工作账号 [https://api.anthropic.com] (0tokens, 1keys) [key1]
# personal - 个人账号 [https://api.anthropic.com] (1tokens, 0keys) [token1]
# Interactive selection
cs
# Use arrow keys to select, press Enter to confirm
# Quick switch
cs use work
Configuration Management
# Interactive configuration selection
cs edit
# Select from list using arrow keys
# Or specify configuration name directly
cs edit work
# View current configuration
cs current
# Output: 当前配置: work - 工作账号 [https://api.anthropic.com] (0tokens, 1keys) [key1]
# Export environment variables
cs current --export
# Output: export ANTHROPIC_BASE_URL="..."; export ANTHROPIC_API_KEY="..."
Configuration Structure
Configuration is stored in ~/.claude-switch/config.json:
{
"version": "2.0",
"active": "work",
"configs": {
"work": {
"base_url": "https://api.anthropic.com",
"api_keys": ["sk-xxx"],
"auth_tokens": [],
"note": "工作账号",
"active_key": 0,
"active_auth": -1,
"models": {
"opus": "claude-opus-4-8",
"sonnet": "claude-sonnet-4-6",
"haiku": "claude-haiku-4-5"
}
},
"personal": {
"base_url": "https://api.anthropic.com",
"api_keys": [],
"auth_tokens": ["sk-yyy"],
"note": "个人账号",
"active_key": -1,
"active_auth": 0,
"models": {}
}
}
}
Interactive Interface Features
- Cursor highlighting: Current selection line highlighted in green
- Status indicators: Green arrow (→) indicates active configuration
- Rich information: Shows configuration name, description, URL, credential count and type
- Arrow navigation: Supports up/down arrow key selection with Enter confirmation
Security Features
- File permissions: Configuration file automatically set to 0o600 (user-readable only)
- Sensitive information masking: Automatic credential masking during display
- Automatic backup: Automatic backup creation when configuration file is corrupted
- Version compatibility: Automatic configuration version upgrade handling
Advanced Usage
Model Configuration
Configure default models for Opus, Sonnet, and Haiku. These settings are automatically synced to ~/.claude/settings.json for Claude Code:
# Configure models when adding credentials
cs add
# After adding credentials, choose to configure models
# Or configure models for existing configuration
cs edit work
# Choose to configure model settings
# Example model IDs:
# - Opus: claude-opus-4-8
# - Sonnet: claude-sonnet-4-6
# - Haiku: claude-haiku-4-5
Environment variables exported:
ANTHROPIC_DEFAULT_OPUS_MODELANTHROPIC_DEFAULT_SONNET_MODELANTHROPIC_DEFAULT_HAIKU_MODEL
Manual Configuration Editing
You can directly edit the configuration file ~/.claude-switch/config.json. The system automatically handles format errors and creates backups.
Environment Variable Settings
# Automatic activation (requires initialization)
cs use production
# Manual activation
eval $(cs current --export)
Shell Integration
After initialization, the following aliases are automatically available:
cs- Main commandcsu- Quick configuration switchingcsc- View current configurationcss- Manual environment variable reload
Troubleshooting
Installation Issues
Problem: cs command not found
# Check if installed correctly
pip list | grep claude-switch
# Check PATH settings
echo $PATH
# Reinstall
pip install --force-reinstall claude-switch
Problem: Permission errors
# Use user installation with pip
pip install --user claude-switch
# Or use uv tool (recommended)
uv tool install .
# Or use pipx
pipx install claude-switch
Problem: Changes not taking effect during development
# If using uv tool, force reinstall
uv tool install . --force
# Clear Python cache
find . -type d -name "__pycache__" -exec rm -rf {} +
# Verify installation
cs --version
Initialization Issues
Problem: Shell integration not working
# Manually source configuration file
source ~/.claude-switch/cs-wrapper.sh
# Check if configuration files exist
ls -la ~/.claude-switch/
# Reinitialize
cs init
Problem: Environment variables not taking effect
# Manually load environment variables
source ~/.claude-switch/env.sh
# Or use export command
eval $(cs current --export)
Compatibility
- Supported Python versions: 3.8+
- Supported operating systems: macOS, Linux, Windows
- Supported shells: bash, zsh, fish
- Supported installation methods: pip, pipx, conda, uv
Getting Help
If you encounter issues:
- View
cs --helpfor command assistance - Check configuration files in
~/.claude-switch/directory - Submit an Issue on GitHub: https://github.com/elicc/claude-switch/issues
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file claude_switch-1.5.0.tar.gz.
File metadata
- Download URL: claude_switch-1.5.0.tar.gz
- Upload date:
- Size: 67.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2709611eeb8612af26702c28da5e456e14a6f403e66f50a910aae69a41b2e785
|
|
| MD5 |
00436aba94da8410d467cd41ddb786dd
|
|
| BLAKE2b-256 |
373f97b4ad1ab55d6aad022c566610e8e063ca2e6fdc173cca7d89154dc917c3
|
File details
Details for the file claude_switch-1.5.0-py3-none-any.whl.
File metadata
- Download URL: claude_switch-1.5.0-py3-none-any.whl
- Upload date:
- Size: 30.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e64b16cd20c98de167298789e369fc68873c96b075be85cc5f89e6c172919b0
|
|
| MD5 |
d89965e5bd6cd26a056351040779436f
|
|
| BLAKE2b-256 |
7807ac34c5c918991d2d3769ce04f0aadb3fa30688218547b262d1c709e4a405
|