better-ccflare ๐Ÿ›ก๏ธ

September 17, 2026 ยท View on GitHub

Mentioned in Awesome Claude Code

Track Every Request. Go Low-Level. Never Hit Rate Limits Again.

The ultimate Claude API proxy with intelligent load balancing across multiple accounts. Full visibility into every request, response, and rate limit.

https://github.com/user-attachments/assets/c859872f-ca5e-4f8b-b6a0-7cc7461fe62a

better-ccflare Dashboard

Why better-ccflare?

  • ๐Ÿš€ Zero Rate Limit Errors - Automatically distribute requests across multiple accounts
  • ๐Ÿค– Multi-Provider Support - Claude OAuth, Claude API console, Vertex AI, AWS Bedrock, NanoGPT, z.ai, Minimax, DeepSeek, Meta, OpenRouter, Kilo, Codex (OpenAI OAuth), xAI/Grok, Anthropic-compatible, and OpenAI-compatible providers
  • ๐Ÿ”’ OAuth Token Health - Real-time monitoring of OAuth token status with automatic refresh and health indicators
  • ๐Ÿ”— Custom API Endpoints - Configure custom endpoints for Anthropic accounts for enterprise deployments
  • โ˜๏ธ OpenAI-Compatible Support - Use OpenAI-compatible providers like OpenRouter, Together AI, and more with Claude API format
  • ๐Ÿงฉ Codex / Responses API Compatibility - POST /v1/responses and POST /v1/responses/compact are translated to Anthropic /v1/messages
  • ๐Ÿ”„ Smart Auto-Fallback - Automatically switch back to preferred accounts when their rate limits reset
  • โšก Auto-Refresh - Automatically start new usage windows when rate limits reset with 30-minute buffer
  • ๐Ÿ“Š Request-Level Analytics - Track latency, token usage, and costs in real-time with optimized batch processing
  • ๐Ÿ” Deep Debugging - Full request/response logging and error traces
  • ๐Ÿ” API Authentication - Optional API key authentication with secure key management
  • โšก <10ms Overhead - Minimal performance impact with lazy loading and request deduplication
  • ๐Ÿ›ก๏ธ Security Hardened - Critical security fixes for authentication bypass, command injection, and credential leakage
  • ๐Ÿ’ธ Free & Open Source - Run it yourself, modify it, own your infrastructure

Why this fork?

This project builds upon the excellent foundation of snipeship/ccflare with significant enhancements:

๐ŸŽฏ Core Improvements (v3.0.0):

  • Enhanced Security - Critical fixes for authentication bypass, command injection, and PKCE implementation
  • OAuth Token Health Monitoring - Real-time status indicators and automatic token refresh with 30-minute buffer
  • Extended Provider Support - AWS Bedrock, NanoGPT (with dynamic pricing), Minimax, DeepSeek, Meta, OpenRouter, Kilo, Codex (OpenAI OAuth), xAI/Grok, Anthropic-compatible, and OpenAI-compatible providers
  • Simplified Load Balancing - Removed tier system for O(1) priority-based selection
  • Real-time Analytics Dashboard - Beautiful web UI with fixed request history (no disappearing requests)
  • Package Distribution - Available via npm and bun for easy installation

๐Ÿ› ๏ธ Developer Experience:

  • Powerful CLI - Complete command-line interface for account management and configuration
  • REST API - Complete API for automation and integration
  • Cross-Platform Binary - Pre-compiled binary works with Node.js or Bun
  • Comprehensive Logging - Request/response tracking with searchable history
  • Database Integration - SQLite (default) or PostgreSQL for persistent storage and analytics, supporting Kubernetes multi-pod deployments

๐Ÿ“ฆ Distribution & Updates:

  • npm/bun Registry - Install with npm install -g better-ccflare or bun install -g better-ccflare
  • npx/bunx Support - Run without installation: npx better-ccflare or bunx better-ccflare
  • Smart Update Detection - Web UI detects package manager and shows appropriate update commands
  • Version Management - Semantic versioning with automatic update notifications

