ANTIGRAVITY LABJP
Articles/Antigravity Basics
Antigravity Basics/2026-03-20Beginner

Antigravity 2026 — Key Features and Use Cases of the AI Coding Editor

What is Antigravity (formerly Windsurf)? Agent features, editor usage, AGENTS.md, MCP integration, pricing, and more. The definitive 2026 guide.

Antigravity321guide3complete-guide202624beginner8AI IDE22Windsurf4

Antigravity Explained — The AI Coding Editor Worth Your Attention in 2026

Antigravity is a next-generation AI coding editor developed by Codeium. Following Google's acquisition in 2025, it underwent a rebrand in 2026, evolving significantly from its predecessor Windsurf. It now features powerful agent capabilities and integrated environments.

Antigravity's hallmark is agent-driven development flow. Rather than merely a code completion tool, AI autonomously edits files, and multiple agents coordinate to advance projects.

Windsurf to Antigravity Evolution

  • 2024: Windsurf launches. Inline commands (Cmd+K) gain recognition as innovative feature
  • 2025: Google acquires Codeium
  • 2026: Rebrands to Antigravity. Multi-agent and MCP integration become core

Antigravity Pricing Plans — Free, Pro, Enterprise

Antigravity offers three pricing tiers.

Free Plan

  • Cost: Free
  • Cmd+K inline commands (100 uses/month limit)
  • Basic chat functionality
  • Code completion (limited)
  • Local AGENTS.md support
  • For personal development and learning

Pro Plan

  • Cost: $20/month or $200/year
  • Unlimited Cmd+K
  • Unlimited chat
  • Agent features (multi-agent support)
  • MCP integration (up to 10 connections)
  • Cloud sync
  • For professionals

Enterprise Plan

  • Cost: Custom pricing
  • All features unlimited
  • Team collaboration
  • Dedicated support
  • SAML/SSO support
  • On-premises option
  • For large teams and enterprises

Editor Basics — Cmd+K Inline Commands, Chat, Code Completion

Antigravity's editor is built on VS Code and offers an intuitive UI.

Cmd+K Inline Commands

Pressing Cmd+K (Windows: Ctrl+K) lets you give AI instructions while referencing surrounding code context.

Basic Usage

1. Select code or position cursor
2. Press Cmd+K
3. Type instruction in natural language
4. Press Enter to execute

Common Instructions

"Type this function in TypeScript"
"Write Jest tests for this code"
"Rewrite this component using React Hooks"
"Improve error handling here"

Chat Feature

Open the chat icon in the left sidebar to converse while referencing entire files and projects. The AI understands relationships between files before offering suggestions.

Code Completion

Inline code completion suggestions appear automatically. Press Tab to accept, Esc to dismiss.


AI Agent Features — Agent Manager and Multi-Agent

Antigravity's defining feature is agent capabilities. Unlike Cmd+K, agents understand entire projects and automatically edit multiple files.

Agent Manager Basics

From the left sidebar "Agent" tab:

  • Create New Agent: Customize for specific tasks
  • Switch Agents: Toggle between multiple agents
  • Assign Tasks: Give instructions in natural language
  • Execute/Stop: Control agent behavior

Multi-Agent Coordination

Multiple agents run simultaneously and coordinate with each other. For example:

  • Frontend Agent: Implement UI components
  • Backend Agent: Implement API logic
  • Test Agent: Generate tests automatically
  • Deploy Agent: Automate build and deployment

Each agent operates independently per AGENTS.md roles while coordinating as needed.


Designing Project Context with AGENTS.md

AGENTS.md is your project's agent definition file. Recording project information here helps AI understand context precisely and deliver higher-quality suggestions.

Basic AGENTS.md Structure

# Project Context
 
## Overview
Project name, purpose, primary tech stack
 
## Architecture
Folder structure and file organization explanation
 
## Tech Stack
Languages, frameworks, libraries in use
 
## Agents
Role definitions for each agent
 
### Agent: Frontend Developer
- Responsibility: React / Next.js component development
- Prohibited: Backend logic changes
- Tools: MCP Figma Dev Mode
 
### Agent: Backend Engineer
- Responsibility: Node.js / Express API implementation
- Prohibited: Frontend UI changes
- Connection: Supabase, PostgreSQL
 
## Knowledge Items
Design documents, API specs, style guides

Real Example: Next.js + Supabase Project

# Antigravity SaaS Platform
 
## Overview
SaaS platform. User authentication, subscription management, analytics dashboard
 
## Architecture

/app # Next.js application /auth # Auth-related /dashboard # Dashboard UI /api # API routes /lib # Utilities /components # React components /public # Static files


