One huge R script that’s hard to edit
Each stage can be developed and re-run independently; the figures module is reused in a second paper within the same week.
Agent-first dev platform — orchestrate many AI agents at once
Google's entry in the agent-first coding space — unlike most competitors, it needs a Google account and runs on Google's own infrastructure rather than a tool you install standalone.
Antigravity is Google's agent-first development platform: instead of one assistant in a chat box, it gives AI agents their own space to work. A Manager Surface lets you spawn, orchestrate, and watch multiple agents running in parallel, and an Editor View is a full AI IDE. It is model-agnostic — Gemini 3 Pro, Claude Sonnet 4.5, and GPT-OSS all run inside it. → Best for bigger, multi-step jobs you hand off and check on later.
Concrete multi-step jobs with a clear finish line — a refactor, a new tool, an overnight task — not a single quick question.
Needs a Google account and runs on Google's platform; the free tier is capped (~20 agent requests/day) and exhausts in a real session.
Free: ~20 agent requests/day on Gemini Flash. AI Pro $20/mo (~100/day); AI Ultra $100–$250/mo for high-volume use.
The Antigravity CLI is a terminal‑first surface for working with AI agents.
You will have the agy binary installed and reachable from your shell.
curl -fsSL https://antigravity.google/cli/install.sh | bash for macOS/Linux, or powershell irm https://antigravity.google/cli/install.ps1 | iex for Windows.~/.local/bin/agy on macOS/Linux, C:\Users\\AppData\Local\agy\bin on Windows).export PATH="~/.local/bin:$PATH" to ~/.bashrc and run source ~/.bashrc).agy --version prints the CLI version without error, confirming the command is found.The Terminal User Interface (TUI) lets you interact with agents via a full‑screen console.
You will start the Antigravity TUI and complete its first‑launch interactive setup.
cd /path/to/your/project).agy to launch the TUI.A Project defines the folder boundaries and settings that agents can operate within.
You will have a named project that includes one or more local folders.
Agents are autonomous AI workers that can read code, propose changes, and execute tasks.
You will start an agent in your project and give it a concrete coding instruction.
Help me add a new feature that prints "Hello Antigravity" and press Enter./goal to let the agent run until completion./goal lets you control how much autonomy an agent has during execution.Scheduled Tasks let agents run instructions at future times or on a repeat interval.
You will set up an agent to perform a web search every hour and store the results as artifacts.
/schedule 1h Write a summary of the latest AI research papers and press Enter./run now).One huge R script that’s hard to edit
Each stage can be developed and re-run independently; the figures module is reused in a second paper within the same week.
Want a complete funnel view without hand‑coding tracking
The founder has a complete funnel view within one day of setup: no manual instrumentation pass, and no manual click-through either, because the agent verified its own work in a live browser.
Typed modules improve maintainability while tests catch regressions early in data cleaning.
Nightly test runs
You’ll catch regressions early without manual effort, keeping the codebase stable.
Need a sequence for an accession ID
Enables rapid reuse of existing data without manual download, streamlining downstream analyses.
Want to choose a project and keep the default Gemini model
Choosing a project and leaving the model on Gemini 3.5 Flash prepares the agent with a capable default LLM
Unsure which part of the code to tweak
Stating exactly which code to modify and its location helps the agent produce targeted edits instead of vague improvements
The Editor View shows the agent's planned steps, code execution, and automatic fixes, giving you visibility into its self-correction process
Too many small edits exceed free limits
Grouping related changes into a single task reduces the number of API calls, keeping you under the basic weekly rate limits of the free Individual plan
Need to modify just one branch directly
Running an agent locally lets it modify the selected branch directly, suitable for small trusted changes
Can't decide on terminal colours
You can launch the Antigravity command-line interface and immediately choose a colour scheme for your terminal
Need to request a code change in plain English
The CLI forwards your natural-language request to an agent that replies with a ready-to-review code diff
Running many agents in parallel consumes the same weekly rate-limit, so total throughput increases but cost does not decrease
Too many AI agents get blocked by rate limits
Upgrading to the Google AI Pro plan increases the rate-limit pool, allowing more concurrent agents without hitting the free-plan ceiling
Want a task to keep running after you log off
You can start work for an agent and let it finish on its own, freeing you to do other things
Need nightly test runs with failure list
You can ask an agent to pull commits, run tests nightly, and summarize failures for morning review
When you want to give feedback on generated docs
Leaving comments on the generated artifacts lets you guide the agent to fix issues
Google Antigravity is an agent-first development platform launched in November 2025. Instead of just suggesting code like a chatbot, it autonomously plans, executes, and verifies complex tasks using AI agents that can operate your editor, terminal, and browser simultaneously. Think of it less like smart autocomplete and more like delegating a whole project to an AI assistant that works through steps on its own.
The Browser Subagent opens a real Chrome instance the AI controls directly — it can navigate to your web app, click buttons, fill forms, and report what it finds or what breaks. This lets an agent test a website end-to-end without you doing it manually, a capability several competitors lack at this price point.
The free tier launched with a generous daily agent-request allotment in November 2025 and was cut sharply within weeks, followed by several further quota reductions through early 2026 that caused some Pro subscribers to hit multi-day lockouts. Basic editor features like tab completion remain effectively unlimited, but autonomous agent usage is tightly capped — verify the current quota before relying on it.
A chatbot answers questions in a conversation window and leaves the actual work to you. Antigravity's agents take actions directly — writing files, running code in the terminal, opening a browser, clicking buttons — and keep going through multi-step tasks without you copy-pasting each response. The key difference is autonomy: the agent does, not just says.
There is a free tier ($0/month) during public preview with core agent access and a Gemini model included, but it comes with weekly usage quotas. Paid plans go through Google AI subscriptions (Pro around $20/month, with higher Ultra tiers). Free limits have been cut several times since launch, so heavy use will likely require a paid plan.
No, it is model-agnostic. Antigravity supports Google's Gemini models (the default), Anthropic's Claude, and OpenAI's open-weight GPT-OSS models, and you can pick different models for different tasks. Using a non-Google model may require your own API key from that provider, which adds cost.
Yes, you sign in with a Google account. Personal Google accounts work for the free and Pro tiers; Google Workspace accounts are used for enterprise/team plans, subject to admin settings and geographic availability. There is no anonymous or guest access.
Antigravity runs on all three: 64-bit Windows 10 or later, macOS 12 or later, and 64-bit Linux. The CLI was noted as preview-quality on Linux as of mid-2026, meaning it may be less polished there.
The Manager Surface (called Mission Control in version 2.0) is a dedicated panel where you spawn, watch, and control multiple agents running in parallel across different projects. Each agent shows its status and produces Artifacts — verifiable outputs like task lists, screenshots, or recordings — so you can check what it did without reading thousands of lines of code.
Yes — this is a core feature. You can launch several agents simultaneously from the Manager Surface, each working on a different task asynchronously so they run while you do other things. Version 2.0 added scheduled background tasks so agents can also run on a timer without you present.
The same set on /recipes, filtered by tool and role.
Shows why Antigravity differs from a normal IDE: you orchestrate a team of agents rather than autocomplete one file.
The shortest path from 'never opened it' to a working setup — pair it with the official guide above.
Straight from Google — the authoritative starting point before any third-party take.
Google Antigravity is an agent-first development platform launched in November 2025. Instead of just suggesting code like a chatbot, it autonomously plans, executes, and verifies complex tasks using AI agents that can operate your editor, terminal, and browser simultaneously. Think of it less like smart autocomplete and more like delegating a whole project to an AI assistant that works through steps on its own.
The Browser Subagent opens a real Chrome instance the AI controls directly — it can navigate to your web app, click buttons, fill forms, and report what it finds or what breaks. This lets an agent test a website end-to-end without you doing it manually, a capability several competitors lack at this price point.
The free tier launched with a generous daily agent-request allotment in November 2025 and was cut sharply within weeks, followed by several further quota reductions through early 2026 that caused some Pro subscribers to hit multi-day lockouts. Basic editor features like tab completion remain effectively unlimited, but autonomous agent usage is tightly capped — verify the current quota before relying on it.
A chatbot answers questions in a conversation window and leaves the actual work to you. Antigravity's agents take actions directly — writing files, running code in the terminal, opening a browser, clicking buttons — and keep going through multi-step tasks without you copy-pasting each response. The key difference is autonomy: the agent does, not just says.
There is a free tier ($0/month) during public preview with core agent access and a Gemini model included, but it comes with weekly usage quotas. Paid plans go through Google AI subscriptions (Pro around $20/month, with higher Ultra tiers). Free limits have been cut several times since launch, so heavy use will likely require a paid plan.
No, it is model-agnostic. Antigravity supports Google's Gemini models (the default), Anthropic's Claude, and OpenAI's open-weight GPT-OSS models, and you can pick different models for different tasks. Using a non-Google model may require your own API key from that provider, which adds cost.
Yes, you sign in with a Google account. Personal Google accounts work for the free and Pro tiers; Google Workspace accounts are used for enterprise/team plans, subject to admin settings and geographic availability. There is no anonymous or guest access.
Antigravity runs on all three: 64-bit Windows 10 or later, macOS 12 or later, and 64-bit Linux. The CLI was noted as preview-quality on Linux as of mid-2026, meaning it may be less polished there.
The Manager Surface (called Mission Control in version 2.0) is a dedicated panel where you spawn, watch, and control multiple agents running in parallel across different projects. Each agent shows its status and produces Artifacts — verifiable outputs like task lists, screenshots, or recordings — so you can check what it did without reading thousands of lines of code.
Yes — this is a core feature. You can launch several agents simultaneously from the Manager Surface, each working on a different task asynchronously so they run while you do other things. Version 2.0 added scheduled background tasks so agents can also run on a timer without you present.
AntigravityAntigravity CLIAntigravity SDKAgentManager SurfaceEditor ViewArtifactsSkillsReview-Driven DevelopmentPlan modeFast modeProjectConversationMCP/browser/scheduleGemini 3.5 FlashSKILL.mdAsk, share, or report — over on the Heidelberg AI community forum.