๐Ÿข Production Ready:

  • Enterprise Features - Custom API endpoints, session management, advanced analytics
  • Performance Optimized - <10ms overhead with request deduplication and caching
  • Reliability - Automatic error recovery, circuit breakers, and health monitoring
  • Scalability - Built for high-throughput production environments
  • PostgreSQL Support - Set DATABASE_URL=postgresql://... to use PostgreSQL for Kubernetes multi-pod deployments where SQLite file-sharing is not feasible

Quick Start

Install via npm (Linux x86_64)

npm install -g better-ccflare

# Start better-ccflare (Server + Dashboard)
better-ccflare

Continue to Configure Claude SDK.

โš ๏ธ Windows npm Installation Issue: If you installed via npm on Windows and encounter a path error like "C:\\Program Files\\nodejs\\\\node_modules\\better-ccflare\\dist\\better-ccflare" is either misspelled or could not be found, this is a known npm bug on Windows affecting how npm generates wrapper scripts. See Windows Troubleshooting for workarounds.

Install via bun

bun install -g better-ccflare

# Start better-ccflare (Server + Dashboard)
better-ccflare

Continue to Configure Claude SDK.

Install Pre-compiled Binary (All Architectures)

Download the appropriate binary for your platform from GitHub Releases:

Linux x86_64

wget https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-linux-amd64
chmod +x better-ccflare-linux-amd64
./better-ccflare-linux-amd64

Continue to Configure Claude SDK.

Linux ARM64 (Raspberry Pi 3/4/5, Oracle Cloud ARM, AWS Graviton)

wget https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-linux-arm64
chmod +x better-ccflare-linux-arm64
./better-ccflare-linux-arm64

Continue to Configure Claude SDK.

macOS Intel

curl -L -o better-ccflare-macos-x86_64 https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-macos-x86_64
chmod +x better-ccflare-macos-x86_64

# Remove quarantine attribute (required on macOS to run unsigned binaries)
xattr -d com.apple.quarantine better-ccflare-macos-x86_64

./better-ccflare-macos-x86_64

Continue to Configure Claude SDK.

macOS Apple Silicon

curl -L -o better-ccflare-macos-arm64 https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-macos-arm64
chmod +x better-ccflare-macos-arm64

# Remove quarantine attribute (required on macOS to run unsigned binaries)
xattr -d com.apple.quarantine better-ccflare-macos-arm64

./better-ccflare-macos-arm64

Continue to Configure Claude SDK.

macOS Gatekeeper Notice: Our macOS binaries are not notarized by Apple as this requires a paid Apple Developer subscription. After downloading, you must remove the quarantine attribute using the xattr command shown above to run the binary. If you prefer not to run unsigned binaries, you can install from source instead.

Windows x86_64

Download better-ccflare-windows-x64.exe and run it. Continue to Configure Claude SDK.

Run without installation (npx/bunx)

# Run with npx (downloads and executes latest version)
npx better-ccflare@latest

# Run with bunx (faster for bun users)
bunx better-ccflare@latest

Continue to Configure Claude SDK.

Install from source

# Clone and install
git clone https://github.com/tombii/better-ccflare
cd better-ccflare
bun install

# Build dashboard (required before first run)
bun run build

# Start better-ccflare (TUI + Server)
bun run better-ccflare

Continue to Configure Claude SDK.

Note: You must run bun run build at least once to build the dashboard files before starting the server. This can also be done by running bun run better-ccflare which includes the build step.

Environment Variables

better-ccflare supports several environment variables for configuration. The most commonly used ones:

# Server Configuration
PORT=8080                              # Server port (default: 8080)
BETTER_CCFLARE_HOST=0.0.0.0           # Server binding host (default: 0.0.0.0, use 127.0.0.1 for localhost-only)
CLIENT_ID=your-client-id              # OAuth client ID
BETTER_CCFLARE_CONFIG_PATH=/path/to/config.json  # Custom config location
BETTER_CCFLARE_DB_PATH=/path/to/database.db  # Custom database path (default: ~/.config/better-ccflare/better-ccflare.db)
                                       # Use this for development/testing with a separate database

# Logging and Debugging
LOG_LEVEL=INFO                         # Log level (ERROR, WARN, INFO, DEBUG)
LOG_FORMAT=json                        # Log format (json or text)
better-ccflare_DEBUG=0                  # Enable debug mode (1 for enabled)

# SSL/TLS Configuration
SSL_KEY_PATH=/path/to/key.pem          # SSL private key path (for HTTPS)
SSL_CERT_PATH=/path/to/cert.pem        # SSL certificate path (for HTTPS)

# Load Balancing
LB_STRATEGY=session                    # Load balancing strategy (default: session)
SESSION_DURATION_MS=18000000           # Session duration in milliseconds (5 hours)

# Retry Configuration
RETRY_ATTEMPTS=3                       # Number of retry attempts
RETRY_DELAY_MS=1000                   # Initial retry delay in milliseconds
RETRY_BACKOFF=2                        # Retry backoff multiplier

# Storage
STORE_PAYLOADS=false                   # Disable storing request/response bodies (reduces DB size and memory usage)
                                       # Token counts, costs, model, status and timing are still recorded

Security Notes:

  • Use BETTER_CCFLARE_HOST=127.0.0.1 to bind only to localhost for better security
  • Never commit .env files containing sensitive values to version control
  • Use environment-specific configuration for production deployments

๐Ÿ“– See docs/configuration.md for the complete list โ€” overload/rate-limit retry tuning, health endpoint detail, agent discovery, payload encryption at rest, model catalog refresh, PostgreSQL pooling, Codex prompt-cache keys, and more.

Using .env Files

better-ccflare automatically supports .env files for easy configuration management. You can create a .env file in your project directory:

# Copy the example .env file
cp .env.example .env
# Edit with your configuration
nano .env

Supported across all deployment methods:

  • CLI Binary: Automatically loads .env from current working directory
  • Docker Compose: Automatically loads .env from the same directory as docker-compose.yml
  • Docker: Mount your .env file or pass variables directly

Example .env file:

# Server Configuration
PORT=8080

# SSL/TLS Configuration (optional)
SSL_KEY_PATH=/path/to/ssl/key.pem
SSL_CERT_PATH=/path/to/ssl/cert.pem

# Load Balancing
LB_STRATEGY=session

# Logging and Debugging
LOG_LEVEL=INFO
LOG_FORMAT=pretty

# Database configuration
DATA_RETENTION_DAYS=3
REQUEST_RETENTION_DAYS=90

# Storage (set to false to skip storing request/response bodies, reducing DB size and memory pressure)
STORE_PAYLOADS=true

Usage with different deployment methods:

# CLI (binary or local development)
better-ccflare --serve

# Docker Compose (place .env alongside docker-compose.yml)
docker-compose up

# Docker (mount .env file)
docker run -v $(pwd)/.env:/app/.env:ro -p 8080:8080 ghcr.io/tombii/better-ccflare:latest

Docker (Multi-Platform: linux/amd64, linux/arm64)

# Quick start with docker-compose
curl -O https://raw.githubusercontent.com/tombii/better-ccflare/main/docker-compose.yml

# Optional: Create and configure .env file
cp .env.example .env
# Edit .env with your settings (SSL, port, etc.)
nano .env

# Start with docker-compose (automatically loads .env file)
docker-compose up -d

# Or use docker run with environment variables
docker run -d \
  --name better-ccflare \
  -p 8080:8080 \
  -v better-ccflare-data:/data \
  -e SSL_KEY_PATH=/path/to/ssl/key.pem \
  -e SSL_CERT_PATH=/path/to/ssl/cert.pem \
  ghcr.io/tombii/better-ccflare:latest

# View logs
docker logs -f better-ccflare

Once the container is running, open http://localhost:8080 in your browser to add and manage accounts through the Web UI. This is the recommended way โ€” using docker exec to run CLI commands inside the container won't work for OAuth-based account modes since the container has no browser.

๐Ÿ†• Environment Variable Support: Docker Compose now automatically loads .env files from the same directory as docker-compose.yml. Simply create a .env file alongside your docker-compose.yml file and the container will use those settings.

Available Docker tags:

  • latest - Latest stable release
  • main - Latest build from main branch
  • 1.2.28, 1.2, 1 - Specific version tags
  • sha-abc123 - Commit-specific tags

See DOCKER.md for detailed Docker documentation.

Systemd Deployment

For running better-ccflare as a native systemd service on Linux (without Docker), see the Systemd Deployment Guide. It covers unit file configuration, memory management with --smol, restart policies, and a preflight script that prevents BUN_JSC_* environment variable crashes.

Configure Claude SDK

If you have a Claude Pro or Team subscription and are logged into Claude CLI:

# Set only the base URL - no API key needed!
export ANTHROPIC_BASE_URL=http://localhost:8080

# Make sure to configure your accounts in the better-ccflare dashboard

# Start Claude CLI (uses your existing login)
claude

Important: When using Claude CLI with an active OAuth login, do NOT set ANTHROPIC_AUTH_TOKEN. Setting both will trigger a warning from Claude CLI about conflicting authentication methods.

Option 2: Using API Key Authentication

If you're NOT using Claude CLI's OAuth login, or prefer API key authentication:

# First, logout from Claude CLI if you're currently logged in
claude /logout

# Then set both the base URL and API key
export ANTHROPIC_BASE_URL=http://localhost:8080

# If better-ccflare has NO API keys configured (open access):
export ANTHROPIC_AUTH_TOKEN=dummy-key

# If better-ccflare HAS API keys configured (protected):
# Generate a key first: better-ccflare --generate-api-key "My VPS"
export ANTHROPIC_AUTH_TOKEN=btr-abcdef1234567890...  # Use your real better-ccflare API key

# Make sure to configure your accounts in the better-ccflare dashboard

# Start Claude CLI
claude

Option 3: Remote/Headless VPS Setup (Secure Proxy)

Use better-ccflare on a trusted server to avoid storing OAuth credentials on untrusted/temporary machines:

On your trusted server (running better-ccflare):

# Add your Claude account with OAuth
better-ccflare --add-account myaccount --mode claude-oauth --priority 0

# Generate an API key for remote access
better-ccflare --generate-api-key "Remote VPS"
# Save the generated key: btr-abcdef1234567890...

# Start the server (ensure it's accessible remotely)
better-ccflare --serve

On your untrusted/temporary VPS:

# Set the remote better-ccflare URL and API key
export ANTHROPIC_BASE_URL=https://your-server.com:8080
export ANTHROPIC_AUTH_TOKEN=btr-abcdef1234567890...  # Your better-ccflare API key

# Start Claude CLI (no need to login - better-ccflare handles auth)
claude

How it works:

  • Claude Code CLI sends requests with your better-ccflare API key
  • better-ccflare validates the API key and proxies requests using its stored OAuth credentials
  • Your OAuth credentials stay secure on your trusted server
  • You can use Claude Code on any machine without storing sensitive credentials

Which method should I use?

  • Have Claude Pro/Team and working locally? Use Option 1 (OAuth only) - simpler and no API key needed
  • Working on untrusted/temporary machines? Use Option 3 (Remote VPS setup) - keeps credentials secure
  • Using only API keys in better-ccflare? Use Option 2 (logout + API key)
  • Getting auth conflict warnings? You have both methods active - choose one and follow its steps above

Codex CLI as a Client

The Codex VS Code extension uses the same provider configuration. See the VS Code setup and compatibility guide.

better-ccflare supports Codex CLI as a client. Codex speaks the OpenAI Responses API; better-ccflare intercepts requests to /v1/responses and /v1/responses/compact and translates them to Anthropic POST /v1/messages internally, routing through your configured account pool.

Configure Codex CLI to point at better-ccflare in ~/.codex/config.toml:

openai_base_url = "http://127.0.0.1:8080/v1"

Note: use 127.0.0.1 instead of localhost โ€” Codex CLI has a known issue where localhost resolves to IPv6 first and causes connection failures. The /v1 suffix is required; Codex appends /responses to the base URL.

Or via environment variables:

export OPENAI_BASE_URL=http://127.0.0.1:8080/v1
export OPENAI_API_KEY=dummy-key

Codex CLI requires an API key to start โ€” use dummy-key if better-ccflare API key authentication is not enabled, or your real better-ccflare API key if it is.

Known limitations:

  • Regular HTTP does not trust an arbitrary caller-supplied previous_response_id. On the authenticated, native outbound Codex route, an operator-controlled gateway request can enable gateway-managed continuation: better-ccflare retains only the last upstream response ID and cryptographic input/configuration digests, resumes only after an exact ordered-prefix match, and otherwise sends the full input without a response ID. This bounded state is in memory, so a restart safely cold-starts. WebSocket transport is not implemented.
  • Built-in tool types (web_search_preview, code_interpreter, file_search) are preserved on the native outbound Codex route. Routes translated to Anthropic skip built-in tools, forward function tools, and bridge freeform custom tools such as Codex's apply_patch through a string input schema. Custom tool grammars are described to the model but cannot be enforced by the Anthropic API.
  • /v1/responses rejects unknown top-level request fields with 400 invalid_request_error instead of silently dropping them. The canonical ChatGPT subscription endpoint also rejects an explicitly supplied max_output_tokens; omit it and let the served model choose its output limit. Custom OpenAI-compatible endpoints may accept it.
  • Claude OAuth accounts (Claude Pro/Team, provider=anthropic with OAuth tokens) are automatically excluded from Codex CLI traffic โ€” Anthropic bans these when used outside Claude CLI. Anthropic API key accounts are fine and will be used normally.

SSL/HTTPS Configuration

To enable HTTPS with better-ccflare, you'll need SSL certificates. Here are your options:

Option 1: Generate Self-Signed Certificates (Development/Local Use)

# Generate a self-signed certificate on the better-ccflare host
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes \
  -subj "/C=US/ST=State/L=City/O=Organization/CN=yourhostname"

# Start better-ccflare with SSL
export SSL_KEY_PATH=/path/to/key.pem
export SSL_CERT_PATH=/path/to/cert.pem
better-ccflare

# Or use command line flags
better-ccflare --ssl-key /path/to/key.pem --ssl-cert /path/to/cert.pem

Trust the self-signed certificate on client machines:

For self-signed certificates, you need to add the certificate to your system's trusted certificates:

  • Linux (Ubuntu/Debian):

    # Copy cert.pem from the better-ccflare host to your client machine
    sudo cp cert.pem /usr/local/share/ca-certificates/better-ccflare.crt
    sudo update-ca-certificates
    
  • Linux (Arch/Manjaro):

    # Copy cert.pem from the better-ccflare host to your client machine
    sudo cp cert.pem /etc/ca-certificates/trust-source/anchors/better-ccflare.crt
    sudo trust extract-compat
    
  • macOS:

    # Copy cert.pem from the better-ccflare host to your client machine
    sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain cert.pem
    
  • Windows (PowerShell as Administrator):

    # Copy cert.pem from the better-ccflare host to your client machine
    Import-Certificate -FilePath cert.pem -CertStoreLocation Cert:\LocalMachine\Root
    

Configure Claude Code to use the trusted certificate:

After adding the certificate to your system's trusted store, configure your environment:

# Add to your ~/.bashrc or ~/.zshrc
export NODE_OPTIONS="--use-system-ca"
export ANTHROPIC_BASE_URL=https://yourhostname:8080

The NODE_OPTIONS="--use-system-ca" is required for Claude Code and other Node.js-based clients to use the system certificate store. Without this, Node.js will not trust your self-signed certificate even if it's in the system store.

Option 2: Use Production Certificates (Production/Remote Access)

If you're running better-ccflare on a server with a domain name, use Let's Encrypt or your certificate provider:

# Using Let's Encrypt certificates
export SSL_KEY_PATH=/etc/letsencrypt/live/yourdomain.com/privkey.pem
export SSL_CERT_PATH=/etc/letsencrypt/live/yourdomain.com/fullchain.pem
better-ccflare

# Set the base URL to use HTTPS
export ANTHROPIC_BASE_URL=https://yourdomain.com:8080

With production certificates from trusted CAs, you don't need NODE_OPTIONS="--use-system-ca" as they are already trusted.

For Docker deployments, we recommend using Traefik as a reverse proxy to handle TLS automatically with Let's Encrypt:

# docker-compose.yml
version: '3.8'

