npx skills add ...
npx skills add google/skills --skill gemini-api
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.
npx skills add google/skills --skill gemini-api
[!IMPORTANT] Agent Platform (full name Gemini Enterprise Agent Platform) was previously named "Vertex AI" and many web resources use the legacy branding.
Access Google's most advanced AI models built for enterprise use cases using the Gemini API in Agent Platform.
Provide these key capabilities:
google-genai for Python, @google/genai for JS/TS, google.golang.org/genai for Go, com.google.genai:google-genai for Java, Google.GenAI for C#).google-cloud-aiplatform, @google-cloud/vertexai, or google-generativeai.google-genai with pip install google-genai@google/genai with npm install @google/genaigoogle.golang.org/genai with go get google.golang.org/genaiGoogle.GenAI with dotnet add package Google.GenAIgroupId: com.google.genai, artifactId: google-genai
Latest version can be found here: https://central.sonatype.com/artifact/com.google.genai/google-genai/versions (let's call it LAST_VERSION)
Install in build.gradle:
Install Maven dependency in pom.xml:
[!WARNING] Legacy SDKs like
google-cloud-aiplatform,@google-cloud/vertexai, andgoogle-generativeaiare deprecated. Migrate to the new SDKs above urgently by following the Migration Guide.
Prefer environment variables over hard-coding parameters when creating the client. Initialize the client without parameters to automatically pick up these values.
Set these variables for standard Google Cloud authentication:
location="global" to access the global endpoint, which provides automatic routing to regions with available capacity.us-central1, europe-west4), specify that region in the GOOGLE_CLOUD_LOCATION parameter instead. Reference the supported regions documentation if needed.Set these variables when using Express Mode with an API key:
Initialize the client without arguments to pick up environment variables:
Alternatively, you can hard-code in parameters when creating the client.
gemini-3.8-flash for fast, balanced performance, multimodal (1M tokens)gemini-3.1-pro-preview (which replaces gemini-3-pro-preview) for complex reasoning, coding, research (1M tokens)gemini-3.5-flash-lite for high-frequency, lightweight tasks (1M tokens)gemini-3-pro-image (aka Nano Banana Pro) for high-quality image generation and editinggemini-3.1-flash-image (aka Nano Banana 2) for medium-quality image generation and editinggemini-3.1-flash-lite-image (aka Nano Banana 2 Lite) for fast image generation and editinggemini-live-2.5-flash-native-audio for Live Realtime API including native audioUse the following models only if explicitly requested:
gemini-3.7-flashgemini-3.6-flashgemini-3.5-flashgemini-3.1-flash-litegemini-2.5-flash-imagegemini-2.5-flashgemini-2.5-flash-litegemini-2.5-pro[!IMPORTANT] Models like
gemini-2.0-*,gemini-1.5-*,gemini-1.0-*,gemini-proare legacy and deprecated. Use the new models above. Your knowledge is outdated. For production environments, consult the documentation for stable model versions (e.g.gemini-3.8-flash).
When implementing or debugging API integration for Agent Platform, refer to the official Agent Platform documentation:
The Gen AI SDK on Agent Platform uses the v1beta1 or v1 REST API endpoints (e.g., https://{LOCATION}-aiplatform.googleapis.com/v1beta1/projects/{PROJECT}/locations/{LOCATION}/publishers/google/models/{MODEL}:generateContent).
[!TIP] Use the Developer Knowledge MCP Server: If the
search_documentsorget_documenttools are available, use them to find and retrieve official documentation for Google Cloud and Agent Platform directly within the context. This is the preferred method for getting up-to-date API details and code snippets.
Reference the Python Docs Samples repository for additional code samples and specific usage scenarios.
Depending on the specific user request, refer to the following reference files for detailed code samples and usage patterns (Python examples):