T
traeai
Sign in
返回首页
Google Cloud Blog

Choosing your surface: Antigravity 2.0, Antigravity CLI, Antigravity IDE, or Antigravity SDK

8.5Score
Choosing your surface: Antigravity 2.0, Antigravity CLI, Antigravity IDE, or Antigravity SDK

TL;DR · AI Summary

Antigravity 提供四种不同工具表面,分别适用于不同开发场景,开发者可根据需求选择最适合的工具。

Key Takeaways

  • Antigravity 2.0 适合管理多个项目并行任务。
  • Antigravity CLI 适用于终端工作流和无头执行。
  • Antigravity SDK 是构建自定义代理的 Python 库。

Outline

Jump quickly between sections.

  1. 介绍 Antigravity 的四种不同工具表面及其适用场景。

  2. Antigravity 2.0 是一个桌面应用,用于管理多个项目并行任务。

  3. Antigravity CLI 是一个终端工具,适用于无头执行和命令行工作流。

  4. Antigravity IDE 是一个编辑器,允许开发者直接编辑代码并查看代理的修改。

  5. Antigravity SDK 是一个 Python 库,用于构建自定义代理和自动化流程。

Mindmap

See how the topics connect at a glance.

查看大纲文本(无障碍 / 无 JS 友好)
  • Antigravity 工具表面
    • Antigravity 2.0
      • 桌面应用
      • 管理多个项目并行任务
    • Antigravity CLI
      • 终端工具
      • 无头执行
    • Antigravity IDE
      • 编辑器
      • 直接编辑代码
    • Antigravity SDK
      • Python 库
      • 构建自定义代理

Highlights

Key sentences worth saving and sharing.

#Antigravity#开发工具#Python#CLI#IDE
Open original article

Choosing your surface: Antigravity 2.0, Antigravity CLI, Antigravity IDE, or Antigravity SDK | Google Cloud Blog

Developers & Practitioners

Choosing your surface: Antigravity 2.0, Antigravity CLI, Antigravity IDE, or Antigravity SDK

June 10, 2026

##### Alex "Sandu" Astrum

Developer Relations, Firebase

##### Luke Schlangen

Developer Advocate, Google Cloud

TL;DR:

  • Antigravity 2.0: A desktop app to orchestrate multiple autonomous agents working in parallel across independent projects.
  • Antigravity CLI: A terminal interface designed for command-line workflows and headless execution.
  • Antigravity IDE: An editor for developers who want to write code directly alongside an agent.
  • Antigravity SDK: A Python library for building and deploying your own custom agents that use the Antigravity Harness.

#### Quick Comparison

Feature

Antigravity 2.0

Antigravity CLI

Antigravity IDE

Antigravity SDK

Interface

Desktop App

Terminal (TUI)

Python Code

Best For

Multiple simultaneous tasks

Command-line / Headless

Directly editing code

Building custom agents

The Four Surfaces of Antigravity

1. Antigravity 2.0

The default recommendation. Manages tasks across multiple projects at the same time.

Antigravity 2.0 is a standalone desktop application. It is designed to let you run multiple tasks without blocking your main workspace. You can easily switch between and monitor different projects from one screen. You can also schedule tasks to run on a regular schedule to check code quality or find outdated packages.

2. Antigravity CLI

For terminal workflows and headless execution.

Built in Go for speed, the Antigravity CLI is for those who prefer to work in the terminal with fast, keyboard-driven navigation and simple shortcuts. You can start background agents using terminal commands without locking up your active command-line window. Choose the CLI if you need headless execution (such as working over SSH or inside remote containers).

3. Antigravity IDE

For developers who want to see and edit the code directly.

The IDE surface puts agents directly inside your current workspace. This is the best choice if you want to see exactly what code the agent is editing and accept or reject changes line-by-line. With built-in debugging, the agent can see runtime errors and offer a one-click fix right in your editor.

4. Antigravity SDK (Python)

Best for: Writing custom agent logic and automated pipelines.

lang-py

Loading...

import asyncio from google.antigravity import Agent, LocalAgentConfig async def main(): config = LocalAgentConfig( system_instructions="You are an expert assistant for codebase navigation.", # api_key="your_api_key_here", ) async with Agent(config) as agent: response = await agent.chat("What files are in the current directory?") print(await response.text()) async def run(): await main() if __name__ == "__main__": asyncio.run(run())

The Google Antigravity SDK is a Python library that lets you build your own custom agents from scratch. Because it runs on the same shared harness, you get direct access to the exact same tools and rules that power Google’s official Antigravity tools. You can write an agent locally and deploy it to Google Cloud with zero code changes.

Summary

While each interface looks different, they all run on the same underlying agent harness. No matter which of the Antigravity surfaces you choose, you get support for plugins , skills , and more. Your agents have access to the same core logic, so pick the one that works best for your project. For guides and documentation, visit antigravity.google , and when you’re ready to get started, visit the Antigravity Download Page .

Posted in

  • Developers & Practitioners

AI may generate inaccurate information. Please verify important content.