services:
  traefik:
    image: traefik:v3.0
    command:
      - "--api.insecure=true"
      - "--providers.docker=true"
      - "--entrypoints.web.address=:80"
      - "--entrypoints.websecure.address=:443"
      - "--certificatesresolvers.myresolver.acme.tlschallenge=true"
      - "--certificatesresolvers.myresolver.acme.email=your-email@example.com"
      - "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json"
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - ./letsencrypt:/letsencrypt
    restart: unless-stopped

  better-ccflare:
    image: ghcr.io/tombii/better-ccflare:latest
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.ccflare.rule=Host(`your-domain.com`)"
      - "traefik.http.routers.ccflare.entrypoints=websecure"
      - "traefik.http.routers.ccflare.tls.certresolver=myresolver"
      - "traefik.http.services.ccflare.loadbalancer.server.port=8080"
    volumes:
      - ~/.config/better-ccflare:/root/.config/better-ccflare
    restart: unless-stopped

Benefits:

  • Automatic TLS certificate generation and renewal via Let's Encrypt
  • No need to manually manage SSL certificates
  • Built-in HTTP to HTTPS redirection
  • Dashboard for monitoring (port 8080 on Traefik)

Client Configuration:

export ANTHROPIC_BASE_URL=https://your-domain.com

No NODE_OPTIONS needed - Traefik provides trusted certificates automatically!

Troubleshooting SSL Issues

Problem: "Unable to connect to API due to poor internet connection" error even with ANTHROPIC_BASE_URL set

Solutions:

  1. Verify the environment variable is set in the same shell/session:

    echo $ANTHROPIC_BASE_URL
    echo $NODE_OPTIONS
    
  2. Test the SSL connection manually:

    # Should succeed without errors
    curl https://yourhostname:8080/health
    
    # If you see certificate errors, the cert isn't trusted yet
    curl -k https://yourhostname:8080/health  # -k bypasses cert check for testing
    
  3. Verify the certificate is in the system store:

    # Linux
    ls -la /etc/ssl/certs/ | grep better-ccflare
    
    # macOS
    security find-certificate -a -c yourhostname -p /Library/Keychains/System.keychain
    
  4. Ensure the hostname resolves correctly:

    ping yourhostname
    
  5. Check that the server is actually running:

    curl -k https://yourhostname:8080/health
    

Windows Troubleshooting

Issue: "Command is misspelled or could not be found" after npm install

If you installed better-ccflare via npm on Windows and encounter an error like:

The command "C:\Program Files\nodejs\\node_modules\better-ccflare\dist\better-ccflare" is either
misspelled or could not be found.

