Skip to content

Agents

AgentProviderContext WindowBest For
Claude CodeAnthropic200K tokensGeneral coding, complex reasoning
CodexOpenAI128K tokensCode generation, completions
GeminiGoogle1M tokensLarge codebase analysis
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.

Terminal window
clauderon create --agent codex --repo ~/project --prompt "Add input validation"
Terminal window
clauderon create --agent gemini --repo ~/project --prompt "Analyze the entire codebase"
TaskRecommended
Complex refactoringClaude Code
Quick fixesClaude Code or Codex
Large codebase analysisGemini
Code generationCodex
Architecture planningClaude Code

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.