Agent skill · DevOps & Cloud

vertex-ai-gemini

Google Cloud Vertex AI for enterprise Gemini deployments — production scaling, fine-tuning, and MLOps. Use when deploying Gemini in GCP-native environments, running fine-tuning jobs, needing enterprise IAM controls, VPC isolation, batch prediction at scale, or production ML pipelines on Google Cloud.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill vertex-ai-gemini --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Declared author: terminal-skills
Requires: Python 3.9+ with google-cloud-aiplatform SDK and GCP credentials
Path: skills/ai-llm/vertex-ai-gemini/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Vertex AI — Gemini on Google Cloud ## Overview Vertex AI is Google Cloud's enterprise ML platform. It provides access to the same Gemini models as Google AI Studio, but with enterprise-grade features: IAM-based auth (no API keys), VPC Service Controls for data isolation, audit logging, fine-tuning capabilities, batch prediction jobs, and integration with GCP data services like BigQuery and Cloud Storage. ## Vertex AI vs Google AI Studio | Feature | Google AI Studio | Vertex AI | |---|---|---| | Auth | API Key | Service Account / IAM | | Data residency | Limited | GCP regions | | VPC isolation | ❌ | ✅ | | Audit logging | ❌ | ✅ Cloud Audit Logs | | Fine-tuning | ❌ | ✅ | | Batch prediction | ❌ | ✅ | | Pricing | Per token | Per token (different rates) | | Quotas | Shared | Project-level quotas | ## Setup ```bash pip install google-cloud-aiplatform ``` ```bash # Authenticate gcloud auth application-default login # Or use service account export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json ``` ```bash # Set project and location export GOOGLE_CLOUD_PROJECT=my-project-id export GOOGLE_CLOUD_LOCATION=us-central1 ``` ## Instructions ### Basic Gemini Inference ```python impor

What's inside
Steps it walks through
  1. Overview
  2. Vertex AI vs Google AI Studio
  3. Setup
  4. Instructions
  5. Basic Gemini Inference
  6. Multi-Modal Inference
  7. Streaming Responses
  8. Chat Session
  9. Function Calling
  10. Fine-Tuning Gemini
  11. Batch Prediction
  12. IAM Setup for Service Account
  13. VPC Service Controls (Enterprise Isolation)
  14. Available Gemini Models on Vertex AI
Ships with 1 file
  • metadata.json
Commands it runs
pip install google-cloud-aiplatform
Authenticate
gcloud auth application-default login
Or use service account
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
Set project and location
export GOOGLE_CLOUD_PROJECT=my-project-id
export GOOGLE_CLOUD_LOCATION=us-central1
Create a service account for your app
gcloud iam service-accounts create gemini-app-sa \
More from claude-skill-registry
All skills →
About this skill
What does the vertex-ai-gemini skill do?

Google Cloud Vertex AI for enterprise Gemini deployments — production scaling, fine-tuning, and MLOps. Use when deploying Gemini in GCP-native environments, running fine-tuning jobs, needing enterprise IAM controls, VPC isolation, batch prediction at scale, or production ML pipelines on Google Cloud.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill vertex-ai-gemini --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going