From 6b1c8c73ee4c254ba6a750f1126e5e83ba58ac51 Mon Sep 17 00:00:00 2001 From: lamek Date: Sat, 6 Jun 2026 02:49:32 +0000 Subject: [PATCH 1/2] Reorganize AI documentation for Antigravity --- firebase.json | 5 +- sites/docs/src/content/ai/antigravity-cli.md | 63 ++++++ .../src/content/{tools => ai}/antigravity.md | 14 +- .../docs/src/content/ai/coding-assistants.md | 36 ++-- sites/docs/src/content/ai/create-with-ai.md | 58 ++--- .../src/content/ai/gemini-cli-extension.md | 203 ------------------ .../src/content/reference/create-new-app.md | 2 +- sites/docs/src/content/resources/faq.md | 2 +- sites/docs/src/content/tools/hot-reload.md | 4 +- sites/docs/src/data/sidenav/ai.yml | 6 +- sites/docs/src/data/sidenav/default.yml | 2 - 11 files changed, 115 insertions(+), 280 deletions(-) create mode 100644 sites/docs/src/content/ai/antigravity-cli.md rename sites/docs/src/content/{tools => ai}/antigravity.md (85%) delete mode 100644 sites/docs/src/content/ai/gemini-cli-extension.md diff --git a/firebase.json b/firebase.json index 21c0f11a697..48d69aad518 100644 --- a/firebase.json +++ b/firebase.json @@ -33,9 +33,10 @@ { "source": "/ai-best-practices/:rest*", "destination": "/ai/best-practices/:rest*", "type": 301 }, { "source": "/ai-toolkit", "destination": "/ai/ai-toolkit", "type": 301 }, { "source": "/ai-toolkit/:rest*", "destination": "/ai/ai-toolkit/:rest*", "type": 301 }, - { "source": "/ai/flutter-ext-for-gemini", "destination": "/ai/gemini-cli-extension", "type": 301 }, + { "source": "/ai/flutter-ext-for-gemini", "destination": "/ai/antigravity-cli", "type": 301 }, + { "source": "/ai/gemini-cli-extension", "destination": "/ai/antigravity-cli", "type": 301 }, { "source": "/ai/best-practices/tool-calls-aka-function-calls", "destination": "/ai/best-practices/tool-calls", "type": 301 }, - { "source": "/ai/antigravity", "destination": "/ai/coding-assistants", "type": 301 }, + { "source": "/tools/antigravity", "destination": "/ai/antigravity", "type": 301 }, { "source": "/ai/gemini-code-assist", "destination": "/ai/coding-assistants", "type": 301 }, { "source": "/ai/firebase-ai-logic", "destination": "https://firebase.google.com/docs/ai-logic/get-started?platform=flutter", "type": 301 }, { "source": "/android-release", "destination": "/deployment/android", "type": 301 }, diff --git a/sites/docs/src/content/ai/antigravity-cli.md b/sites/docs/src/content/ai/antigravity-cli.md new file mode 100644 index 00000000000..bffdd8909fd --- /dev/null +++ b/sites/docs/src/content/ai/antigravity-cli.md @@ -0,0 +1,63 @@ +--- +title: Antigravity CLI +shortTitle: CLI +sidenav: ai +description: Learn how to use the Antigravity CLI for Dart and Flutter. +--- + +## Introduction + +[Antigravity CLI][] (using the executable command `agy`) is a terminal-based interface (TUI) for the **Antigravity 2.0** agentic coding assistant. It connects directly to your workspace and leverages the **Dart and Flutter MCP server** to help you build, modify, test, and release Flutter applications from the command line. + +For individual developers, the Antigravity CLI replaces the legacy Gemini CLI. + +[Antigravity CLI]: https://antigravity.google/docs/cli + +## Installation + +Install the Antigravity CLI on your machine by running the appropriate command for your platform: + +### macOS and Linux +```bash +curl -fsSL https://antigravity.google/install.sh | bash +``` + +### Windows (PowerShell) +```powershell +irm https://antigravity.google/install.ps1 | iex +``` + +### Windows (Command Prompt) +```cmd +winget install Google.AntigravityCLI +``` + +After installation, verify that the tool is available on your path by running: + +```console +$ agy --version +agy version 2.0.0 +``` + +## Migration from Gemini CLI + +If you previously used the Gemini CLI or Gemini CLI extension for Flutter, migrating to the Antigravity CLI is straightforward. + +### Automatic Migration +The first time you run `agy` in your terminal, the tool checks for existing Gemini configuration files (such as `~/.gemini/config/mcp_config.json` or legacy environment variables). If found, the tool asks if you would like to automatically migrate your settings, preferences, and API configuration. + +### Manual Migration +If you want to migrate your plugins and history manually, or if you skipped the automated setup, run the import plugin tool command: + +```bash +agy plugin import gemini +``` + +This command parses your local Gemini configuration and copies its configurations over to your active Antigravity profile. + +## Workspace configuration and rules + +Like the legacy Gemini CLI tool, Antigravity CLI respects custom development guidelines and configurations stored in your workspace directory: + +- **Local rules**: You can place rules files in your project directory (such as `.agents/skills/` or `AGENTS.md`) to instruct the agent on specific coding style guidelines or architectural patterns. Note that Antigravity CLI also supports backward compatibility with legacy `GEMINI.md` files; however, we recommend renaming it to `AGENTS.md`. +- **Global configuration file**: Antigravity CLI stores global settings and configured MCP servers in `~/.antigravity/` (e.g., `~/.antigravity/mcp_config.json`). diff --git a/sites/docs/src/content/tools/antigravity.md b/sites/docs/src/content/ai/antigravity.md similarity index 85% rename from sites/docs/src/content/tools/antigravity.md rename to sites/docs/src/content/ai/antigravity.md index 48241b852d2..b132385657d 100644 --- a/sites/docs/src/content/tools/antigravity.md +++ b/sites/docs/src/content/ai/antigravity.md @@ -1,18 +1,18 @@ --- title: Google Antigravity shortTitle: Antigravity -description: Learn about the Antigravity agentic coding assistant. +sidenav: ai +description: Learn about Google Antigravity agentic coding tools. --- ## Introduction -[Antigravity][ag] is a powerful agentic coding assistant -and IDE for building apps, including Flutter apps. -You can pair with Antigravity to solve your -coding tasks, create new codebases, modify existing ones, -and answer questions. +Google Antigravity is a suite of agentic development tools designed for building apps, including Flutter apps. The suite includes: -[ag]: https://antigravity.google/ +* **Antigravity 2.0**: The core agentic assistant experience, driven via a Terminal User Interface (TUI) or Command-Line Interface (CLI). +* **Antigravity IDE**: The focused editor experience featuring an integrated agent panel. + +This page describes the Antigravity IDE. For details on using the command-line tool, see the [Antigravity CLI](/ai/antigravity-cli) page. To learn some of what Antigravity is capable of, watch this talk from Google I/O 2026. diff --git a/sites/docs/src/content/ai/coding-assistants.md b/sites/docs/src/content/ai/coding-assistants.md index 33004fee4f9..47f8dd54f05 100644 --- a/sites/docs/src/content/ai/coding-assistants.md +++ b/sites/docs/src/content/ai/coding-assistants.md @@ -2,19 +2,24 @@ title: AI Coding Assistants sidenav: ai description: > - Learn how to use AI-powered coding assistants like Antigravity and Gemini CLI + Learn how to use AI-powered coding assistants like Antigravity to accelerate your Flutter development. --- AI tools are not only features in your app, but can also be powerful assistants in your development workflow. -Tools like Antigravity and Gemini CLI can help you write code faster, +Tools like Antigravity can help you write code faster, understand complex concepts, and reduce boilerplate. ## Antigravity -[Antigravity](https://antigravity.google/) is an in-IDE AI agent that can read and write code, run terminal commands, and help you build complex features. Some of its capabilities include: +[Antigravity](https://antigravity.google/) is a suite of agentic development tools that includes: + +* **Antigravity 2.0**: The core agentic assistant experience (TUI/CLI-driven). +* **Antigravity IDE**: The focused editor experience featuring an integrated agent panel. + +Some of Antigravity's capabilities include: * **Agentic capabilities**: Unlike chat-based assistants, Antigravity can proactively edit files and run terminal commands to complete tasks. * **Complex reasoning**: It can plan and execute multi-step workflows which makes it suitable for larger refactors or feature implementations. @@ -25,24 +30,13 @@ understand complex concepts, and reduce boilerplate. title="Flutter + Antigravity in 10 minutes"> -## Gemini CLI - -The [Gemini CLI](https://geminicli.com/) is a command-line AI workflow tool. It allows you to interact with Gemini models for a variety of tasks without leaving your development environment. You can use it to: - -* Quickly scaffold a new Flutter widget, Dart function, or a complete app. -* Use MCP server tools, such as the Dart and Flutter MCP server. -* Automate tasks like committing and pushing changes to a Git repository. - -To get started, visit the [Gemini CLI](https://geminicli.com/) website, or try this [Gemini CLI codelab](https://codelabs.developers.google.com/gemini-cli-hands-on). - -## Flutter extension for Gemini CLI - -The [Flutter extension for Gemini CLI]({{site.github}}/gemini-cli-extensions/flutter) combines the [Dart and Flutter MCP server]({{site.dart-site}}/tools/mcp-server) with rules and commands. It uses the default set of [AI rules for Flutter and Dart](/ai/ai-rules), adds commands like `/create-app` and `/modify` to make structured changes to your app, and automatically configures the [Dart and Flutter MCP server]({{site.dart-site}}/tools/mcp-server). +To get started with the editor experience, see the [Antigravity IDE](/ai/antigravity) page. +To get started with the command-line tool, see the [Antigravity CLI](/ai/antigravity-cli) page. -You can install it by running the following command: +## Gemini CLI (Legacy) -```bash -gemini extensions install https://github.com/gemini-cli-extensions/flutter -``` +The [Gemini CLI](https://geminicli.com/) is a command-line AI workflow tool. +For individual developers, it is superseded by the new [Antigravity CLI](/ai/antigravity-cli). +It continues to be supported for Gemini Enterprise users. -To learn more, check out [Flutter extension for Gemini CLI](/ai/gemini-cli-extension). +For more details about Gemini CLI, visit the [Gemini CLI](https://geminicli.com/) website. diff --git a/sites/docs/src/content/ai/create-with-ai.md b/sites/docs/src/content/ai/create-with-ai.md index ae26669ea1c..1a341b82298 100644 --- a/sites/docs/src/content/ai/create-with-ai.md +++ b/sites/docs/src/content/ai/create-with-ai.md @@ -18,13 +18,13 @@ You can integrate AI-powered features like natural language understanding and content generation directly into your Flutter app using powerful SDKs, like the Firebase SDK for Generative AI. -You can also use AI tools, such as Gemini Code Assist and Gemini CLI, +You can also use AI tools, such as Gemini Code Assist and Antigravity CLI, to help with code generation and scaffolding. These tools are powered by the Dart and Flutter MCP server, which provides AI with a rich context about your codebase. -The Flutter Extension for Gemini CLI makes it easy to leverage official rules, +The Antigravity CLI makes it easy to leverage official rules, the MCP server, and custom commands for building your app. Additionally, rules files help fine-tune the AI's behavior @@ -61,14 +61,14 @@ resources: ## AI development tools AI isn't only a feature in your app, but can also be a powerful assistant in -your development workflow. Tools like [Antigravity][], -[Gemini Code Assist][], [Gemini CLI][], [Claude Code][], +your development workflow. Tools like [Antigravity][], +[Gemini Code Assist][], [Antigravity CLI][], [Claude Code][], [Cursor][], and [Windsurf][] can help you write code faster, understand complex concepts, and reduce boilerplate. -[Antigravity]: /ai/coding-assistants +[Antigravity]: /ai/antigravity [Gemini Code Assist]: /ai/coding-assistants -[Gemini CLI]: /ai/coding-assistants +[Antigravity CLI]: /ai/antigravity-cli [Claude Code]: https://www.claude.com/product/claude-code [Cursor]: https://cursor.com/ [Windsurf]: https://windsurf.com/ @@ -121,9 +121,12 @@ To get started, check out the ### Antigravity -[Antigravity](https://antigravity.google/) is an in-IDE AI agent that can read and write code, run -terminal commands, and help you build complex features. Some of its capabilities -include: +[Antigravity](https://antigravity.google/) is a suite of agentic development tools that includes: + +* **Antigravity 2.0**: The core agentic assistant experience (TUI/CLI-driven). +* **Antigravity IDE**: The focused editor experience featuring an integrated agent panel. + +Capabilities include: * **Agentic capabilities**: Unlike chat-based assistants, Antigravity can proactively edit files and run terminal commands to complete tasks. @@ -137,7 +140,7 @@ include: title="Flutter + Antigravity in 10 minutes"> -To learn more, check out the [AI Coding Assistants](/ai/coding-assistants) guide. +To learn more, check out the [Antigravity IDE](/ai/antigravity) guide. ### Gemini Code Assist @@ -154,40 +157,17 @@ understanding of your project's codebase and can help you with: To learn more, check out the [AI Coding Assistants](/ai/coding-assistants) guide. -### Gemini CLI +### Antigravity CLI -The [Gemini CLI](https://geminicli.com/) is a command-line AI workflow tool. It allows you to interact -with Gemini models for a variety of tasks without leaving your development -environment. You can use it to: +The [Antigravity CLI](/ai/antigravity-cli) is a terminal-based interface (TUI) for the +Antigravity 2.0 agentic coding assistant (`agy`). It allows you to: * Quickly scaffold a new Flutter widget, Dart function, or a complete app. -* Use MCP server tools, such as the Dart and Flutter MCP server -* Automate tasks like committing and pushing changes to a Git repository - -To get started, visit the [Gemini CLI](https://geminicli.com/) website, or try this -[Gemini CLI codelab][]. - -[Gemini CLI codelab]: https://codelabs.developers.google.com/gemini-cli-hands-on - -#### Flutter extension for Gemini CLI - -The [Flutter extension for Gemini CLI][flutter-extension] combines the -[Dart and Flutter MCP server][dart-mcp-dart-docs] with rules and commands. -It uses the default set of [AI rules for Flutter and Dart][], -adds commands like `/create-app` and `/modify` to make -structured changes to your app, and automatically configures the -[Dart and Flutter MCP server][dart-mcp-dart-docs]. - -You can install it by running the following command: - -```bash -gemini extensions install https://github.com/gemini-cli-extensions/flutter -``` +* Use MCP server tools, such as the Dart and Flutter MCP server. +* Automate tasks like committing and pushing changes to a Git repository. -To learn more, check out -[Flutter extension for Gemini CLI](/ai/gemini-cli-extension). +To learn more, check out the [Antigravity CLI](/ai/antigravity-cli) guide. -[flutter-extension]: {{site.github}}/gemini-cli-extensions/flutter [dart-mcp-dart-docs]: /ai/mcp-server [AI rules for Flutter and Dart]: /ai/ai-rules diff --git a/sites/docs/src/content/ai/gemini-cli-extension.md b/sites/docs/src/content/ai/gemini-cli-extension.md deleted file mode 100644 index 10636815507..00000000000 --- a/sites/docs/src/content/ai/gemini-cli-extension.md +++ /dev/null @@ -1,203 +0,0 @@ ---- -title: Flutter extension for Gemini CLI -sidenav: ai -description: > - Learn how to use the Flutter extension for Gemini CLI - to make structured changes to your app at the command line - using the Dart and Flutter MCP server. ---- - -You might be familiar with Gemini CLI, -a command-line AI workflow tool that enables you -to interact with Gemini AI models without leaving -your development environment. -(If you aren’t familiar with Gemini, you can learn more -by working through the [Hands on with Gemini][] codelab.) - -[Hands on with Gemini]: {{site.codelabs}}/gemini-cli-hands-on - -AI agents are changing the way we build Flutter apps by -assisting with tasks like feature prototyping, code reviews, -as well as writing and running tests. -To use an AI agent effectively, you need to provide it with -context and access to tools to help it become a productive -Flutter coding assistant. -This is where the Flutter Extension for Gemini CLI comes in. -Gemini CLI extensions allow you to build integrations with -Gemini CLI and your tools, -and the Flutter extension expands on these capabilities. - -The Flutter Extension for Gemini CLI provides commands -to accelerate app development, follows explicit rules to -write high-quality code following Dart and Flutter best practices, -and runs tools from the Dart and Flutter MCP server to directly -access Dart and Flutter’s developer tools. You spend less time -on setup and more time building high quality Flutter apps. - -The following video showcases -[how to build multiplatform apps with Gemini CLI][gemini-cli-video]: - - - -[gemini-cli-video]: https://youtu.be/RZPkE5sllck?si=lM0sGs-V6nx7Tw6T - -## Prerequisites - -1. Install Gemini CLI 0.4.0 or later. - You can do this with npm or brew, depending on your platform, - preference, and system configuration. - -2. Install the Flutter SDK, which includes the Dart SDK. - If Flutter is already installed, - make sure that you have the latest versions of - Flutter and Dart by running flutter upgrade. - -3. Install Git and make sure it’s available on your PATH. - -## Get started - -:::experimental -The Flutter extension for Gemini CLI is in -alpha and is likely to change. -::: - -Once the prerequisites are satisfied, install the Flutter -extension for Gemini CLI by using one of the following commands: - -1. To install the current version, run the following: - - ```console - gemini extensions install https://github.com/gemini-cli-extensions/flutter - ``` - -2. To install the current version and ensure that future - updates are automatically installed, use the `auto-update` tag: - - ```console - gemini extensions install https://github.com/gemini-cli-extensions/flutter.git --auto-update - ``` -After asking if you are sure you want to proceed, -you will see a message that the Flutter extension is installed and enabled. - -3. You can manage the extension with the following commands: - - - Update to the latest version: - - ```console - gemini extensions update flutter - ``` - - - Uninstall the extension: - - ```console - gemini extensions uninstall flutter - ``` - -## Available commands - -After installing the extension, -these commands are available when you open -a new Gemini CLI session: - -* `/create-app` - Guides you through bootstrapping a new - Flutter project with best practices. -* `/create-package` - Guides you through bootstrapping - a new Dart package with best practices. -* `/modify` - Manages a structured modification session - with automated planning. -* `/commit` - Automates pre-commit checks and generates - a descriptive commit message. - -## Create an app - -You can create a new application using the `/create-app` command. -This command bootstraps a brand-new, production-ready Flutter app. -It goes beyond flutter create by asking for your app’s purpose, -setting up recommended linter rules, -and generating detailed `DESIGN.md` and `IMPLEMENTATION.md` -files for your review before any code is written. - -```console -/create-app -``` - -The `DESIGN.md` file is a design document for the app; -it specifies the problems that the app solves and provides -technical details about how it will work. You can edit -this file before you continue with the implementation steps, -allowing you to guide Gemini to build the exact app that you’re looking for. - -Once the design is ready, `/create-app` generates an -`IMPLEMENTATION.md` file, a step-by-step implementation plan, -so that it can iteratively work on feature implementation. -It keeps a record of its progress, so you can pause and restart. -By default, `/create-app` splits the plan up into 3–5 phases, -where each phase is a logical stopping point. -After each phase, Gemini will analyze and format the code, -run tests, and commit the changes. It also updates this file -after it completes a phase in the Journal section. - -## Implement features from the plan - -After you’ve set up your project, you’re ready to implement -the features in your implementation plan using the generated -`IMPLEMENTATION.md` file. Each feature is implemented separately, -as outlined in this file. Once it finishes implementing a feature, -the Flutter extension will mark it as complete. - -Before moving to the next phase, the extension asks for your approval. -You can enter the prompt "looks good" to start generating code. - -## Modify - -To make changes to existing code, the `/modify` command -initiates a guided development session. It asks for your goals, -offers to create a new branch, and generates a `MODIFICATION_PLAN.md` -design doc outlining the proposed modifications and a phased implementation plan. - -```console -/modify -``` - -## Clean up and commit - -The final step is to commit the changes using `/commit`. -This command prepares your changes before committing them with Git. -It automatically runs `dart fix` and `dart format`, -runs the analyzer and tests, and then generates a descriptive -commit message based on the changes for you to approve. - -## Fully loaded with best practices - -Every interactive chat session includes rules containing -best practices for Flutter and Dart development. -These rules ensure that Gemini writes high-quality Dart and Flutter code, -interacts with MCP server tools correctly, -and follows best practices such as creating unit tests, -writing documentation, ensuring accessibility, and more. - -## Access to development tools with the Flutter and Dart MCP server - -The Dart and Flutter MCP server is automatically configured -when you install the Flutter Extension for Gemini CLI. -This allows Gemini CLI and other AI agents to perform common -development tasks. For example: - -* Analyze and fix errors in your project’s code. -* Introspect and interact with your running application - (such as trigger a hot reload, get the selected widget, - fetch runtime errors). -* Search `pub.dev` for the best package for your use case. -* Manage package dependencies in your `pubspec.yaml` file. -* Run tests and analyze the results. - -## Resources - -As previously mentioned, this extension is in alpha. -If you find a bug, please [file an issue][]. - -You also might want to check out the -[Gemini CLI extension][] repo. - -[file an issue]: {{site.github}}/gemini-cli-extensions/flutter/issues -[Gemini CLI extension]: {{site.github}}/gemini-cli-extensions/flutter diff --git a/sites/docs/src/content/reference/create-new-app.md b/sites/docs/src/content/reference/create-new-app.md index d38a73300c7..c99a8ace287 100644 --- a/sites/docs/src/content/reference/create-new-app.md +++ b/sites/docs/src/content/reference/create-new-app.md @@ -304,7 +304,7 @@ check out the [IntelliJ for Flutter reference][ij-more]. To create a Flutter app with Antigravity, you first need to install and set up Antigravity as described on the -[Antigravity tools page](/tools/antigravity). +[Antigravity page](/ai/antigravity). Then follow these steps: 1.

Open Antigravity and create a Workspace

diff --git a/sites/docs/src/content/resources/faq.md b/sites/docs/src/content/resources/faq.md index 9e11e557e20..48df268371d 100644 --- a/sites/docs/src/content/resources/faq.md +++ b/sites/docs/src/content/resources/faq.md @@ -170,7 +170,7 @@ of the many editors that support [editing Dart][]. [Android Studio]: {{site.android-dev}}/studio [Android Studio/IntelliJ]: /tools/android-studio -[Antigravity]: /tools/antigravity +[Antigravity]: /ai/antigravity [editing Dart]: {{site.dart-site}}/tools [editor configuration]: /tools/editors [IntelliJ IDEA]: https://www.jetbrains.com/idea/ diff --git a/sites/docs/src/content/tools/hot-reload.md b/sites/docs/src/content/tools/hot-reload.md index 59fbc45340f..6a628260abe 100644 --- a/sites/docs/src/content/tools/hot-reload.md +++ b/sites/docs/src/content/tools/hot-reload.md @@ -18,10 +18,10 @@ A demo of hot reload in DartPad ## How to perform a hot reload -If you are using an AI coding assistant like [Google Antigravity](/tools/antigravity), +If you are using an AI coding assistant like [Google Antigravity](/ai/antigravity), you can use Agent mode to automatically hot reload your running application as soon as you prompt the agent to apply changes. -For details, see [Agentic Hot Reload](/tools/antigravity#agentic-hot-reload). +For details, see [Agentic Hot Reload](/ai/antigravity#agentic-hot-reload). To hot reload a Flutter app manually: diff --git a/sites/docs/src/data/sidenav/ai.yml b/sites/docs/src/data/sidenav/ai.yml index d7643f3bc13..d2230aafa16 100644 --- a/sites/docs/src/data/sidenav/ai.yml +++ b/sites/docs/src/data/sidenav/ai.yml @@ -15,8 +15,10 @@ children: - title: Overview permalink: /ai/coding-assistants - - title: Flutter extension for Gemini CLI - permalink: /ai/gemini-cli-extension + - title: Antigravity IDE + permalink: /ai/antigravity + - title: Antigravity CLI + permalink: /ai/antigravity-cli - title: Developer experience permalink: /ai/best-practices/developer-experience diff --git a/sites/docs/src/data/sidenav/default.yml b/sites/docs/src/data/sidenav/default.yml index 86951c92c4c..26152d41fe1 100644 --- a/sites/docs/src/data/sidenav/default.yml +++ b/sites/docs/src/data/sidenav/default.yml @@ -646,8 +646,6 @@ permalink: /tools/android-studio - title: Visual Studio Code permalink: /tools/vs-code - - title: Antigravity - permalink: /tools/antigravity - title: DevTools permalink: /tools/devtools children: From 0d3129d20d07926bd4fd83fcbaef4f8928ac2290 Mon Sep 17 00:00:00 2001 From: lamek Date: Sun, 7 Jun 2026 13:57:52 +0000 Subject: [PATCH 2/2] Update Antigravity CLI config terms and GEMINI.md grammar --- sites/docs/src/content/ai/antigravity-cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/docs/src/content/ai/antigravity-cli.md b/sites/docs/src/content/ai/antigravity-cli.md index bffdd8909fd..5d519c8d57c 100644 --- a/sites/docs/src/content/ai/antigravity-cli.md +++ b/sites/docs/src/content/ai/antigravity-cli.md @@ -59,5 +59,5 @@ This command parses your local Gemini configuration and copies its configuration Like the legacy Gemini CLI tool, Antigravity CLI respects custom development guidelines and configurations stored in your workspace directory: -- **Local rules**: You can place rules files in your project directory (such as `.agents/skills/` or `AGENTS.md`) to instruct the agent on specific coding style guidelines or architectural patterns. Note that Antigravity CLI also supports backward compatibility with legacy `GEMINI.md` files; however, we recommend renaming it to `AGENTS.md`. -- **Global configuration file**: Antigravity CLI stores global settings and configured MCP servers in `~/.antigravity/` (e.g., `~/.antigravity/mcp_config.json`). +- **Local rules**: You can place rules files in your project directory (such as `.agents/skills/` or `AGENTS.md`) to instruct the agent on specific coding style guidelines or architectural patterns. Note that Antigravity CLI also supports backward compatibility with legacy `GEMINI.md` file; however, we recommend renaming it to `AGENTS.md`. +- **Global configuration directory**: Antigravity CLI stores global settings and configured MCP servers in `~/.antigravity/` (e.g., `~/.antigravity/mcp_config.json`).