agent-platform-model-registry
Agent Platform Model Registry Management
Install / Use
npx skills add google/skills --skill agent-platform-model-registryInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
AI & Machine LearningSupported Platforms
Tags
Our assessment of agent-platform-model-registry
agent-platform-model-registry scores 83/100 on our quality scale, 441st of 729 AI & Machine Learning skills we index.
Its SKILL.md is 8.2 KB long, well organised into 11 sections with 7 code examples: a thorough specification that gives an agent plenty to work with.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 3 days ago, so agent-platform-model-registry is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
agent-platform-model-registry compared with similar skills
All 4 of these similar skills score higher than agent-platform-model-registry; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| agent-platform-model-registry (this skill)by google | 83 | 20.3k | 3d ago | SKILL.md |
| claude-memby thedotmack | 100 | 94.7k | today | CLAUDE.md |
| Understand-Anythingby Egonex-AI | 100 | 84.3k | 14d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.9k | today | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install agent-platform-model-registry?
- Run
npx skills add google/skills --skill agent-platform-model-registry. The install tabs above show the steps for each supported agent. - Which AI agents does agent-platform-model-registry work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is agent-platform-model-registry safe to use?
- It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is agent-platform-model-registry still maintained?
- The repository was last updated 3 days ago, so agent-platform-model-registry is actively maintained.
Skill content
View source on GitHubname: agent-platform-model-registry metadata: version: "1.0.0" category: AiAndMachineLearning description: >- Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.
Agent Platform Model Registry Management
Overview
This skill provides instructions for managing machine learning models in the Agent Platform Model Registry. It covers listing models, describing model details, uploading new models or versions, updating metadata, and deleting models.
Safety & Confirmation Tiers (CRITICAL)
Before executing any commands on behalf of the user, you MUST adhere to the following safety tiers based on the action requested:
- Tier R: Read-only (
list,describe,get)- No confirmation needed. Execute immediately to gather information.
- Tier M: Mutating & Reversible (
upload,update)- Requires interactive confirmation with 'Yes'/'No' options. The
confirmation prompt MUST contain the exact, literal command string with
all required flags (e.g.
--region=us-central1,--project=...,--display-name="...") — natural-language paraphrases are NOT sufficient. - Same-turn restriction: NEVER execute the command in the same turn as
receiving the request or presenting the confirmation prompt! In Turn 1,
you MUST ONLY present the interactive confirmation card with the exact,
literal command string. Stop and wait for the user's reply; only execute
in the subsequent turn after explicit 'Yes' / approval. Executing
uploadorupdatein Turn 1 without prior confirmation is strictly prohibited. - Mid-flow parameter changes / rejection: If the user rejects the prompt or changes any parameters (e.g., display name, description, parent model), do NOT execute the old command. Adapt immediately and present a NEW confirmation prompt with the updated literal command and wait for approval.
- Requires interactive confirmation with 'Yes'/'No' options. The
confirmation prompt MUST contain the exact, literal command string with
all required flags (e.g.
- Tier D: Destructive & Irreversible (
delete)- Requires explicit typed confirmation (e.g. "I confirm" or "Yes, delete it"). Ask for confirmation IMMEDIATELY — before any pre-flight checks (don't check if the model is deployed to endpoints first).
- Same-turn restriction: NEVER execute in the same turn as asking for typed confirmation. Wait for the user to reply in a new turn.
- Mid-flow target changes: If the user changes their mind (e.g., "delete the second model instead"), do NOT delete the first model. Present a fresh typed confirmation prompt for the newly selected model ID and wait for approval.
- Cost Estimation: Model Registry operations manage catalog metadata and
stored model artifacts without provisioning serving compute or endpoints. Do
NOT call the
estimate_costtool for Model Registry actions, asestimate_costis designed for serving infrastructure (endpoints/batch prediction) and will return an error if called for registry operations. If including cost in the preview card, state that Model Registry operations incur no serving compute charges ($0.00 compute charges; standard Cloud Storage pricing applies to model artifacts).
Phase 0: Environment Setup & Parameter Resolution
CRITICAL: Before running any commands, verify that all necessary parameters are known:
- Missing Region or Project: Follow the base environment grounding policy:
if a session location or project is already set from prior turns, reuse it
without re-asking. If missing from both prompt and session context, at most
one direct lookup is permitted (e.g.
gcloud config get projectorgcloud config get compute/region). If still unresolved or ambiguous, pause and explicitly ask the user for the missing parameter before executing mutating or resource-specific commands. - Missing Model ID: If the user asks to update or describe a model without providing the model ID, pause and ask the user for the model ID, or offer to list models first to help them find it.
- Placeholder Substitution: If the user's requested display name contains
a placeholder token (e.g.,
<unique-suffix>,[suffix], or<timestamp>), generate a short unique alphanumeric string or timestamp and substitute it cleanly. Never pass unexpanded literal placeholder tokens to the API. - Region and Project Flags: Always pass
--region=$LOCATION_IDand--project=$PROJECT_IDexplicitly on allgcloud ai modelscommands. Do NOT useglobal.
1. Listing Models (Tier R)
Use this command to discover existing models in the registry and retrieve their numeric IDs. No confirmation is required.
gcloud ai models list \
--region=$LOCATION_ID \
--project=$PROJECT_ID
2. Describing a Model (Tier R)
Retrieve the full metadata for a specific model or version. No confirmation is required.
gcloud ai models describe $MODEL_ID \
--region=$LOCATION_ID \
--project=$PROJECT_ID
To target a specific version:
gcloud ai models describe ${MODEL_ID}@${VERSION_ID} \
--region=$LOCATION_ID \
--project=$PROJECT_ID
3. Uploading a Model (Tier M)
Register a new model or a new version of an existing model. This is a long-running operation. Action requires an inline confirmation card before proceeding.
Example: Uploading a Custom Model
gcloud ai models upload \
--region=$LOCATION_ID \
--project=$PROJECT_ID \
--display-name="<DISPLAY_NAME>" \
--container-image-uri="<CONTAINER_IMAGE_URI>" \
[--artifact-uri="<ARTIFACT_URI>"]
[!IMPORTANT]
This is a Tier M operation — see [Safety & Confirmation Tiers] above.
- If the user specifies "with no artifact URI", omit
--artifact-uri.- If registering a new version of an existing model, include
--parent-model=$PARENT_MODEL_ID.- Substitute
<DISPLAY_NAME>with the exact name requested by the user.
4. Updating a Model (Tier M)
Update metadata fields like display name or description. Note that gcloud ai models does NOT have an update subcommand. Instead, model metadata updates
MUST be executed using the Vertex AI Python SDK
(google.cloud.aiplatform.Model).
Action requires an inline confirmation card containing the exact script before proceeding.
python3 -c "
from google.cloud import aiplatform
aiplatform.init(project='$PROJECT_ID', location='$LOCATION_ID')
model = aiplatform.Model('$MODEL_ID')
model.update(display_name='<NEW_DISPLAY_NAME>', description='<NEW_DESCRIPTION>')
print(f'Successfully updated model: {model.resource_name}')
"
[!IMPORTANT]
This is a Tier M operation — see [Safety & Confirmation Tiers] above.
- If only updating the display name, pass
model.update(display_name='<NEW_DISPLAY_NAME>').- If only updating the description, pass
model.update(description='<NEW_DESCRIPTION>').- The confirmation card MUST display the exact python command snippet above. NEVER execute in Turn 1; wait for explicit user approval.
5. Deleting a Model (Tier D)
Permanently delete a Model and all its versions. Action requires explicit typed confirmation before proceeding.
gcloud ai models delete $MODEL_ID \
--region=$LOCATION_ID \
--project=$PROJECT_ID
[!WARNING]
This operation is irreversible. All model versions must be undeployed from all Endpoints before deletion.
6. Searching Publisher Models (Tier R)
Before generating interactive model details, you MUST verify the model_id by
searching Model Garden Publisher Models. No confirmation is required.
Use the gcloud ai CLI to search for matching publisher models.
gcloud ai model-garden models list --model-filter="<model_name_or_query>" --full-resource-name --format=json
This will return a list of matching models. Extract the exact name field from
the result (e.g., publishers/google/models/gemma2 or
publishers/qwen/models/qwen3-coder) to use as the verified model_id.
Related Skills
claude-mem
94.7kPersistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
Understand-Anything
84.3kGraphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.
headroom
73.9kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
