Claude Code
Default and most capable. Full model selection (Opus, Sonnet, Haiku), configurable reasoning effort, CLAUDE.md support, session resume via --resume. Best for complex, long-running tasks.
Tide Commander supports three AI coding CLI providers. Each agent you spawn is backed by exactly one provider. You can mix providers on the same battlefield — a Claude agent and a Codex agent working in parallel is a normal setup.
Claude Code
Default and most capable. Full model selection (Opus, Sonnet, Haiku), configurable reasoning effort, CLAUDE.md support, session resume via --resume. Best for complex, long-running tasks.
OpenAI Codex
OpenAI’s coding agent CLI. Sandbox isolation, workspace-write mode, and --full-auto support. Uses GPT-based models. Good for code generation tasks in isolated environments.
OpenCode
Open-source coding agent. Reads .claude/CLAUDE.md natively. Session resume via -s <sessionId>. A lightweight alternative when you don’t need Claude or Codex.
Install Claude Code from claude.ai/code, then authenticate:
claude loginVerify the CLI is in your PATH:
claude --version| Model | Label | Context | Best for |
|---|---|---|---|
claude-fable-5[1m] | Fable 5 [1M] | 1M tokens | Most powerful, most intelligent — new tier above Opus |
claude-opus-5[1m] | Opus 5 [1M] | 1M tokens | Latest Opus — complex agentic coding and enterprise work |
claude-opus-4-8[1m] | Opus 4.8 [1M] | 1M tokens | Previous Opus generation, flagship quality, very long tasks |
opus[1m] | Opus 4.7 [1M] | 1M tokens | Older Opus generation with 1M context |
sonnet | Sonnet | 200K tokens | Balanced speed and quality |
haiku | Haiku | 200K tokens | Fast, lightweight tasks |
The default selection in the Spawn dialog is Opus 4.8 [1M]; Opus 5 [1M] and Fable 5 [1M] are selectable, with Fable 5 as the top tier above Opus. Plain (200K) claude-fable-5, claude-opus-5, claude-opus-4-8, and claude-opus-4-7 IDs remain valid for agents that explicitly need the smaller window, but the picker surfaces the 1M variants by default.
Effort controls how much reasoning Claude applies before responding:
| Level | Description |
|---|---|
| Low | Minimal reasoning, fastest output |
| Medium | Balanced |
| High | Deep reasoning (CLI default) |
| X-High | Extra reasoning — Tide Commander default |
| Max | Extended thinking, longest latency |
The default selection in the Spawn dialog is X-High.
Install the Codex CLI and set your API key:
npm i -g @openai/codexexport OPENAI_API_KEY=sk-...Verify:
codex --versionWhen you select Codex as the provider in the Spawn dialog, you get Codex-specific options:
--full-auto)on-request (prompt when needed) vs neverThe default Codex model is gpt-5.6-luna.
Install OpenCode:
npm i -g opencode-aiOr follow the opencode install guide. OpenCode reads .claude/CLAUDE.md natively, so any existing Claude configuration in your project applies automatically.
OpenCode supports multiple model providers. Set the model string in the Spawn dialog (e.g., minimax/MiniMax-M1-80k). The default selection is minimax/MiniMax-M1-80k.
Any model string accepted by the OpenCode CLI can be entered here.
You can run agents from different providers simultaneously. A common pattern:
The Boss can delegate to any subordinate regardless of its provider.