gemini-api
v1.0.0Gemini API guidance for coding agents: generation, the Interactions API, and the Live API.
18.6k GitHub starsUpdated 8 hours ago
Directory evidence
- Runtimes
- Codex, Claude Code, and Agent Plugins
- Parsed components
- 4 skill or MCP entries
- Source updated
- Aug 21, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install plugin
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add gemini-api@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/google/skillsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/cloud/gemini-api/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── plugin.json├── skills/gemini-api/SKILL.md├── skills/gemini-interactions-api/SKILL.md├── skills/gemini-live-api/SKILL.md└── .mcp.json
Included Skills3
Use when the user asks about using Gemini in an enterprise environment or explicitly mentions Vertex AI, Google Cloud, or Agent Platform. Guides the usage of the Gemini API on Agent Platform with the Google Gen AI SDK. Covers SDK usage (Python, JS/TS, Go, Java, C#), capabilities like multimodal inputs, tools, media generation, caching, batch prediction, and Live API.
Guides the usage of Gemini Interactions API on Gemini Enterprise Agent Platform. Use when the user wants to use the stateful, server-managed Interactions API for multi-turn conversations, background execution, streaming, structured output, and function calling on the Agent Platform.
Generates a Gemini LiveAPI client service class in the user's chosen programming language. Use when the user wants to build, scaffold, or integrate a client that connects to the Gemini Enterprise LiveAPI websocket endpoint, handles session setup/resumption, bearer token refresh, and sending/receiving `ClientMessage`/`ServerMessage` protos. Don't use for general (non-live, non-bidirectional) Gemini API usage such as one-shot `generateContent`, embeddings, image/video generation, or fine-tuning — use the `gemini-api` skill for those.
MCP servers1
- url
- https://developerknowledge.googleapis.com/mcp
Plugin manifests3
{
"name": "gemini-api",
"version": "1.0.0",
"description": "Gemini API guidance for coding agents: generation, the Interactions API, and the Live API.",
"skills": "./skills/",
"interface": {
"displayName": "Gemini API",
"shortDescription": "Build with the Gemini API, Interactions API, and Live API",
"category": "Productivity"
}
}{
"name": "gemini-api",
"version": "1.0.0",
"description": "Gemini API guidance for coding agents: generation, the Interactions API, and the Live API.",
"author": {
"name": "Google LLC"
}
}{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "gemini-api",
"version": "1.0.0",
"description": "Gemini API guidance for coding agents: generating text and multimodal output with the Google Gen AI SDK, the stateful Interactions API for multi-turn conversations and background execution, and the Live API for realtime bidirectional streaming. Includes the Google Developer Knowledge MCP server for grounded, up-to-date documentation.",
"author": {
"name": "Google LLC",
"url": "https://cloud.google.com"
},
"homepage": "https://github.com/google/skills/tree/main/plugins/cloud/gemini-api",
"repository": "https://github.com/google/skills",
"license": "Apache-2.0",
"keywords": [
"gemini",
"gemini-api",
"generative-ai",
"live-api"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[gemini-api on Agent Plugins Marketplace](https://pluginsmp.com/plugins/gemini-api)