This is a known npm bug on Windows (see npm/cli#969 and nodejs/node#39010) affecting how npm generates wrapper scripts with double backslashes in paths.

Workarounds

Option 1: Use npx (Recommended)

npx better-ccflare

This bypasses the npm wrapper script entirely and runs better-ccflare directly.

Option 2: Use the Pre-compiled Binary

Download the standalone Windows executable from GitHub Releases:

# Download better-ccflare-windows-x64.exe and run it directly
.\better-ccflare-windows-x64.exe

Option 3: Update npm

Sometimes updating to the latest npm version fixes the issue:

npm install -g npm@latest
npm install -g better-ccflare

Option 4: Direct Execution

If you need to use the npm-installed version, you can execute the binary directly:

node "%APPDATA%\npm\node_modules\better-ccflare\dist\better-ccflare"

Option 5: Use Bun Package Manager

Bun doesn't have this bug and works correctly on Windows:

# Install bun from https://bun.sh
bun install -g better-ccflare
better-ccflare

Root Cause

This issue is caused by a bug in npm's wrapper script generation on Windows, where it incorrectly constructs paths with double backslashes (\\nodejs\\\\node_modules). This is a longstanding npm bug that affects many CLI packages, not just better-ccflare.

The issue is being tracked in:

We recommend using one of the workarounds above until the npm bug is fixed.

Features

๐ŸŽฏ Intelligent Load Balancing

  • Session-based - Maintain conversation context for Claude OAuth accounts (5hr usage windows), pay-as-you-go for other providers
  • Auto-fallback - Automatically switch back to higher priority Claude OAuth accounts when their usage windows reset
  • Auto-refresh - Automatically start new usage windows when they reset
  • Usage Window Alignment - Sessions automatically align with Claude OAuth usage window resets for optimal resource utilization
  • Usage Throttling - Configurable monthly token/cost limits per account with peak-hours auto-pause for Zai accounts
  • 503 on Pool Exhaustion - Returns HTTP 503 when all accounts are rate-limited or paused, enabling client-side retry logic
  • Rate Limit Audit Trail - Tracks when and why each account became rate-limited (rate_limited_reason, rate_limited_at)

๐Ÿ”— Combos โ€” Cross-Provider Fallback Chains

  • Named Combos - Create named fallback chains with ordered (account, model) slots
  • Family Activation - Assign one combo per model family (Opus, Sonnet, Haiku) โ€” independent activation toggles
  • Auto Waterfall - Requests automatically fall through slots top-to-bottom, skipping unavailable accounts (rate-limited, paused)
  • Per-Slot Model Override - Each slot can use a different model, enabling cross-model fallback (e.g., try Opus on provider A, then Sonnet on provider B)
  • SessionStrategy Fallback - If all combo slots fail, automatically falls back to normal session-based routing
  • Dashboard Management - Drag-and-drop slot builder with account provider badges, enable/disable per combo, and family assignment UI

๐Ÿ“ˆ Real-Time Analytics

  • Token usage tracking per request with optimized batch processing
  • Response time monitoring with intelligent caching
  • Rate limit detection and warnings
  • Cost estimation and budgeting
  • Request deduplication for improved performance
  • Lazy-loaded analytics components for faster initial load
  • Advanced filtering by accounts, models, API keys, and request status
  • API key performance tracking and detailed analytics

๐Ÿ› ๏ธ Developer Tools

  • Powerful CLI (better-ccflare)
  • Web dashboard (http://localhost:8080/dashboard)
  • CLI for account management
  • REST API for automation
  • --doctor command for database integrity checks and telemetry
  • Reasoning effort compatibility layer for OpenAI/Codex routes (downgrade mapping, count_tokens support)
  • /health endpoint with three-state pool status (healthy/degraded/unhealthy), 503 on degraded/unhealthy, optional ?detail=1 behind HEALTH_DETAIL_ENABLED

๐Ÿ”’ Production Ready

  • Automatic failover between accounts
  • OAuth token refresh handling
  • SQLite database for persistence
  • Configurable retry logic
  • Custom endpoint support for enterprise deployments
  • Enhanced performance with request batching and caching

โ˜๏ธ Multi-Provider Support

  • Claude OAuth - Anthropic OAuth accounts with 5-hour usage windows and session tracking (rate limit window based)
  • Claude Console API - Anthropic API key accounts with pay-as-you-go model (no session tracking)
  • AWS Bedrock - Native AWS Bedrock integration with SigV4 authentication, inference profile support (geographic/global/regional), and automatic credential chain resolution via AWS CLI profiles
  • Vertex AI - Google Cloud Vertex AI integration with service account authentication
  • z.ai, Minimax, DeepSeek, Meta - API key based providers with pay-as-you-go model
  • OpenRouter - OpenRouter integration with native API support and model mapping
  • xAI/Grok - Native Grok CLI OAuth import/refresh with per-request token accounting and Grok Build credits usage polling via grok.com gRPC-web
  • Kilo - Kilo API integration with usage tracking
  • Anthropic-Compatible - Custom Anthropic-compatible providers with pay-as-you-go model
  • Ollama - Local Ollama instance (v0.14.0+) via native Anthropic-compatible API at /v1/messages, no API key required
  • OpenAI-Compatible - OpenAI-compatible providers (Together AI, etc.) with Claude API format
  • Universal API Format - Use OpenAI-compatible providers with Claude API format
  • Automatic Format Conversion - Seamless conversion between Anthropic and OpenAI request/response formats
  • Model Mapping - Map Claude models (Opus, Sonnet, Haiku) to equivalent OpenAI models
  • Model Fallbacks - Automatically retry with a fallback model when the requested model is unavailable (e.g., fallback from Opus to Sonnet on Pro subscriptions)
  • Streaming Support - Full support for streaming responses from OpenAI-compatible providers
  • API Key Authentication - Secure API key management for OpenAI-compatible providers
  • Cost Tracking - Automatic cost calculation for usage monitoring and budgeting

Troubleshooting Database Issues

If you encounter "All accounts failed" errors, the database runs integrity checks automatically on startup and will guide you to repair if needed. You can also manually run:

bun run cli --repair-db

This will check integrity, fix NULL values, validate constraints, and optimize the database. See the Troubleshooting Guide for more details.

Documentation

Full documentation available in docs/:

Screenshots

Dashboard Logs
Real-time Dashboard Request Logs
Analytics
Analytics & Usage Tracking

Requirements

For installation:

  • npm or bun package manager (for npm/bun installation)
  • Node.js >= 18.0.0 (when installed via npm)
  • Bun >= 1.2.8 (when installed via bun or running from source)
  • Or download pre-compiled binary - No runtime dependencies required!

For usage:

  • Claude API accounts (Free, Pro, or Team), z.ai code plan accounts, Minimax accounts, or DeepSeek accounts

Platform Support

PlatformArchitectureStatus
Linuxx86_64โœ… Supported (npm + binary)
LinuxARM64 (aarch64)โœ… Supported (binary only)
macOSIntel (x64)โœ… Supported (npm + binary)
macOSApple Silicon (ARM64)โœ… Supported (binary only)
Windowsx86_64โœ… Supported (binary only)

Works on:

  • Oracle Cloud ARM instances (Ampere Altra)
  • AWS Graviton instances
  • Raspberry Pi 3/4/5 (with 64-bit OS)
  • Any x86_64 or ARM64 Linux/macOS/Windows system

Not supported:

  • ARM32 devices (Raspberry Pi Zero, Pi 1, Pi 2, or 32-bit OS)

Sponsors

SignPathFree code signing on Windows provided by SignPath.io, certificate by SignPath Foundation.

Acknowledgements

Inspired by snipeship/ccflare - thanks for the original idea and implementation!

Special thanks to our contributors (see full details):

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

Code Review Process

This repository includes an automated Claude code review system:

  • Automatic Review: Runs automatically when a new pull request is opened
  • Manual Review: Can be manually triggered by contributors by commenting /claude-review on the PR

License

MIT - See LICENSE for details


Built with โค๏ธ for developers who ship

Claude Messages continuation on Codex (opt-in)

Set CCFLARE_CODEX_MESSAGES_CONTINUATION=1 to let the Codex provider retain server-owned Responses continuation while serving /v1/messages clients. It requires an authenticated API key, a selected account, and a nonempty prompt cache key (normally derived from Claude session metadata on OpenAI endpoints). The first request sends the full translated history, implicit GPT cache options with a 30-minute TTL, and a developer-prefix breakpoint. Subsequent exact history/configuration matches send only new input and the stored response ID. Claude cache markers and signatures never become GPT input artifacts.

State is separated by account, model, authenticated caller, session, and client protocol. Changed history/tools, expiration, process restart, unknown output, failed or ambiguous terminal events, and cancellation cannot create a reusable checkpoint. Streaming remains incremental, but checkpoint promotion requires clean upstream EOF. Opaque GPT reasoning remains upstream; the proxy retains only bounded in-memory response IDs and replay digests. Public responses remain Claude-compatible and cache telemetry continues to label this ingress legacy.

This switch does not change model selection or fallback policy. It defaults off; disabling it restores the prior Messages request format. It does not transfer Anthropic caches or guarantee a cache-hit percentage. Custom endpoints must support these Responses controls when this bridge is enabled; authenticated Messages requests may then derive cache keys from ordinary session metadata. Caller-provided native input, identity, and response IDs remain untrusted.

HTTP continuation requires the endpoint to retain the referenced response. If it returns previous_response_not_found (or a typed invalid previous-response ID), the bridge retries the original full history once on the same account and model, then suspends continuation for that chain for 30 minutes. GPT cache controls remain active. This does not change store:false or enable provider-side retention. Backend retention and actual cache reuse need endpoint-specific validation; local response-ID existence is not proof of backend availability.

Optionally set CCFLARE_CODEX_MESSAGES_CONTINUATION_MODELS to a comma-separated list of exact resolved model names to limit this feature to validated models. Unset means all models when enabled; an empty list enables none. This scope controls adapter features, not model selection or fallback routes.