Back
7/61
Lesson 7
10 min

Agent Commands

Talk to Claude, Codex, and Gemini

New to ACFS?

Complete the setup wizard first to get the most from these lessons.

Go to Set Up Accounts
Goal

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:

Claude CodeAnthropic
claudecc
Codex CLIOpenAI
codexcod
Gemini CLIGoogle
geminigmi

Agent Authentication Race

Watch how each agent handles real authentication scenarios

SSH Key Generation

Generate and register SSH keys for Git authentication

AUTHSERVERClaudeCodexGemini
Claude Code
idle
Press play to start
0/9 steps
Codex CLI
idle
Press play to start
0/8 steps
Gemini CLI
idle
Press play to start
0/10 steps

What The Aliases Do

The aliases are configured for maximum power (vibe mode):

cc(Claude Code)
NODE_OPTIONS="--max-old-space-size=32768" \
  claude --dangerously-skip-permissions
  • Extra memory for large projects
  • Background tasks enabled by default
  • 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 login

Follow the browser link to authenticate with your Anthropic account.

Codex CLI

On a headless VPS, Codex requires special handling because its OAuth callback expects localhost:1455.

Option 1: Device Auth (Recommended)

  1. Enable "Device code login" in ChatGPT Settings → Security
  2. Then run the command below
$ codex login --device-auth

Option 2: SSH Tunnel

  1. On your laptop, create a tunnel
  2. Then run codex login on the VPS through that tunneled SSH session
# On laptop:
$ ssh -L 1455:localhost:1455 ubuntu@YOUR_VPS_IP
# Then on VPS:
$ codex login

Option 3: Standard localhost callback (if you're not on a headless VPS)

$ codex login
OpenAI Has TWO Account Types
ChatGPT (Pro/Plus/Team)
  • • For Codex CLI, ChatGPT web
  • • Auth via ChatGPT login (`codex login --device-auth` is recommended on a VPS)
  • • 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

$ export GEMINI_API_KEY="your-gemini-api-key"

Recommended on a headless VPS. Put the key in ~/.gemini/.env or your shell config, then run gemini.

Backup Your Credentials!

After logging in, immediately back up your credentials:

bash
caam backup claude my-main-account
caam backup codex my-main-account
caam backup gemini my-main-account

Now you can switch accounts later with:

bash
caam activate claude my-other-account
Pro Tip
This is incredibly useful when you hit rate limits! Switch to a backup account and keep working.

Test Your Agents

Try each one to verify they're working:

bash
cc "Hello! Please confirm you're working."
bash
cod "Hello! Please confirm you're working."
bash
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:

bash
1# Check which agents are installed
2$ which claude codex gemini
3
4# Check your agent credential backups
5$ caam ls
6
7# If you haven't logged in yet, start with Claude:
8$ claude auth login
Pro Tip
If you set up your accounts during the wizard (Step 7: Set Up Accounts), you already have the credentials ready—just run the login commands!

Ready to level up?

Mark complete to track your learning progress.