Agent vs. Autocomplete vs. Chat
These four fall into different categories. Claude Code and Codex CLI are terminal agents — they read your file system, run commands, and loop until the task is done. Google Antigravity is an agent-first IDE (a VS Code fork) where you delegate tasks to agents and pick which model runs them. GitHub Copilot, built on Codex, is an autocomplete engine that suggests the next line at your cursor. T3 Chat is a multi-model web chat — you paste code and it responds, with no file-system access.
Open Source: Where Each Tool Stands
The four span the full spectrum. Codex CLI is fully open source under Apache 2.0 (the CLI on GitHub — the GitHub Copilot extension is a separate, closed product). Claude Code is proprietary and source-available: you can read the code but cannot fork, redistribute, or self-host it. Google Antigravity is closed source; it is built on the open VS Code base but replaced the Apache-2.0 Gemini CLI, which Google is sunsetting. T3 Chat the product is closed source, but it spawned a large open-source clone ecosystem (the "Cloneathon"), with dozens of MIT-licensed forks you can self-host.
Model Lock-in
Claude Code runs only on Claude; Codex runs only on GPT. If a provider has an outage or changes pricing, a single-vendor tool is exposed. Antigravity is designed around the opposite approach — one Google login, with the ability to switch between Gemini, Claude, and open models per task. T3 takes a bring-your-own-key approach: connect any provider's key and route costs directly to that provider with no platform markup.
IDE and Editor Coverage
GitHub Copilot (Codex) has the widest editor reach — VS Code, JetBrains, Vim, Neovim, and Azure DevOps. Claude Code ships a VS Code and JetBrains extension that runs the full agent in a sidebar. Antigravity is itself an IDE — a VS Code fork — plus a CLI and SDK. T3 has no IDE extension; it is browser-only.