From 6a6afd1808e9d5cd54ba728898bbd301fd7b9bb4 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 14:51:14 +0530 Subject: [PATCH 1/8] Antigravity readme fix --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4177f63..118520c 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,21 @@ _(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify
Antigravity +You can install skills using the `npx skills` command or manually by copying files. + +#### Option A: Install via Skills CLI + +Run the following command in your terminal to automatically download and register all skills for Antigravity: + +```bash +npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql/tree/0.4.0 -a antigravity -y +``` + +**2. Set env vars:** +Set your environment vars as described in the [configuration section](#configuration). + +#### Option B: Manual Installation + **1. Clone the Repo:** ```bash @@ -208,7 +223,7 @@ cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity/skills/ **3. Set env vars:** Set your environment vars as described in the [configuration section](#configuration). -_(Tip: Antigravity automatically discovers skills in these directories at the start of a session.)_ +_(Tip: Antigravity 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 5991ace696f6bef72c8d0cda20f7bc180e4ad839 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 14:55:22 +0530 Subject: [PATCH 2/8] fix --- README.md | 93 ++++++++++++++++++------------------------------------- 1 file changed, 30 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index 118520c..8b6db3c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > [!NOTE] > Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0). -This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Gemini CLI](https://google-gemini.github.io/gemini-cli/), Claude Code, and Codex, to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. +This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Antigravity CLI](https://antigravity.google/product/antigravity-cli), Claude Code, and Codex, to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. > [!IMPORTANT] > **We Want Your Feedback!** @@ -19,10 +19,9 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P - [Getting Started](#getting-started) - [Configuration](#configuration) - [Installation & Usage](#installation--usage) - - [Gemini CLI](#gemini-cli) + - [Antigravity CLI](#antigravity-cli) - [Claude Code](#claude-code) - [Codex](#codex) - - [Antigravity](#antigravity) - [Usage Examples](#usage-examples) - [Supported Skills](#supported-skills) - [Additional Agent Skills](#additional-agent-skills) @@ -40,10 +39,9 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P Before you begin, ensure you have the following: - One of these AI agents installed - - [Gemini CLI](https://github.com/google-gemini/gemini-cli) version **v0.6.0** or higher + - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher - [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher - [Codex](https://developers.openai.com/codex) **v0.117.0** or higher - - [Antigravity](https://antigravity.google) **v1.14.2** or higher - A Google Cloud project with the **Cloud SQL Admin API** enabled. - Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. - IAM Permissions: @@ -83,34 +81,46 @@ For the latest version, check the [releases page][releases].
-Gemini CLI +Antigravity CLI -**1. Install the extension:** + +You can install skills using the `npx skills` command or manually by copying files. + +#### Option A: Install via Skills CLI + +Run the following command in your terminal to automatically download and register all skills for Antigravity: ```bash -gemini extensions install https://github.com/gemini-cli-extensions/cloud-sql-postgresql +npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql/tree/0.4.0 -a antigravity -y ``` -During the installation, enter your environment vars as described in the [configuration section](#configuration). +**2. Set env vars:** +Set your environment vars as described in the [configuration section](#configuration). + +#### Option B: Manual Installation + +**1. Clone the Repo:** + +```bash +git clone --branch 0.4.0 https://github.com/gemini-cli-extensions/cloud-sql-postgresql.git +``` -**2. (Optional) Manage Configuration:** -To view or update your configuration in Gemini CLI: +**2. Install the skills:** -- Terminal: `gemini extensions config cloud-sql-postgresql [setting name] [--scope ]` -- Gemini CLI: `/extensions list` +Choose a location for the skills: +- **Global (all workspaces):** `~/.gemini/antigravity/skills/` +- **Workspace-specific:** `/.agents/skills/` -**3. Start the agent:** +Copy the skill folders from the cloned repository's `skills/` directory to your chosen location: ```bash -gemini +cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity/skills/ ``` -_(Tip: Run `/extensions list` to verify your configuration and active extensions.)_ +**3. Set env vars:** +Set your environment vars as described in the [configuration section](#configuration). -> [!WARNING] -> **Changing Instance & Database Connections** -> Currently, the database connection must be configured before starting the agent and can not be changed during a session. -> To save and resume conversation history in Gemini CLI use command: `/chat save ` and `/chat resume `. +_(Tip: Antigravity 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.)_
@@ -184,49 +194,6 @@ _(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify -
-Antigravity - -You can install skills using the `npx skills` command or manually by copying files. - -#### Option A: Install via Skills CLI - -Run the following command in your terminal to automatically download and register all skills for Antigravity: - -```bash -npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql/tree/0.4.0 -a antigravity -y -``` - -**2. Set env vars:** -Set your environment vars as described in the [configuration section](#configuration). - -#### Option B: Manual Installation - -**1. Clone the Repo:** - -```bash -git clone --branch 0.4.0 https://github.com/gemini-cli-extensions/cloud-sql-postgresql.git -``` - -**2. Install the skills:** - -Choose a location for the skills: -- **Global (all workspaces):** `~/.gemini/antigravity/skills/` -- **Workspace-specific:** `/.agents/skills/` - -Copy the skill folders from the cloned repository's `skills/` directory to your chosen location: - -```bash -cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity/skills/ -``` - -**3. Set env vars:** -Set your environment vars as described in the [configuration section](#configuration). - -_(Tip: Antigravity 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.)_ - -
- ## Usage Examples From b73e3fe229d2142d0d379bb4be488ceb0b0e96e3 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 15:21:52 +0530 Subject: [PATCH 3/8] readme fix --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8b6db3c..0a776eb 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P - [Getting Started](#getting-started) - [Configuration](#configuration) - [Installation & Usage](#installation--usage) - - [Antigravity CLI](#antigravity-cli) + - [Antigravity](#antigravity) - [Claude Code](#claude-code) - [Codex](#codex) - [Usage Examples](#usage-examples) @@ -39,9 +39,11 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P Before you begin, ensure you have the following: - One of these AI agents installed - - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher - - [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher - - [Codex](https://developers.openai.com/codex) **v0.117.0** or higher + - Antigravity + - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher + - [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher. + - [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher. + - [Codex](https://developers.openai.com/codex) **v0.117.0** or higher. - A Google Cloud project with the **Cloud SQL Admin API** enabled. - Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. - IAM Permissions: @@ -81,8 +83,11 @@ For the latest version, check the [releases page][releases].
-Antigravity CLI +Antigravity +You can use either of these two agents for Antigravity: +- [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher +- [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher. You can install skills using the `npx skills` command or manually by copying files. From a9e9ec56c0e356c21595309b46778d222b46f179 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 15:29:52 +0530 Subject: [PATCH 4/8] add details for skills npx --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 0a776eb..3101bd4 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > [!NOTE] > Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0). -This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Antigravity CLI](https://antigravity.google/product/antigravity-cli), Claude Code, and Codex, to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. +This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Antigravity](https://antigravity.google/), [Claude Code](https://claude.com/product/claude-code) and [Codex](https://chatgpt.com/codex/), to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. > [!IMPORTANT] > **We Want Your Feedback!** @@ -89,21 +89,6 @@ You can use either of these two agents for Antigravity: - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher - [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher. -You can install skills using the `npx skills` command or manually by copying files. - -#### Option A: Install via Skills CLI - -Run the following command in your terminal to automatically download and register all skills for Antigravity: - -```bash -npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql/tree/0.4.0 -a antigravity -y -``` - -**2. Set env vars:** -Set your environment vars as described in the [configuration section](#configuration). - -#### Option B: Manual Installation - **1. Clone the Repo:** ```bash @@ -201,6 +186,21 @@ _(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify +## Installing using skills package. + +You can install skills using the `npx skills` command. + +Run the following command in your terminal to automatically download and register the skills: + +```bash +npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql/tree/0.4.0 +``` + +For detailed info check out the [Skills npm package](https://www.npmjs.com/package/skills). + +**2. Set env vars:** +Set your environment vars as described in the [configuration section](#configuration). + ## Usage Examples Interact with Cloud SQL for PostgreSQL using natural language: From 34da9b9da46d5975d1859f0d151d18e4afe3589c Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 15:31:54 +0530 Subject: [PATCH 5/8] small fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3101bd4..3eb0c59 100644 --- a/README.md +++ b/README.md @@ -184,8 +184,6 @@ _(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify
- - ## Installing using skills package. You can install skills using the `npx skills` command. @@ -201,6 +199,8 @@ For detailed info check out the [Skills npm package](https://www.npmjs.com/packa **2. Set env vars:** Set your environment vars as described in the [configuration section](#configuration). + + ## Usage Examples Interact with Cloud SQL for PostgreSQL using natural language: From 0dd6ff9f3c2469c9014819a663384d3aad4b57cc Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 17:34:19 +0530 Subject: [PATCH 6/8] link checker fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3eb0c59..400cc06 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > [!NOTE] > Currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0). -This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Antigravity](https://antigravity.google/), [Claude Code](https://claude.com/product/claude-code) and [Codex](https://chatgpt.com/codex/), to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. +This repository provides a set of agent skills to interact with [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) instances. These skills can be used with various AI agents, including [Antigravity](https://antigravity.google/), [Claude Code](https://claude.com/product/claude-code) and [Codex](https://developers.openai.com/codex), to manage your databases, execute queries, explore schemas, and troubleshoot issues using natural language prompts. > [!IMPORTANT] > **We Want Your Feedback!** From 7611beb5de96a5c5b45e2318dadc0f971dc8aff7 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 17:51:43 +0530 Subject: [PATCH 7/8] link fix --- .lycheeignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.lycheeignore b/.lycheeignore index e25be66..c3fe010 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1 +1,2 @@ https://github.com/gemini-cli-extensions/cloud-sql-postgresql/compare/ +https://www.npmjs.com/package/skills From 21518c3fd61dee6156af1b007ed4f741db79c798 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Thu, 21 May 2026 18:21:30 +0530 Subject: [PATCH 8/8] agy docs fix --- README.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 400cc06..4041cd5 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,20 @@ You can use either of these two agents for Antigravity: - [Antigravity CLI](https://github.com/google-gemini/gemini-cli) version **v1.6.0** or higher - [Antigravity 2.0](https://antigravity.google/product/antigravity-2) version **v2.0.0** or higher. +> [!TIP] +> **Migrating from Gemini CLI?** +> If you previously installed this extension with `gemini extensions install`, you can convert it to an Antigravity plugin instead of reinstalling from scratch: +> +> - **On first launch of Antigravity CLI**, accept the Migration Options prompt to automatically convert your installed Gemini CLI extensions to Antigravity plugins. +> - **Or, from your terminal**, run: +> +> ```bash +> agy plugin import gemini +> ``` +> See the [official Gemini CLI → Antigravity migration guide](https://antigravity.google/docs/gcli-migration) for details on plugins, context files (`GEMINI.md` / `AGENTS.md`), and MCP server config differences (note: Antigravity uses `mcp_config.json` and the `serverUrl` field instead of `url`). + +#### Antigravity 2.0 (IDE) + **1. Clone the Repo:** ```bash @@ -110,7 +124,32 @@ cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity/skills/ **3. Set env vars:** Set your environment vars as described in the [configuration section](#configuration). -_(Tip: Antigravity 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.)_ +_(Tip: Antigravity 2.0 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.)_ + +#### Antigravity CLI + +**1. Clone the Repo:** + +```bash +git clone --branch 0.4.0 https://github.com/gemini-cli-extensions/cloud-sql-postgresql.git +``` + +**2. Install the skills:** + +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: + +```bash +cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity-cli/skills/ +``` + +**3. 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.)_