Automation & Ops ✓ Google · Official google-cloudmodel-gardenmodel-deploymentagent-platformendpoint-managementgcloud-climodel-serving

Agent Platform Model Deployment Assistant

Deploy, verify, and clean up Model Garden models on Google Agent Platform.

FollowSkills review · FSRS-2.0
Not recommended
43/ 100 5-point scale 2.2 / 5
Trust13 / 25 · 2.6/5

The document separates read-only, reversible, and destructive actions, and requires cost confirmation, typed deletion confirmation, and pre-undeploy existence checks, showing meaningful user-consent and partial recovery controls. Points are deducted because the examples expose a Hugging Face token placeholder, request cross-project IAM changes, and lack least-privilege guidance, sensitive-token handling, end-to-end data-flow disclosure, and a complete recovery plan; cleanup may delete models and endpoints.

Reliability5 / 20 · 1.3/5

The happy path covers discovery, deployment, asynchronous status checks, verification, undeployment, and troubleshooting, with some feedback for long-running operations and errors. Points are deducted because the static files contain no executable tests or CI evidence, several commands and API examples rely on placeholders or incomplete/inconsistent parameters, the copy flow depends on an internal tool, JSON is parsed with grep, and timeout and robust exception handling are absent.

Adaptability8 / 15 · 2.7/5

The description clearly covers Model Garden, custom weights, 1P tuned models, status checks, and cleanup, while excluding public Vertex AI deployments and model evaluation. Points are deducted because trigger boundaries, required inputs, output expectations, and permission prerequisites remain incomplete; the material is primarily English and Google Cloud oriented, does not document Chinese interaction, and does not address mainland-China reachability even though the core service and gcloud/curl workflow may depend on overseas services.

Convention8 / 15 · 2.7/5

The package includes the main skill, a reference guide, a sample prompt, and a configuration script; the README documents installation, Apache-2.0 licensing, active development, and an issue path. Points are deducted because the skill lacks its own version, changelog, named maintenance responsibility, and explicit update path; CLI/API version requirements, dependencies, known limitations, FAQs, and recovery guidance are thin, and the reference contains internal-environment assumptions, hard-coded project data, and unfinished command examples.

Effectiveness6 / 15 · 2.0/5

The stated scope matches the deployment lifecycle, and the files provide gcloud/curl examples, asynchronous polling, endpoint verification, and cleanup steps that could cover the core task. Points are deducted because users must supply and validate many IDs, permissions, regions, internal endpoints, and model parameters; some commands or request formats are incomplete, leaving substantial manual correction and judgment, and static review cannot verify representative outputs.

Verifiability3 / 10 · 1.5/5

The files contain concrete commands, scripts, error conditions, and a fixed revision context, providing limited auditability. Points are deducted because there is no committed test suite, CI execution evidence, real output, or independent review; key API behavior, pricing, and model deployability depend on external links or runtime queries and cannot be independently reproduced from the static material alone.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 513a7a51e85f
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • Do not place a Hugging Face token, user identity, or project identifier from the examples directly into production; use secure secret injection and least-privilege IAM.
  • Before copy, IAM changes, deploy, undeploy, or delete, verify the project, region, endpoint, model, and billing impact item by item; the cleanup commands have incomplete parameters and unclear deletion scope.
  • Validate gcloud/API versions, dedicated-endpoint reachability, and deployment configuration first; the material does not establish that the core workflow is usable from mainland-China networks.
Review evidence [1][2][3][4][5][6][7]
See the full review method →

What does this skill do, and when should you use it?

This skill guides deployment of open models, custom weights, and 1P Tuned Models to Agent Platform endpoints. It covers model discovery, deployment configuration checks, asynchronous status monitoring, dedicated-endpoint verification, undeployment, and cleanup. Mutating and destructive actions require progressively stronger confirmation, and deployment requires a list-price estimate based on hardware settings. It is not intended for public Vertex AI deployments or model evaluations.

Uses the gcloud CLI to list Model Garden models and inspect deployment configurations; runs gcloud ai model-garden models deploy for Model Garden models or custom weights stored at a GCS URI; checks asynchronous operations with gcloud ai operations describe and endpoints with gcloud ai endpoints list; retrieves dedicatedEndpointDns and sends an authenticated curl request to verify chat serving; lists and describes endpoints and models to identify undeployment resources; performs model undeployment and endpoint/model deletion workflows; and responds to quota or resource-exhaustion failures by asking for confirmation before retrying with alternative regions or hardware.

  1. A Google Cloud user needs to find a self-deployable Model Garden model and inspect its supported machine types or accelerators.
  2. A platform engineer needs to deploy an open model or custom weights from GCS to a selected project and region.
  3. A developer has started an asynchronous deployment and needs to inspect its operation ID or endpoint status.
  4. An application team needs to send a test prompt to a dedicated endpoint to confirm that serving works.
  5. A project owner has finished testing and needs to undeploy the model and delete resources to stop ongoing compute charges.
  6. An operator is troubleshooting QUOTA_EXCEEDED or RESOURCE_EXHAUSTED errors and needs to evaluate an alternative region or machine type.

What are this skill's strengths and limitations?

Pros
  • Covers the workflow from model discovery through serving verification and cleanup.
  • Defines separate confirmation tiers for read-only, reversible, and destructive operations.
  • Supports Model Garden models, GCS custom weights, and 1P Tuned Model copy-and-deployment scenarios.
  • Includes concrete guidance for dedicated endpoints and quota or resource-exhaustion failures.
