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 (Gemini, Codex)
  • Set up API profiles (GLM, Kimi)
  • View usage analytics
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 work              # Switch to work account
ccs gemini            # Use Gemini via OAuth

With Arguments

All args after profile name pass directly to Claude CLI:
ccs glm --verbose
ccs /plan "add feature"
ccs glm /code "implement feature"

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