CAAM — Coding Agent Account Manager

SkillWeb & browsing

Manage AI coding CLI accounts with sub-100ms switching. Use when hitting rate limits on Claude Max, GPT Pro, or Gemini Ultra subscriptions and need instant account swapping without browser OAuth.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the CAAM — Coding Agent Account Manager skill

What this skill tells your AI

The instructions your AI receives, as published by dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations in skills/caam/SKILL.md and read by ahel’s review.

Core Problem: You hit rate limits on your $200/mo Claude Max subscription. Browser OAuth takes 30-60 seconds. CAAM swaps accounts in ~50ms.

Quick Start

# Install
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/coding_agent_account_manager/main/install.sh?$(date +%s)" | bash

# Backup current account
caam backup claude alice@gmail.com

# Clear, login with another account, backup that too
caam clear claude
claude  # /login with bob@gmail.com
caam backup claude bob@gmail.com

# Switch instantly forever
caam activate claude alice@gmail.com   # ~50ms
caam activate claude bob@gmail.com     # ~50ms

THE EXACT PROMPT — Daily Commands

Check Status

caam status

Shows active profile for each tool based on content hash matching.

Instant Switch

caam activate claude bob@gmail.com

Restores auth files from vault. ~50ms, no browser.

Smart Auto-Switch

caam activate claude --auto

Rotation algorithm picks best profile based on health, recency, cooldowns.

Mark Rate Limited

caam cooldown set claude

Marks current profile for 60min. Rotation skips it.

Zero-Friction Aliases

# Add to .bashrc/.zshrc
alias claude='caam run claude --'
alias codex='caam run codex --'
alias gemini='caam run gemini --'

# Now these auto-failover on rate limits
claude "explain this code"

How It Works

Each AI CLI stores OAuth tokens in plain files. CAAM backs them up and restores them:

~/.claude.json ←→ ~/.local/share/caam/vault/claude/alice@gmail.com/
~/.codex/auth.json ←→ ~/.local/share/caam/vault/codex/work@company.com/

That's it. No daemons, no databases, no network calls. Just cp with extra steps.


Supported Tools

ToolSubscriptionAuth Files
Claude CodeClaude Max ($200/mo)~/.claude.json, ~/.config/claude-code/auth.json
Codex CLIGPT Pro ($200/mo)~/.codex/auth.json
Gemini CLIGemini Ultra (~$275/mo)~/.gemini/settings.json, ~/.gemini/oauth_credentials.json

Smart Rotation

When you have multiple accounts, rotation picks the best one:

# Preview what rotation would select
caam next claude

# Let it pick automatically
caam activate claude --auto

Health Indicators

IconStatusMeaning
🟢HealthyToken valid >1hr, no recent errors
🟡WarningToken expiring <1hr, minor issues
🔴CriticalToken expired, repeated errors
UnknownNo health data yet

Rotation Algorithms

AlgorithmDescription
smart (default)Cooldown + health + recency + jitter
round_robinSequential, skipping cooldowns
randomRandom among non-cooldown

Cooldown Tracking

# Mark current profile (60min default)
caam cooldown set claude

# Specify profile and duration
caam cooldown set claude/work@company.com --minutes 120

# View active cooldowns
caam cooldown list

# Clear early
caam cooldown clear claude/work@company.com

TUI Dashboard

caam tui

Keybindings

KeyAction
↑/↓Navigate profiles
EnterActivate selected
pSet project association
cMark/clear cooldown
rRefresh
qQuit

Project Associations

Link profiles to directories:

cd ~/projects/work-app
caam project set claude work@company.com

# Now in this directory:
caam activate claude  # Auto-uses work@company.com

Command Reference

CommandDescription
caam backup <tool> <email>Save current auth to vault
caam activate <tool> <email>Restore auth from vault
caam activate <tool> --autoAuto-select best profile
caam status [tool]Show active profiles
caam ls [tool]List saved profiles
caam clear <tool>Remove auth files (logout)
caam run <tool> [-- args]Wrap with auto-failover
caam cooldown set <profile>Mark as rate limited
caam cooldown listShow active cooldowns
caam next <tool>Preview rotation selection
caam tuiInteractive dashboard

Flywheel Integration

ToolIntegration
NTMEach tmux pane uses different account via isolated profiles
Agent MailAgents coordinate account switching across sessions
CASSSearch sessions by account for usage patterns

References

TopicReference
Complete commandsCOMMANDS.md
Isolated profilesISOLATED-PROFILES.md
Vault structureVAULT.md

Validation

# Verify installation
caam --version

# Check all profiles
caam status

# Test switch
caam activate claude --auto && caam status

Signals

GitHub stars
73
Forks
16
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
caam
Source
github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations