From 74a22c6278cd3217e2ef3b5e4dbd961400e27a3c Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 13:57:47 +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 0d186d8..b5dc368 100644 --- a/README.md +++ b/README.md @@ -127,29 +127,17 @@ _(Tip: Antigravity 2.0 automatically discovers skills in these directories at th #### Antigravity CLI -**1. Clone the Repo:** - -```bash -git clone --branch 0.2.0 https://github.com/gemini-cli-extensions/cloud-sql-sqlserver.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 cloud-sql-sqlserver/skills/* ~/.gemini/antigravity-cli/skills/ +agy plugins install https://github.com/gemini-cli-extensions/cloud-sql-sqlserver ``` -**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 189015d637c1daee0adb9d506e1ba72e85137d8b Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 14:02:34 +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 b5dc368..c70e7c5 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,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/cloud-sql-sqlserver +agy plugin install https://github.com/gemini-cli-extensions/cloud-sql-sqlserver ``` **2. Set env vars:**