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 |
|---|---|---|---|
opus[1m] | Opus [1M] | 1M tokens | Very long tasks, large codebases |
claude-opus-4-7 | Opus 4.7 | 200K tokens | Complex reasoning, flagship quality |
sonnet | Sonnet | 200K tokens | Balanced speed and quality |
haiku | Haiku | 200K tokens | Fast, lightweight tasks |
The default selection in the Spawn dialog is Opus [1M].
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.3-codex.
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.