Skip to content

Commit a1543f4

Browse files
committed
docs: add skills cli (npx skills) installation instructions
1 parent 966f7b8 commit a1543f4

1 file changed

Lines changed: 32 additions & 1 deletion

File tree

README.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ This repository provides a set of agent skills to interact with [Cloud SQL for P
2323
- [Claude Code](#claude-code)
2424
- [Codex](#codex)
2525
- [Antigravity](#antigravity)
26+
- [Skills CLI (npx skills)](#skills-cli)
2627
- [Usage Examples](#usage-examples)
2728
- [Supported Skills](#supported-skills)
2829
- [Additional Agent Skills](#additional-agent-skills)
@@ -74,7 +75,11 @@ Please keep these env vars handy during the installation process:
7475
7576
### Installation & Usage
7677

77-
To start interacting with your database, install the skills for your preferred AI agent, then launch the agent and use natural language to ask questions or perform tasks.
78+
To start interacting with your database, we strongly recommend following the agent-specific instructions below for your preferred AI agent. These are the natively supported and most direct methods for installation.
79+
80+
Alternatively, for users managing multiple agents, you can use the universal [Skills CLI (`npx skills`)](#skills-cli) as a fallback option.
81+
82+
Once installed, launch your preferred AI agent and use natural language to ask questions or perform tasks.
7883

7984
For the latest version, check the [releases page][releases].
8085

@@ -212,6 +217,32 @@ _(Tip: Antigravity automatically discovers skills in these directories at the st
212217

213218
</details>
214219

220+
<details>
221+
<summary id="skills-cli">Skills CLI (npx skills)</summary>
222+
223+
**1. Install all skills:**
224+
225+
```bash
226+
npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql
227+
```
228+
229+
You can install a specific version of skills by appending a `#<tag>` or `#<branch>` to the end of the repository URL. For example, to install version `0.4.0`:
230+
231+
```bash
232+
npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql#0.4.0
233+
```
234+
235+
Alternatively, you can install specific skillsets by using the `--skill` flag. For example, to install only the data and monitor skills:
236+
237+
```bash
238+
npx skills add https://github.com/gemini-cli-extensions/cloud-sql-postgresql --skill cloud-sql-postgres-data --skill cloud-sql-postgres-monitor
239+
```
240+
241+
**2. Set env vars:**
242+
In your terminal, set your environment vars as described in the [configuration section](#configuration).
243+
244+
</details>
245+
215246
<!-- {x-release-please-end} -->
216247

217248
## Usage Examples

0 commit comments

Comments
 (0)