From f43d5ee6675c7914bb321737d7856276a3604df5 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 13:58:08 +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 6097bc4..c6bf471 100644 --- a/README.md +++ b/README.md @@ -116,29 +116,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.3 https://github.com/gemini-cli-extensions/oracledb.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 oracledb/skills/* ~/.gemini/antigravity-cli/skills/ +agy plugins install https://github.com/gemini-cli-extensions/oracledb ``` -**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 0dfaba7615388c0f0209f18230c0666e59a61b9f Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Wed, 1 Jul 2026 14:02:49 +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 c6bf471..70ca2e1 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,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/oracledb +agy plugin install https://github.com/gemini-cli-extensions/oracledb ``` **2. Set env vars:**