Skip to content

Agents

Supported Agents

AgentProviderContext WindowBest For
Claude CodeAnthropic200K tokensGeneral coding, complex reasoning
CodexOpenAI128K tokensCode generation, completions
GeminiGoogle1M tokensLarge codebase analysis

Claude Code (Default)

Terminal window
clauderon create --agent claude --repo ~/project --prompt "Refactor the auth system"

Features: plan mode (disable with --no-plan-mode), tool use for file operations.

Codex

Terminal window
clauderon create --agent codex --repo ~/project --prompt "Add input validation"

Gemini

Terminal window
clauderon create --agent gemini --repo ~/project --prompt "Analyze the entire codebase"

Choosing an Agent

TaskRecommended
Complex refactoringClaude Code
Quick fixesClaude Code or Codex
Large codebase analysisGemini
Code generationCodex
Architecture planningClaude Code

Multiple Agents

Run sessions with different agents simultaneously:

Terminal window
clauderon create --agent claude --repo ~/project --prompt "Refactor auth"
clauderon create --agent gemini --repo ~/project --prompt "Document architecture"
clauderon list

Default agent is Claude Code. No config file setting exists; pass --agent per invocation.