Login to your coding agents and understand the shortcuts.
The Three Agents
You have three powerful coding agents installed, each from a different AI company:
claudecccodexcodgeminigmiWhat The Aliases Do
The aliases are configured for maximum power (vibe mode):
cc(Claude Code)NODE_OPTIONS="--max-old-space-size=32768" \ ENABLE_BACKGROUND_TASKS=1 \ claude --dangerously-skip-permissions
- Extra memory for large projects
- Background task support
- No permission prompts
cod(Codex CLI)codex --dangerously-bypass-approvals-and-sandbox
- Bypass safety prompts
- No approval/sandbox checks
gmi(Gemini CLI)gemini --yolo
- YOLO mode (no confirmations)
First Login
Each agent needs to be authenticated once:
Claude Code
$ claude auth loginFollow the browser link to authenticate with your Anthropic account.
Codex CLI
$ codex loginFollow the browser prompts to authenticate with your ChatGPT Pro/Plus/Team account.
ChatGPT (Pro/Plus/Team)
- • For Codex CLI, ChatGPT web
- • Auth via OAuth (`codex login`)
- • Get at chat.openai.com
API (pay-as-you-go)
- • For OpenAI API, libraries
- • Uses OPENAI_API_KEY env var
- • Get at platform.openai.com
Codex CLI uses ChatGPT OAuth, not API keys. If you have an OPENAI_API_KEY, that's for the API—different system!
If login fails: Check ChatGPT Settings → Security → "API/Device access"
Gemini CLI
$ geminiFollow the prompts to authenticate with your Google account.
Backup Your Credentials!
After logging in, immediately back up your credentials:
caam backup claude my-main-accountcaam backup codex my-main-accountcaam backup gemini my-main-account
Now you can switch accounts later with:
caam activate claude my-other-account
Test Your Agents
Try each one to verify they're working:
cc "Hello! Please confirm you're working."
cod "Hello! Please confirm you're working."
gmi "Hello! Please confirm you're working."
Quick Tips
- Start simple - Let agents do small tasks first
- Be specific - Clear instructions get better results
- Check the output - Agents can make mistakes
- Use multiple agents - Different agents have different strengths
Practice This Now
Let's verify your agents are ready:
1# Check which agents are installed2$ which claude codex gemini34# Check your agent credential backups5$ caam ls67# If you haven't logged in yet, start with Claude:8$ claude auth login