From 3ade1893dde671e956a38b3eb55eb6eaf399d3ac Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 13:58:31 +0530 Subject: [PATCH 1/2] docs: document Antigravity CLI remote plugin install Replace the manual clone-and-copy steps for the Antigravity CLI with the direct `agy plugins install` command from a remote GitHub repository. Reference: https://github.com/GoogleCloudPlatform/data-agent-kit/pull/46 --- README.md | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 076d69b..b83e305 100644 --- a/README.md +++ b/README.md @@ -125,29 +125,17 @@ _(Tip: Antigravity 2.0 automatically discovers skills in these directories at th #### Antigravity CLI -**1. Clone the Repo:** - -```bash -git clone --branch 0.3.2 https://github.com/gemini-cli-extensions/firestore-native.git -``` - -**2. Install the skills:** +You can install plugins directly from a remote GitHub repository. -Choose a location for the skills: -- **Global (all workspaces):** `~/.gemini/antigravity-cli/skills/` -- **Workspace-specific:** `/.agents/skills/` - -Copy the skill folders from the cloned repository's `skills/` directory to your chosen location: +**1. Install the plugin:** ```bash -cp -R firestore-native/skills/* ~/.gemini/antigravity-cli/skills/ +agy plugins install https://github.com/gemini-cli-extensions/firestore-native ``` -**3. Set env vars:** +**2. Set env vars:** Set your environment vars as described in the [configuration section](#configuration). -_(Tip: Antigravity CLI automatically discovers skills in these directories at the start of a session. You can verify they are active by running the `/skills` command in your active session.)_ -
From 14631529268404bf57d38488ae06be45666ab0bd Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 14:03:02 +0530 Subject: [PATCH 2/2] docs: use singular `agy plugin install` Correct the Antigravity CLI command from `plugins install` to `plugin install`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b83e305..f1875c5 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ You can install plugins directly from a remote GitHub repository. **1. Install the plugin:** ```bash -agy plugins install https://github.com/gemini-cli-extensions/firestore-native +agy plugin install https://github.com/gemini-cli-extensions/firestore-native ``` **2. Set env vars:**