Skip to content

Commit 3d26733

Browse files
authored
Merge branch 'main' into update-rp
2 parents 4716f35 + 3338ef5 commit 3d26733

3 files changed

Lines changed: 30 additions & 145 deletions

File tree

.github/workflows/package-and-upload-assets.yml

Lines changed: 0 additions & 130 deletions
This file was deleted.

DEVELOPER.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,6 @@ The skills themselves are validated using the `skills-validate.yml` workflow.
5959
* **Dependency Updates:** [Renovate](https://github.com/apps/forking-renovate)
6060
is configured to automatically create pull requests for dependency updates.
6161

62-
## Building the Extension
63-
64-
The "build" process for this extension involves packaging the extension's
65-
metadata files (`gemini-extension.json`, `cloud-sql-postgresql.md`, `LICENSE`) along with the
66-
pre-built `toolbox` binary into platform-specific archives (`.tar.gz` or `.zip`).
67-
68-
This process is handled automatically by the
69-
[`package-and-upload-assets.yml`](.github/workflows/package-and-upload-assets.yml)
70-
GitHub Actions workflow when a new release is created. Manual building is not
71-
required.
72-
7362
## Maintainer Information
7463

7564
### Team
@@ -124,7 +113,3 @@ The process is handled by the [`mirror-changelog.yml`](.github/workflows/mirror-
124113
2. **Merge Release PR:** A maintainer approves and merges the Release PR. This
125114
action triggers `release-please` to create a new GitHub tag and a
126115
corresponding GitHub Release.
127-
3. **Package and Upload:** The new release triggers the
128-
`package-and-upload-assets.yml` workflow. This workflow builds the
129-
platform-specific extension archives and uploads them as assets to the
130-
GitHub Release.

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P
2222
- [Gemini CLI](#gemini-cli)
2323
- [Claude Code](#claude-code)
2424
- [Codex](#codex)
25+
- [Antigravity](#antigravity)
2526
- [Usage Examples](#usage-examples)
2627
- [Supported Skills](#supported-skills)
2728
- [Additional Agent Skills](#additional-agent-skills)
@@ -42,6 +43,7 @@ Before you begin, ensure you have the following:
4243
- [Gemini CLI](https://github.com/google-gemini/gemini-cli) version **v0.6.0** or higher
4344
- [Claude Code](https://claude.com/product/claude-code) version **v2.1.94** or higher
4445
- [Codex](https://developers.openai.com/codex) **v0.117.0** or higher
46+
- [Antigravity](https://antigravity.google) **v1.14.2** or higher
4547
- A Google Cloud project with the **Cloud SQL Admin API** enabled.
4648
- Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
4749
- IAM Permissions:
@@ -189,6 +191,34 @@ _(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify
189191

190192
</details>
191193

194+
<details>
195+
<summary id="antigravity">Antigravity</summary>
196+
197+
**1. Clone the Repo:**
198+
199+
```bash
200+
git clone --branch 0.3.0 https://github.com/gemini-cli-extensions/cloud-sql-postgresql.git
201+
```
202+
203+
**2. Install the skills:**
204+
205+
Choose a location for the skills:
206+
- **Global (all workspaces):** `~/.gemini/antigravity/skills/`
207+
- **Workspace-specific:** `<workspace-root>/.agents/skills/`
208+
209+
Copy the skill folders from the cloned repository's `skills/` directory to your chosen location:
210+
211+
```bash
212+
cp -R cloud-sql-postgresql/skills/* ~/.gemini/antigravity/skills/
213+
```
214+
215+
**3. Set env vars:**
216+
Set your environment vars as described in the [configuration section](#configuration).
217+
218+
_(Tip: Antigravity automatically discovers skills in these directories at the start of a session.)_
219+
220+
</details>
221+
192222
<!-- {x-release-please-end} -->
193223

194224
## Usage Examples

0 commit comments

Comments
 (0)