Built on the agents you already use
Twill orchestrates existing CLI coding agents — Claude Code, Codex, OpenCode — rather than shipping its own harness. That’s deliberate: model providers train and tune their models against their own toolchains, so delegating to those CLIs inherits that optimization, and the code they produce follows the same patterns your team writes locally.Sub-agents keep context focused
A long task rots when one context window has to hold everything. Twill splits work across specialized sub-agents, each starting fresh with only what its phase needs:Research & planning (optional)
The planning agent explores the repo, asks clarifying questions, and
produces a plan for approval. See Plans & questions.
Implementation
The main coding agent implements the change, adapting when the codebase
doesn’t match assumptions.
Environment setup (when needed)
If the dev environment is missing or unhealthy, a dedicated agent repairs
the bootstrap on the long-lived workspace VM — so the fix persists for every
future task. See Your dev environment.
Verification & review
Mechanical checks (tests, lint, types, build) plus a focused pass by a
code-reviewer agent for logic issues and missed requirements. See
Verification.