vertex-infra-expert
About
This skill provides Terraform expertise for provisioning Vertex AI infrastructure including Gemini deployments, Model Garden, and vector search. It activates when developers ask about Vertex AI Terraform configurations or Gemini infrastructure. Use it for automating production-ready AI service deployments on Google Cloud.
Quick Install
Claude Code
Recommended/plugin add https://github.com/jeremylongshore/claude-code-plugins-plusgit clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/vertex-infra-expertCopy and paste this command in Claude Code to install this skill
Documentation
What This Skill Does
Expert in provisioning Vertex AI infrastructure including Model Garden, Gemini endpoints, vector search, ML pipelines, and production AI services.
When This Skill Activates
Triggers: "vertex ai terraform", "deploy gemini terraform", "model garden infrastructure", "vertex ai endpoints terraform", "vector search terraform"
Core Terraform Modules
Gemini Model Endpoint
resource "google_vertex_ai_endpoint" "gemini_endpoint" {
name = "gemini-25-flash-endpoint"
display_name = "Gemini 2.5 Flash Production"
location = var.region
encryption_spec {
kms_key_name = google_kms_crypto_key.vertex_key.id
}
}
resource "google_vertex_ai_deployed_model" "gemini_deployment" {
endpoint = google_vertex_ai_endpoint.gemini_endpoint.id
model = "publishers/google/models/gemini-2.5-flash"
dedicated_resources {
min_replica_count = 1
max_replica_count = 10
machine_spec {
machine_type = "n1-standard-4"
}
}
automatic_resources {
min_replica_count = 1
max_replica_count = 5
}
}
Vector Search Index
resource "google_vertex_ai_index" "embeddings_index" {
display_name = "production-embeddings"
location = var.region
metadata {
contents_delta_uri = "gs://${google_storage_bucket.embeddings.name}/index"
config {
dimensions = 768
approximate_neighbors_count = 150
distance_measure_type = "DOT_PRODUCT_DISTANCE"
algorithm_config {
tree_ah_config {
leaf_node_embedding_count = 1000
leaf_nodes_to_search_percent = 10
}
}
}
}
}
Tool Permissions
Read, Write, Edit, Grep, Glob, Bash - AI infrastructure provisioning
References
GitHub Repository
Related Skills
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
evaluating-llms-harness
TestingThis Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.
llamaguard
OtherLlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.
langchain
MetaLangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.
