From 669d82fc555c8757c8b54618f4544dd6d17e8391 Mon Sep 17 00:00:00 2001 From: Mark McDonald Date: Mon, 17 Aug 2026 17:51:07 +0800 Subject: [PATCH 1/2] feat: add plugin support for various platforms --- .claude-plugin/marketplace.json | 18 ++++++++++++++ .claude-plugin/plugin.json | 17 +++++++++++++ .codex-plugin/plugin.json | 18 ++++++++++++++ .cursor-plugin/plugin.json | 18 ++++++++++++++ README.md | 42 ++++++++++++++++++++++++++++++++- plugin.json | 9 ++++++- 6 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 .claude-plugin/marketplace.json create mode 100644 .claude-plugin/plugin.json create mode 100644 .codex-plugin/plugin.json create mode 100644 .cursor-plugin/plugin.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 0000000..c1f5fc5 --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,18 @@ +{ + "name": "gemini-skills", + "owner": { + "name": "Google" + }, + "metadata": { + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "version": "1.1.0" + }, + "plugins": [ + { + "name": "gemini-skills", + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "version": "1.1.0", + "source": "./" + } + ] +} diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..4a0d9b4 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,17 @@ +{ + "name": "gemini-skills", + "version": "1.1.0", + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "author": { + "name": "Google" + }, + "repository": "https://github.com/google-gemini/gemini-skills", + "license": "Apache-2.0", + "keywords": [ + "gemini", + "gemini-api", + "google-genai", + "skills", + "ai" + ] +} diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..2fac39d --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,18 @@ +{ + "name": "gemini-skills", + "version": "1.1.0", + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "author": { + "name": "Google" + }, + "skills": "./skills", + "repository": "https://github.com/google-gemini/gemini-skills", + "license": "Apache-2.0", + "keywords": [ + "gemini", + "gemini-api", + "google-genai", + "skills", + "ai" + ] +} diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json new file mode 100644 index 0000000..2fac39d --- /dev/null +++ b/.cursor-plugin/plugin.json @@ -0,0 +1,18 @@ +{ + "name": "gemini-skills", + "version": "1.1.0", + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "author": { + "name": "Google" + }, + "skills": "./skills", + "repository": "https://github.com/google-gemini/gemini-skills", + "license": "Apache-2.0", + "keywords": [ + "gemini", + "gemini-api", + "google-genai", + "skills", + "ai" + ] +} diff --git a/README.md b/README.md index e9924b6..3eef3b0 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ and 96% with Gemini 3.1 Pro. For more details, see our blog post: ## Installation -You can browse and install skills using either the [Vercel skills CLI](https://skills.sh) or the [Context7 skills CLI](https://context7.com). +You can install these skills across your preferred AI coding assistants and package managers: ### Using [Vercel skills CLI](https://skills.sh) @@ -62,6 +62,46 @@ npx ctx7 skills install /google-gemini/gemini-skills npx ctx7 skills install /google-gemini/gemini-skills gemini-interactions-api ``` +### Antigravity + +The Gemini skills come bundled with Antigravity, find them under +⚙️ → Customizations → Build with Google Plugins. + +Or install through the AGY CLI: + +```sh +# Install it directly +agy plugin install https://github.com/google-gemini/gemini-skills +``` + +### Claude Code + +```sh +# Register the marketplace +/plugin marketplace add google-gemini/gemini-skills + +# Install the plugin +/plugin install gemini-skills@gemini-skills +``` + +### Cursor + +Install directly from the Cursor plugin directory or via the editor command: + +```text +/add-plugin google-gemini/gemini-skills +``` + +### OpenAI Codex + +```sh +# Add the marketplace source +codex plugin marketplace add https://github.com/google-gemini/gemini-skills + +# Install the plugin +codex plugin install gemini-skills +``` + ## More info You can find additional information about setting up your coding assistant with diff --git a/plugin.json b/plugin.json index f2099e5..4a0d9b4 100644 --- a/plugin.json +++ b/plugin.json @@ -6,5 +6,12 @@ "name": "Google" }, "repository": "https://github.com/google-gemini/gemini-skills", - "license": "Apache-2.0" + "license": "Apache-2.0", + "keywords": [ + "gemini", + "gemini-api", + "google-genai", + "skills", + "ai" + ] } From 5229f9294fece18504d601d6fbddd4ec468608ef Mon Sep 17 00:00:00 2001 From: Mark McDonald Date: Mon, 17 Aug 2026 18:11:58 +0800 Subject: [PATCH 2/2] added .agents/ marketplace for codex, others --- .agents/plugins/marketplace.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .agents/plugins/marketplace.json diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json new file mode 100644 index 0000000..f267850 --- /dev/null +++ b/.agents/plugins/marketplace.json @@ -0,0 +1,16 @@ +{ + "name": "gemini-skills", + "plugins": [ + { + "name": "gemini-skills", + "version": "1.1.0", + "description": "A library of skills for the Gemini API, SDK and model interactions.", + "repository": "https://github.com/google-gemini/gemini-skills", + "installType": "local", + "path": "./", + "interface": { + "displayName": "Gemini API Skills" + } + } + ] +}