From be564fb575e6e81fd0d130647d18a8bda6f57f9d Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 13:57:53 +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 6bc35d1..fb6b1e1 100644 --- a/README.md +++ b/README.md @@ -114,29 +114,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.1 https://github.com/gemini-cli-extensions/alloydb-omni.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 alloydb-omni/skills/* ~/.gemini/antigravity-cli/skills/ +agy plugins install https://github.com/gemini-cli-extensions/alloydb-omni ``` -**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 51695dbb300e52261e3fcee7ccfcf7a35b03c2d7 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 14:02:38 +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 fb6b1e1..7db38c1 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,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/alloydb-omni +agy plugin install https://github.com/gemini-cli-extensions/alloydb-omni ``` **2. Set env vars:**