Google Antigravity IDE: The Agent-First Coding Platform, Reviewed
Google launched Antigravity in November 2025, and within four months it hit 6% developer adoption. That's fast for an IDE โ especially one that rethinks how you interact with AI. Instead of autocomplete suggestions and chat sidebars, Antigravity gives you a mission control dashboard where AI agents autonomously plan, code, and test across your editor, terminal, and browser.
But is it ready for real work? After spending serious time with it, here's what you need to know โ the genuine innovations, the frustrating rough edges, and when you should (or shouldn't) reach for it over Cursor or Claude Code.
๐ What You'll Need
- Personal Gmail account โ Workspace accounts aren't supported yet
- Chrome browser โ required for the browser agent extension
- macOS, Windows, or Linux โ all three supported
- ~400MB disk space โ for the initial download
- Optional: Google Cloud credits for cloud deployment tasks
๐๏ธ What Makes Antigravity Different
Most AI coding tools bolt intelligence onto a traditional editor. Antigravity does the opposite โ it builds the editor around agent orchestration.
The core idea: you describe what you want built, and agents handle how. They write code, run it in the terminal, open a browser to test it, take screenshots, and report back with reviewable Artifacts.
Two Interfaces, One Tool
Antigravity has two distinct surfaces you switch between:
| Interface | Purpose | Think of it as... |
|---|---|---|
| Editor View | Traditional coding with AI sidebar | VS Code with a smarter copilot |
| Manager View | Spawn and orchestrate multiple agents | Mission control dashboard |
The Editor is a VS Code fork. Your extensions, themes, and keybindings carry over. You get tab completions, inline commands (Cmd + I), and an agent chat panel (Cmd + L).
The Manager is where things get interesting. You can run multiple agents in parallel across different workspaces, review their work as structured Artifacts, and leave Google Docs-style comments for the agent to incorporate โ all without blocking execution.
โก Installation & First Setup
Step 1: Download and Install
Head to antigravity.google/download, pick your OS, and run the installer. Takes about 5-10 minutes.
Step 2: Configure Agent Policies
This is the most important decision during setup. Antigravity asks you to set three policies:
| Policy | Options | Recommendation |
|---|---|---|
| Terminal Execution | Always Proceed / Request Review | Request Review |
| Code Review | Always Proceed / Agent Decides / Request Review | Agent Decides |
| JavaScript Execution | Always Proceed / Request Review / Disabled | Request Review |
Step 3: Sign In and Choose Your Settings
Sign in with your Gmail, import VS Code/Cursor settings if you want, pick a theme, and install the agy CLI tool when prompted.
Step 4: Install the Browser Extension
The first time an agent needs browser access, Antigravity prompts you to install its Chrome extension. This enables agents to navigate pages, click elements, read the DOM, and record sessions.
๐ง Key Features That Matter
Multi-Agent Concurrency
Antigravity's biggest differentiator. You can spawn five agents running in parallel, each working on different tasks in different workspaces. One agent builds your API, another writes tests, a third handles the frontend โ all simultaneously.
This isn't theoretical. The Manager view shows each agent's status, pending approvals, and generated Artifacts in real time.
Artifacts: Verifiable Work Products
Instead of dumping code into a chat window, agents produce structured Artifacts:
- Task lists โ the agent's step-by-step plan
- Implementation plans โ architecture and technical approach
- Code diffs โ reviewable file changes
- Screenshots and recordings โ browser test evidence
You review each Artifact and leave comments. The agent incorporates feedback without stopping its execution flow. It's closer to managing a junior developer than using a tool.
Built-In Browser Agent
This is genuinely useful. Agents can:
- Launch your web app in a built-in Chromium browser
- Navigate, click, scroll, and type to test UI flows
- Capture screenshots and video recordings as proof of work
- Read console logs for error detection
No other major AI IDE offers this natively. Cursor and Claude Code require you to switch windows and manually verify UI changes.
Learning and Knowledge Base
Agents save useful context and code snippets to a knowledge base that persists across sessions. You can also create:
- Rules (
.agents/rules/) โ coding standards agents must follow - Workflows (
.agents/workflows/) โ reusable task templates invoked with/ - Skills (
.agents/skills/) โ specialized knowledge packages with scripts and references
If you've used CLAUDE.md files with Claude Code, this concept will feel familiar.
๐ค Supported Models
Antigravity isn't locked to Gemini. You get model choice:
| Model | Provider | Notes |
|---|---|---|
| Gemini 3.1 Pro (High/Low) | Default, best free-tier quota | |
| Gemini 3 Flash | Fast, lightweight tasks | |
| Claude Sonnet 4.6 | Anthropic | Strong coding performance |
| Claude Opus 4.6 | Anthropic | Top-tier reasoning |
| GPT-OSS 120B | OpenAI | Open-source model option |
You select the model per task from a dropdown in the Manager. Different tasks can use different models.
๐ฐ Pricing & The Credit Controversy
Antigravity launched as free-for-all, but pricing has evolved โ and not without backlash.
| Plan | Cost | What You Get |
|---|---|---|
| ๐ Free | $0/month | All models, 5-hour rate limit resets |
| AI Pro | $20/month | Higher limits, built-in credits |
| AI Ultra | $249.99/month | High-volume access to complex models |
| Credits | $25 / 2,500 | On-demand top-ups |
What Actually Happens in Practice
The free tier works for exploration and light projects. But heavy users hit rate limits fast, especially with Claude or GPT models.
The AI Pro controversy: Google originally advertised generous quotas refreshing every five hours. Users report that high-reasoning models now feel throttled, with weekly (not five-hour) refresh cycles. Google's AI for Developers forum is filled with complaints, and The Register covered the backlash in March 2026.
The credit system also lacks clear documentation on what each credit buys across different models.
๐ Security: Don't Skip This
Antigravity agents can execute terminal commands, run JavaScript in a browser, and modify files. That power needs guardrails.
Real users have reported agents running aggressive commands like chmod -R 777. Here's how to protect yourself:
Essential security setup:
- Use Allow/Deny lists โ whitelist safe commands (
ls,npm test,git status) or blacklist dangerous ones (rm -rf,sudo,curl) - Restrict browser URLs โ set an allowlist in Settings > Browser to prevent prompt injection from compromised sites
- Run in a sandbox โ use a VM, container, or macOS sandbox for untrusted projects
- Version control everything โ review diffs before merging agent-generated code
- Keep credentials outside your workspace โ agents can read any file in the project directory
โ๏ธ Antigravity vs. Cursor vs. Claude Code
Here's how the three leading AI coding tools stack up in April 2026:
| Feature | Antigravity | Cursor | Claude Code |
|---|---|---|---|
| Approach | Agent-first IDE | AI-enhanced IDE | Terminal-first agent |
| Base | VS Code fork | VS Code fork | CLI + IDE extensions |
| Multi-agent | โ Parallel agents | โ ๏ธ Newer subagents | โ ๏ธ Single agent |
| Built-in browser | โ Native Chromium | โ | โ |
| Autonomy level | Highest | Medium | Medium-high |
| Free tier | โ Rate-limited | โ ๏ธ Trial only | โ Usage-based |
| Enterprise compliance | โ Preview only | โ SOC 2 | โ Enterprise plan |
| SWE-bench score | Depends on model | Depends on model | ๐ฅ 80.8% (Opus 4.6) |
| Community rating | 3.5/5 | 4.7/5 | Most loved (46%) |
When to Use Each
-
Antigravity โ Greenfield projects, R&D experiments, parallel multi-task workflows, web app testing with browser agent. Best when you want maximum autonomy and don't mind reviewing Artifacts.
-
Cursor โ Daily production coding where you want AI inline with your editing flow. Best if you're already in the VS Code ecosystem and want stability.
-
Claude Code โ Deep reasoning tasks, complex refactors, and repo-wide changes. Best when you need the highest code quality and don't mind working in the terminal.
Many developers use two tools together: Cursor for 80% of daily editing, and Antigravity or Claude Code for complex greenfield tasks.
๐ ๏ธ Practical Tips From Real Usage
After extended use, here's what actually matters:
Be explicit about deliverables. Don't say "build a login page." Say "create a login page with email/password fields, form validation, POST to /api/auth/login, and write Jest tests. Show me a screenshot of the rendered page."
Pin acceptance criteria in your task description. Agents work best with clear success conditions.
Use Planning mode for complex tasks, Fast mode for quick edits. Planning mode adds overhead but catches architectural issues early.
Request rationale. Ask agents to explain their decisions. This catches bad assumptions before they compound.
Paste key context files directly. Don't assume agents will find the right files. Reference specific files with @ mentions.
Check diffs before merging. Agents occasionally make bold changes (renaming files, restructuring directories) that weren't part of your request.
๐ง Troubleshooting
| Problem | Solution |
|---|---|
| Rate limit hit mid-task | Switch to Gemini 3 Flash for lighter subtasks, or wait for refresh |
| Browser agent won't launch | Install the Chrome extension manually from Chrome Web Store |
| Agent runs unsafe commands | Tighten Terminal Execution Policy to "Request Review" and add a deny list |
| Workspace settings not recognized | Check .agents/rules/ directory exists and files use correct format |
| Import from VS Code incomplete | Manually copy settings.json and keybindings โ some extensions need reinstalling |
| Agent loops on a task | Use "Undo changes up to this point" in chat, then rephrase with clearer constraints |
๐ What's Next
- ๐ Read the official Google Codelabs tutorial for a guided first project
- ๐ง Explore MCP servers to connect Antigravity agents to external tools and data sources
- โก Compare it against Claude Code's terminal workflow to see which approach fits your style
- ๐งช Try building a side project entirely with agents before using it on production code
- ๐ Set up proper sandbox environments before giving agents terminal access on real projects
Want to see how other AI coding tools compare? Read our AI Coding Agents Compared guide or learn prompt engineering patterns for AI coding tools.