Runtimes
A runtime is the CLI binary behind an agent. teamctl ships adapters for the three major AI coding CLIs — they can all mix freely inside one team.
| Runtime | Binary | MCP | Session resume | Notes |
|---|---|---|---|---|
| Claude Code | claude | yes | --continue | The default. Strongest for planning + tool use. |
| Codex CLI | codex | yes (0.14+) | profile | OpenAI’s CLI. Good for deep reasoning on patches. |
| Gemini CLI | gemini | yes (0.3+) | n/a (loop-restart) | 1M-token context makes it great for research. |
Adapters live under runtimes/<name>.yaml:
binary: claudesupports_mcp: truesession_resume: "--continue"default_model: claude-opus-4-7env: CLAUDE_PROJECT_DIR_MODE: composeReferenced from an agent spec:
workers: dev1: runtime: codex model: gpt-5-codexAdding a new runtime
- Drop a
runtimes/<yourcli>.yamlwith at leastbinary:. - Extend
bin/agent-wrapper.shwith arun_yourclibranch that shells out with the right flags. - Run
teamctl reload.
If the binary is missing on $PATH, teamctl up fails fast with a clear error rather than spawning a doomed tmux session.