## Tech Stack
- Frontend: Next.js 15, React 19, TailwindCSS
- Backend: Node.js, Express (API Routes)
- Database: PostgreSQL (Supabase)
- Auth: Supabase Auth (JWT)
- Payments: Stripe

## Agents

### Agent: Frontend Developer
- Responsibility: React components and pages
- Tools: Figma Dev Mode (MCP)
- Prohibited: Backend API implementation

### Agent: Backend Engineer
- Responsibility: API Routes and database logic
- Connection: Supabase Admin
- Prohibited: UI component changes

### Agent: QA Automation
- Responsibility: E2E tests and pre-deployment validation
- Tools: Playwright, Browser Sub-Agent

MCP Integration — External Tool Integration

MCP (Model Context Protocol) is the standard protocol for AI to work with external tools and services. Antigravity supports multiple MCPs—agents can leverage them automatically.

Major MCP Servers

Figma Dev Mode

  • Design → Code automation
  • UI component extraction

Google Stitch

  • Google Workspace integration
  • Spreadsheet and document processing

Supabase

  • Execute database queries
  • Real-time API

Stripe

  • Payment processing API
  • Subscription management

GitHub

  • Source code management
  • Issue tracking

MCP Registration

From Antigravity settings (Command Palette → Settings):

Add MCP → Enter server name → Configure auth (API Key, etc.) → Test connection

When agents declare required MCPs in AGENTS.md, they become automatically available.


Antigravity vs Cursor vs Claude Code — 2026 Comparison

FeatureAntigravityCursorClaude Code
Inline CommandsCmd+K (AI rewrite)Cmd+K (AI complete)Cmd+K (Codeium)
Agent Features⭐⭐⭐ Multi-agent⭐⭐ Basic⭐⭐⭐ Standard
Design Integration⭐⭐⭐ Figma Dev Mode⭐⭐ Partial⭐⭐ Partial
MCP Support⭐⭐⭐ Built-in⭐ Experimental⭐⭐⭐ Built-in
Pricing (Pro)$20/month$20/month$15/month
Enterprise⭐⭐⭐ Strong⭐ Weak⭐⭐⭐ Strong
Team Collaboration⭐⭐⭐ Enterprise plan⭐ Limited⭐⭐⭐ Workspace support

Selection Criteria

  • Personal/Learning: Antigravity Free
  • Production SaaS: Antigravity Pro + MCP integration
  • Large Teams: Antigravity Enterprise or Claude Code Workspace

Tips for Mastering Antigravity

Tip 1: AGENTS.md is Your "Specification"

Write it in detail at project outset. It becomes the "constitution" agents reference.

Tip 2: Explicitly Mark "Prohibited Actions"

When each agent knows "what not to do," unnecessary edits are prevented.

### Agent: Frontend
- Prohibited: Editing files under src/api/
- Prohibited: Changing environment variables

Tip 3: Manage MCP Permissions Strictly

Only expose Stripe API Keys and Supabase Admin Tokens to necessary agents.

Tip 4: Automate E2E Tests

Browser Sub-Agent auto-generates and runs Playwright tests. Acts as safety net pre-deployment.

Tip 5: Update AGENTS.md Regularly

Reflect architecture changes in AGENTS.md as your project grows.


Looking back — What You'll Learn at Antigravity Lab

The Antigravity fundamentals presented here are just the beginning. Antigravity Lab dives deeper into:

  • Next Steps: Practical Techniques Part 1 covers Cmd+K usage, AGENTS.md examples, Figma integration
  • Advanced Techniques: Part 2 (Premium) covers multi-agent orchestration, production app development, SaaS monetization

Experience AI-driven development flow with Antigravity.

Share

Thank You for Reading

Antigravity Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

If you found this article helpful, a small tip ($1.50) would mean a lot to us. Your support helps keep this site ad-free and covers server and hosting costs.

Related Articles

Antigravity2026-03-21
Antigravity vs Windsurf: How I Actually Split My Work Between Them
In-depth comparison of Antigravity and Windsurf AI IDEs. Explore features, pricing models, agent capabilities, MCP support, and multi-agent orchestration to choose the right tool for your development workflow.
Antigravity2026-03-20
AI Tools Complete Directory 2026 [Part 1] — Essential AI Tools & Services to Use with Antigravity
A comprehensive directory of AI tools and services that work alongside Antigravity IDE. Covers overview, pricing, use cases, and integration methods for each tool in this 2026 edition guide.
Antigravity2026-03-20
Why Antigravity Holds 2nd Place in AI IDE Rankings — March 2026 AI Coding Tool Comparison
In LogRocket's March 2026 AI Development Tool Rankings, Antigravity maintains 2nd place. This guide explains the ranking, compares Antigravity with Windsurf, Cursor, and Claude Code, and helps you choose the right tool for your project.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →