Google Antigravity: Agent-assisted development

Google Antigravity is a new agentic development platform that Google announced on November 18, 2025, alongside the launch of Gemini 3. Here are the key details:

What It Is

Antigravity is an AI-powered integrated development environment designed for prioritizing AI agents platform for software development. It's built on a fork of Visual Studio Code but fundamentally reimagines how developers interact with AI coding tools.

Key Features

Agent-First Design: Unlike traditional coding assistants that act as sidebar chatbots, Antigravity gives agents their own dedicated space to work and allows us to deploy agents that autonomously plan, execute, and verify complex tasks across the editor, terminal, and browser.

Two Interface Modes:

  • The Editor View provides a traditional AI-powered IDE experience with tab completions and inline commands
  • The Agent Manager acts as "Mission Control," allowing us to spawn, monitor, and manage multiple agents working on different tasks simultaneously

Antigravity treats learning as a core primitive, allowing agents to save useful context and code snippets to a knowledge base to improve future tasks.

While it comes with generous rate limits on Gemini 3 Pro, it also offers full support for Anthropic's Claude Sonnet 4.5 and OpenAI's GPT-OSS.

Getting Started

1. Installation & Setup

Download Google Antigravity from the official website and select the installer according to the machine specifications.

After installation:

  • Launch the application
  • Sign in with the personal Gmail account (it's free during preview)
  • Choose Agent-assisted development (recommended) - this keeps us in the loop for approvals
  • Set Terminal execution to Auto for routine commands
  • Select the editor preferences (theme, fonts, etc.)

2. Open a Workspace

Open a local folder by clicking on the button and selecting a folder to start with - this is the project directory, just like in VS Code.

Article content

Simple Example: Building a Basic Web App

Let's say we want to build a simple Train lookup app.

1) Give the Agent a Clear Prompt

Provide a detailed prompt to the agent, outlining the application's required functionality, technologies, and specifications.

Example: Build me a Train lookup Next.js web app where users can enter a Train number and see departure time, arrival time, and status. Use Tailwind CSS for styling and create a clean, modern interface.

2) Review the Implementation Plan

The agent generates an Implementation Plan that details its research and what specific changes it intends to make to the codebase before it starts implementation. We should review and approve this plan before changes are applied.

We'll see:

  • Task List: What the agent plans to do
  • Implementation Plan: File-by-file changes
  • Research artifacts for API documentation or design decisions

Article content

3) Monitor Progress

The agent will:

  • Create project files automatically
  • Install dependencies via terminal
  • Write code across multiple files
  • Test the app in the built-in browser

We can watch the "Thinking" process in real-time to see what it's doing.

Article content

4) Test & Iterate

The agent can test the app in the browser using the Antigravity extension. Here is a sample screenshot on how the browser is controlled by Antigravity - Agent Manager after opening the browser session with a simple train search.

Article content

5) Commit the Code

Use the Generate a commit message button, which uses the conversation history and files to create a contextual commit message.

Final confirmation from the Agent Manager snapshot after successful implementation of Train Lookup app using Node.JS

Article content

Popular posts from this blog

Connecting Claude to Pega Infinity 25.1.3 via MCP — Step-by-Step

itextpdf API to generate PDF doc from an image file using Pega PE

Understanding of Hugging Face platform for AI/ML platform