Limitations
  • Deployments consume compute resources and incur costs; the source provides pricing guidance but not a complete cost table or calculator.
  • Examples depend on the gcloud CLI, authentication, network access, and curl; other client integrations are not documented.
  • The source provides no test suite, success-rate data, performance benchmarks, or supported-region matrix.
  • The detailed 1P Tuned Model procedure is referenced in `references/copy_deploy_guide.md`, whose contents are not included.

How do you install this skill?

Run npx skills add google/skills, then select the specific skill during installation. The skill is located at skills/cloud/agent-platform-deploy. The source does not document additional installers, version requirements, or an automated test suite.

How do you use this skill?

Provide the project, region, target Model Garden model or custom-weights URI, and hardware requirements. Example trigger: List self-deployable Model Garden models and check the deployment configuration for google/gemma3@gemma-3-27b-it. Read-only list, describe, and list-deployment-config actions require no confirmation. deploy and undeploy-model require explicit confirmation; delete requires typed confirmation such as I confirm or Yes, delete it. Before deployment, the skill must present a prediction list-price estimate based on machine type, accelerator type, and count, noting that discounts or reservations may change the actual bill.

How does this skill compare with similar options?

For public Vertex AI deployments, the source directs users to the vertex-deploy skill. For model evaluations, it directs users to the agent-platform-eval skill. This skill focuses on Agent Platform Model Garden deployment, verification, undeployment, and cleanup.

FAQ

Why is cost confirmation required before deployment?
Deployments, especially large models, consume compute resources and incur charges. The skill requires a prediction list-price estimate based on the requested hardware and explicit agreement before running `deploy`.
What confirmation is required to delete resources?
Deletion is treated as destructive and irreversible. The user must provide typed confirmation such as `I confirm` or `Yes, delete it`.
Can the skill undeploy a model immediately?
No. It must first verify that the endpoint and deployed model exist. If `describe` or `list` returns a 404 or empty result, it must stop rather than attempt undeployment.
How does it address deployment failures?
For `QUOTA_EXCEEDED` or `RESOURCE_EXHAUSTED`, it examines the suggested region or hardware change, recalculates the estimated cost, and obtains new confirmation before retrying.

More skills from this repository

All from google/skills

Automation & Ops ✓ Google · Official

Agent Platform Endpoint Management

Manage Agent Platform serving endpoints and troubleshoot common endpoint failures.

Data & Analysis ✓ Google · Official

Agent Platform Model Registry Manager

Manage Agent Platform models, versions, and metadata from the gcloud CLI.

Automation & Ops ✓ Google · Official

Google Cloud gcloud CLI Safety Skill

Helps agents manage and troubleshoot Google Cloud resources through validated, scoped gcloud commands.

Data & Analysis ✓ Google · Official

AlloyDB Database Manager

Manage AlloyDB clusters, instances, and backups with CLI, IaC, client-library, and MCP guidance.

Dev & Engineering ✓ Google · Official

Agent Platform Prompt Manager

Manage Agent Platform managed prompts with Python SDK guidance.

Dev & Engineering ✓ Google · Official

Agent Platform Tuning Manager

Inspect, list, and safely cancel Agent Platform GenAI tuning jobs.

Data & Analysis ✓ Google · Official

Agent Platform Model Tuning

A guided end-to-end workflow for fine-tuning open or Gemini models on Google Agent Platform.

Dev & Engineering ✓ Google · Official

Gemini Enterprise Skill Registry

Search, manage, monitor, and scaffold skills for the Gemini Enterprise Agent Platform.

Automation & Ops ✓ Google · Official

Google Cloud Developer Onboarding

Prepares an individual developer’s first Google Cloud project, billing setup, authentication, and initial deployment path.

Dev & Engineering ✓ Google · Official

Gemini API Enterprise Development Guide

Helps developers build enterprise Gemini applications on Agent Platform with Google's unified Gen AI SDK.

Automation & Ops ✓ Google · Official

GKE Basics Navigator

A focused entry point for discovering GKE cluster needs and routing each task to the right specialist skill.

Automation & Ops ✓ Google · Official

Google Cloud Global Load Balancer Configurator

Design and deploy opinionated global external Application Load Balancers on Google Cloud.

Automation & Ops ✓ Google · Official

Google Cloud Foundation Builder

Deploys a secure enterprise landing-zone foundation for a Google Cloud organization.

Automation & Ops ✓ Google · Official

Google Cloud AI Agent Builder

Design, implement, deploy, and validate AI agents and multi-agent systems on Google Cloud.

Automation & Ops ✓ Google · Official

Google Cloud Storage Basics

Manage GCS buckets and objects while configuring access, protection, lifecycle, cost, and performance.

Automation & Ops ✓ Google · Official

Cloud Run Deployment Guide

Deploy and manage Cloud Run services, jobs, and worker pools with gcloud.

Data & Analysis ✓ Google · Official

Google Cloud Agent Evaluation Flywheel

Improve model and agent quality through structured evaluation, failure analysis, and iteration.

Data & Analysis ✓ Google · Official

BigQuery Essentials

Manage BigQuery data with CLI commands and run SQL analysis.

Dev & Engineering ✓ Google · Official

Google Agents CLI Agent Development Guide

Guides agents from specification through development, deployment, and monitoring.

Dev & Engineering ✓ Google · Official

Gemini Enterprise Managed Agents

Manage stateful Gemini Enterprise agents through the Managed Agents API.

Related skills