Skip to content

Commit cec5dd0

Browse files
authored
Merge branch 'main' into ci/auto-generate-skills
2 parents 9c9d47e + 336e909 commit cec5dd0

9 files changed

Lines changed: 15 additions & 39 deletions

File tree

.github/workflows/assign-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
issues: write
2626
steps:
2727
- name: "Auto-assign issue"
28-
uses: pozil/auto-assign-issue@v2
28+
uses: pozil/auto-assign-issue@af6beea6bdf1e8eb373f061c5bc168681fc6d011 # v4.0.1
2929
with:
3030
assignees: dolphin1999,isaurabhuttam,prernakakkar-google
3131
numOfAssignee: 1

.github/workflows/assign-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pull-requests: write
2727
steps:
2828
- name: "Auto-assign PR"
29-
uses: pozil/auto-assign-issue@v2
29+
uses: pozil/auto-assign-issue@af6beea6bdf1e8eb373f061c5bc168681fc6d011 # v4.0.1
3030
with:
3131
assignees: dolphin1999,isaurabhuttam,prernakakkar-google
3232
numOfAssignee: 1

.github/workflows/header-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: 'Checkout Repository'
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
27+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2828

2929
- name: Check License Header
3030
uses: apache/skywalking-eyes/header@98a5d1362e26852204382ca749ed66631f15a95d # main

.github/workflows/json-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Check out code
26-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
26+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2727

2828
- name: Run JSON Lint
2929
run: jq . gemini-extension.json

.github/workflows/markdown-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
27+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2828

2929
- name: Link Checker
3030
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0

.github/workflows/presubmit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Check out code
25-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
25+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2626

2727
- name: Install Gemini CLI
2828
run: npm install @google/gemini-cli

.github/workflows/skills-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
skills-validate:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
33+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
3434

3535
- name: Set up Python
3636
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6

.github/workflows/sync-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
issues: 'write'
3030
pull-requests: 'write'
3131
steps:
32-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3333
- uses: micnncim/action-label-syncer@3abd5ab72fda571e69fffd97bd4e0033dd5f495c # v1.3.0
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 7 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -177,50 +177,26 @@ _(Tip: Run `/plugin list` inside Claude Code to verify the plugin is active, or
177177
<details>
178178
<summary id="codex">Codex</summary>
179179

180-
**1. Clone the Repo:**
180+
**1. Install marketplace:**
181181

182182
```bash
183-
git clone --branch 0.4.0 git@github.com:gemini-cli-extensions/cloud-sql-postgresql.git
183+
codex plugin marketplace add GoogleCloudPlatform/data-agent-kit
184184
```
185185

186186
**2. Install the plugin:**
187187

188188
```bash
189-
mkdir -p ~/.codex/plugins
190-
cp -R /absolute/path/to/cloud-sql-postgresql ~/.codex/plugins/cloud-sql-postgresql
189+
codex plugin install cloud-sql-postgresql@data-agent-kit
191190
```
192191

193192
**3. Set env vars:**
194193
Enter your environment vars as described in the [configuration section](#configuration).
195194

196-
**4. Create or update marketplace.json:**
197-
`~/.agents/plugins/marketplace.json`
198-
199-
```json
200-
{
201-
"name": "my-data-cloud-google-marketplace",
202-
"interface": {
203-
"displayName": "Google Data Cloud Skills"
204-
},
205-
"plugins": [
206-
{
207-
"name": "cloud-sql-postgresql",
208-
"source": {
209-
"source": "local",
210-
"path": "./plugins/cloud-sql-postgresql"
211-
},
212-
"policy": {
213-
"installation": "AVAILABLE",
214-
"authentication": "ON_INSTALL"
215-
},
216-
"category": "Database"
217-
}
218-
]
219-
}
195+
**4. (Optional) Update the marketplace:**
196+
```sh
197+
codex plugin marketplace upgrade data-agent-kit
220198
```
221199

222-
_(Tip: Run `codex plugin list` or use the `/plugins` interactive menu to verify your installed plugins.)_
223-
224200
</details>
225201

226202
## Installing using [open agent skills tool](https://github.com/vercel-labs/skills)
@@ -283,4 +259,4 @@ Common issues:
283259
- "failed to find default credentials: google: could not find default credentials.": Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment. See [Set up Application Default Credentials](https://cloud.google.com/docs/authentication/external/set-up-adc) for more information.
284260
- "✖ Error during discovery for server: MCP error -32000: Connection closed": The database connection has not been established. Ensure your configuration is set via environment variables.
285261
- "✖ MCP ERROR: Error: spawn .../toolbox ENOENT": The Toolbox binary did not download correctly. Ensure you are using the latest version of your agent.
286-
- "cannot execute binary file": The Toolbox binary did not download correctly. Ensure the correct binary for your OS/Architecture has been downloaded. See [Installing the server](https://mcp-toolbox.dev/documentation/introduction/#install-toolbox) for more information.
262+
- "cannot execute binary file": The Toolbox binary did not download correctly. Ensure the correct binary for your OS/Architecture has been downloaded. See [Installing the server](https://mcp-toolbox.dev/documentation/introduction/#install-toolbox) for more information.

0 commit comments

Comments
 (0)