Skip to main content

Quick Start

Get CCS running in under 2 minutes.

1. Install

npm install -g @kaitranntt/ccs

2. Open Dashboard

ccs config
This opens the visual configuration dashboard where you can:
  • Create and manage Claude account profiles
  • Configure OAuth providers (Codex, Kiro, Copilot, Claude, Qwen, and more)
  • Set up API profiles (GLM, Kimi, OpenRouter, Novita, Alibaba)
  • View usage analytics
CCS uses the runtime’s system-default bind by default. Use ccs config --host 0.0.0.0 when you want to open the dashboard from another device, and protect it first with ccs config auth setup.
CCS Dashboard

3. Basic Usage

Default Claude

ccs                    # Uses default Claude subscription
ccs "your prompt"      # Start with a prompt

Profile Switching

ccs glm               # Switch to GLM profile
ccs km                # Use Kimi for Coding API profile
ccs work              # Switch to work account
ccs codex             # Use Codex via OAuth

With Arguments

All args after profile name pass directly to the active target runtime. By default, that runtime is Claude Code:
ccs glm --verbose
ccs /plan "add feature"
ccs glm /code "implement feature"
ccs glmt remains compatibility-only for legacy scripts and configs. New API setups should use ccs glm or ccs km.

4. Create Accounts (Optional)

For concurrent Claude sessions with different accounts:
# Create work profile
ccs auth create work
# Complete OAuth login with work account

# Create personal profile
ccs auth create personal
# Complete OAuth login with personal account

# Use them
ccs work "review code"       # Terminal 1
ccs personal "side project"  # Terminal 2 (concurrent)

Next Steps

Product Tour

See the dashboard and workflow before going deeper

Your First Session

Follow the full first-run flow after installation

Multiple Claude Accounts

Set up work, personal, and team accounts

OAuth Providers

Configure Codex, Kiro, Copilot, and more

API Profiles

Set up GLM, Kimi, OpenRouter, Novita, and custom endpoints

Dashboard

Explore the configuration dashboard

Claude IDE Extension

Connect CCS profiles to VS Code, Cursor, and Windsurf