From 87adeebaedaec3ba340874c94691ab070f8128b8 Mon Sep 17 00:00:00 2001 From: Haoyu Wang Date: Mon, 3 Aug 2026 15:34:20 -0400 Subject: [PATCH 1/2] feat(plugin): support agent plugin spec --- README.md | 11 +++++++++++ plugin.json | 19 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 plugin.json diff --git a/README.md b/README.md index d768ebb..7e12f6d 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ and infrastructure code generation. ## Installation +### Installing using [open agent skills tool](https://github.com/vercel-labs/skills) ```bash npx skills add gemini-cli-extensions/google-cloud-storage ``` @@ -46,6 +47,16 @@ From the `npx` install command, you can select the specific skills from this repo to install. The skills work with any compatible coding agent, including Gemini CLI, Claude Code, Codex, and Antigravity CLI. +### Installing via a compatible Agent Plugins client +This repository is also a valid [Agent Plugins](https://github.com/agentplugins/agent-plugins-spec) (v1) +plugin. Any [Agent Plugins–compatible client](https://agent-plugins.org/compatible-clients) (VS Code, +Cursor, GitHub Copilot, Codex, Kiro, …) can install it directly using its own built-in plugin command, +by pointing at this repository: + +``` +https://github.com/gemini-cli-extensions/google-cloud-storage +``` + ## Available Skills - [**Google Cloud Storage Basics**](#google-cloud-storage-basics-skill) — diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..8b4bc36 --- /dev/null +++ b/plugin.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "google-cloud-storage", + "version": "1.0.0", + "description": "Vetted Google Cloud Storage skills for your coding agent.", + "author": { + "name": "Google LLC", + "email": "gcs-agentic-ai-customer-support@google.com" + }, + "homepage": "https://cloud.google.com/storage", + "repository": "https://github.com/gemini-cli-extensions/google-cloud-storage", + "license": "Apache-2.0", + "keywords": [ + "gcs", + "google-cloud-storage", + "storage", + "google-cloud" + ] +} From ea4de9add64e766bdc393e0ce7bf35d3244f4d08 Mon Sep 17 00:00:00 2001 From: Haoyu Wang Date: Tue, 4 Aug 2026 21:25:09 -0400 Subject: [PATCH 2/2] minor update --- plugin.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugin.json b/plugin.json index 8b4bc36..fed84f4 100644 --- a/plugin.json +++ b/plugin.json @@ -2,7 +2,7 @@ "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", "name": "google-cloud-storage", "version": "1.0.0", - "description": "Vetted Google Cloud Storage skills for your coding agent.", + "description": "Official Google Cloud Storage (GCS) plugin. Manage buckets and objects, transfer data, and configure MCP, FUSE, IAM, security, lifecycle rules, signed URLs, Terraform, and the CLI.", "author": { "name": "Google LLC", "email": "gcs-agentic-ai-customer-support@google.com" @@ -14,6 +14,9 @@ "gcs", "google-cloud-storage", "storage", - "google-cloud" + "google-cloud", + "cloud storage", + "object storage", + "blob storage" ] }