T3 Code is a minimal web GUI for coding agents (currently Codex, Claude, OpenCode, Hermes, and Pi, more coming soon).
Warning
T3 Code currently supports Codex, Claude, OpenCode, Hermes, and Pi. Install and authenticate at least one provider before use:
- Codex: install Codex CLI and run
codex login - Claude: install Claude Code and run
claude auth login - OpenCode: install OpenCode and run
opencode auth login - Hermes: install Hermes Agent and run
hermes model - Pi: install Pi Agent plus
pi-acp, then runpi
Hermes setup notes: docs/providers/hermes.md Pi setup notes: docs/providers/pi.md
T3 Code can run Hermes Agent as a local ACP
provider. Enable Hermes from Settings -> Providers, point the binary path at your local
hermes executable, then select Hermes from the chat model picker.
Recommended macOS setup:
git clone https://github.com/nousresearch/hermes-agent.git ~/Projects/hermes-agent
cd ~/Projects/hermes-agent
python3 -m venv venv
./venv/bin/pip install -e .
mkdir -p ~/.local/bin
ln -sf ~/Projects/hermes-agent/venv/bin/hermes ~/.local/bin/hermes
~/.local/bin/hermes modelT3 Code auto-detects common Hermes paths such as ~/.local/bin/hermes,
~/Projects/hermes-agent/venv/bin/hermes, /opt/homebrew/bin/hermes, and /usr/local/bin/hermes.
On Windows, use a full path such as C:\Users\you\Projects\hermes-agent\venv\Scripts\hermes.exe.
Hermes manages authentication through its own CLI and local config; T3 Code starts hermes acp
only when a Hermes conversation needs it.
Full setup and troubleshooting guide: docs/providers/hermes.md
T3 Code can run Pi Agent through the
pi-acp adapter. Enable Pi from
Settings -> Providers, set the ACP adapter path to pi-acp, set the Pi binary path to pi or
an absolute path, then select Pi from the chat model picker.
npm install -g @earendil-works/pi-coding-agent pi-acp
pi --version
pi-acp --helpT3 Code passes the configured Pi binary to the adapter with PI_ACP_PI_COMMAND, which keeps the
packaged desktop app working even when npm's global binary directory is not on the GUI app PATH.
On Windows, npm shims usually live under C:\Users\you\AppData\Roaming\npm\pi-acp.cmd and
C:\Users\you\AppData\Roaming\npm\pi.cmd.
Provider Settings also exposes a Pi update action, so users can run pi update from the same
place they configure the provider.
For GPT-5.5, run pi, use /login, choose ChatGPT Plus/Pro Codex, and set Pi's defaults to
openai-codex with gpt-5.5.
Full setup and troubleshooting guide: docs/providers/pi.md
npx t3Install the latest version of the desktop app from GitHub Releases, or from your favorite package registry:
winget install T3Tools.T3Codebrew install --cask t3-codeyay -S t3code-binWe are very very early in this project. Expect bugs.
We are not accepting contributions yet.
Observability guide: docs/observability.md
Before local development, prepare the environment and install dependencies:
# Optional: only needed if you use mise for dev tool management.
mise install
bun install .Read CONTRIBUTING.md before opening an issue or PR.
Need support? Join the Discord.

