Skip to content

Latest commit

 

History

History
99 lines (73 loc) · 4.45 KB

File metadata and controls

99 lines (73 loc) · 4.45 KB

Install T3 Code

T3 Code runs coding agents on your computer and lets you control them from its desktop, web, or mobile app. Set up the machine where the agents will work first.

Requirements

Command-line use, SSH hosts, and WSL backends need Node.js 22.16+ (22.x), 23.11+ (23.x), or 24.10 and later. The native desktop app includes its server runtime.

You need an installed, authenticated provider before starting a thread. You can launch T3 Code and configure providers afterwards.

Run without installing

npx t3@latest

This starts the server and opens the local web app. Run npx t3@latest --help for command-line options.

Desktop app

Download a release from GitHub Releases, or use a package manager:

Platform Install
Windows winget install T3Tools.T3Code
macOS brew install --cask t3-code
Arch Linux yay -S t3code-bin
Arch Linux nightly yay -S t3code-nightly-bin

Windows Subsystem for Linux

Choose a WSL distro in Settings → Connections to run agents and projects there. Install Node.js and provider CLIs inside that distro. T3 Code installs its matching server runtime there automatically; the first launch after an app update can take longer.

Open a project from a terminal

With the desktop app already running on the same machine:

npx t3 app

This opens a new thread for the current directory, adding the project if needed. Pass a path, such as npx t3 app ../my-project, to open another directory. It requires the desktop app, so a standalone server or an SSH session is not enough. If the command cannot reach the app, start or update the desktop app and try again.

Mobile app

Install T3 Code from the App Store or Google Play. The phone connects to a server on another machine. Follow remote access to link it through T3 Connect or a pairing URL.

Providers

Open Settings → Providers in the web or desktop app, select the environment, and enable the provider you want. Installation, login, and configuration belong to that environment's machine, even when you connect from a phone or another computer.

Provider Install and authenticate
Codex Install Codex CLI, then run codex login.
Claude Install Claude Code, then run claude auth login.
Cursor Install Cursor CLI, then run agent login.
Grok Build Install Grok Build CLI, then run grok login.
OpenCode Install OpenCode, then run opencode auth login.
Antigravity Install and sign in with Google from T3 Code's provider settings.

Provider CLIs must be on the server's PATH. If T3 Code cannot find one, set its Binary path in provider settings, especially when using a version manager. Cursor's executable is cursor-agent, although its login command is agent login. Antigravity can use its managed runtime without a PATH entry.

Add another provider instance for a separate account or configuration. Each instance can have its own environment variables, such as API keys or a custom base URL. Mark secret values as sensitive; after saving, T3 Code does not display their original values.

For provider-specific setup and accounts, see Codex, Claude, OpenCode, and Antigravity.

Next steps