Catalog
google/agent-platform-tuning-management

google

agent-platform-tuning-management

Manages GenAI tuning jobs in Agent Platform. Use this to list, get, or cancel ongoing model tuning jobs. Don't use for fine-tuning models (use `agent-platform-tuning`), deploying models to endpoints (use `agent-platform-deploy`), or managing serving endpoints (use `agent-platform-endpoint-management`).

global
category:AiAndMachineLearning
New~1.5k
v1.1Saved Jun 28, 2026

Agent Platform Tuning Management

This skill provides instructions on how to manage GenAI Tuning Jobs using the Agent Platform Python SDK. Use this skill when a user wants to check the status of their tuning runs, find an active tuning job, or cancel a job that is running too long.

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:

  1. Tier R: Read-only (list, get)
    • Rule: No confirmation needed. You may execute these commands immediately to gather information for the user.
  2. Tier D: Destructive & Interruptive (cancel)
    • Rule: This requires explicit typed confirmation. You MUST output a text message to the user explaining that this will stop the tuning process and any progress will be lost, and asking them to type "I confirm" or "Yes, cancel it". You MUST ask for this confirmation IMMEDIATELY, before executing the cancel command.

Phase 0: Environment Setup

CRITICAL: Before running any of the Python snippets below, you MUST ensure the environment is correctly initialized by following these steps:

  1. Virtual Environment: Create and activate a virtual environment:

    python3 -m venv ~/tuning_mgr_venv
    source ~/tuning_mgr_venv/bin/activate
    
  2. Google Cloud Authentication: Authenticate with your Google Cloud account and configure active Application Default Credentials (ADC) for Agent Platform access:

    gcloud auth login
    gcloud auth application-default login
    
  3. Install Dependencies: Install the required Agent Platform SDK:

    pip install google-cloud-aiplatform
    
  4. Execution: Advise the user that every time they execute a Python snippet, they must ensure this virtual environment is activated first.

Workflow Decision Tree

  1. Information Gathering: Do you have a Project ID and Region?

    • No -> You MUST ask the user for the missing Project ID and Region in plain text, or advise them to check their gcloud configuration. If neither location has this information, then ask the user to provide it. Do not attempt to search random regions on your own.
    • Yes -> Proceed to Step 2.
  2. Task Type: What does the user want to do?

    • Find or List Jobs -> Use the Python SDK to list tuning jobs. (Tier R)
    • Check Status / Inspect a Specific Job -> Use the Python SDK to get tuning job details. (Tier R)
    • Cancel a Job -> Ask for confirmation, then use the Python SDK to cancel the tuning job. (Tier D)

Using the Python SDK

[!NOTE] Resource Verification & Missing Projects/Jobs: If the execution of the Python snippet fails with an error (such as 403 Permission Denied, 404 Not Found, INVALID_ARGUMENT, or indicating a dummy/missing project or job ID), you MUST inform the user that the project or tuning job does not exist or cannot be accessed. You MUST prompt the user to provide a valid Project ID or Job ID, and stop tool execution immediately to wait for their response. Do NOT retry or loop, do NOT assume the resource is valid, and do NOT execute further scripts before receiving valid details from the user.

1. Listing Tuning Jobs (Tier R)

If the user asks "What tuning jobs do I have running?" or wants to find a specific job ID:

from google.cloud import aiplatform_v1

project_id = "YOUR_PROJECT_ID"
region = "YOUR_REGION"
parent = f"projects/{project_id}/locations/{region}"

client = aiplatform_v1.GenAiTuningServiceClient(
    client_options={"api_endpoint": f"{region}-aiplatform.googleapis.com"}
)

jobs = client.list_tuning_jobs(parent=parent)
for job in jobs:
    print(f"Name: {job.name}")
    print(f"Base Model: {job.base_model}")
    print(f"State: {job.state}")

2. Getting Details for a Specific Job (Tier R)

If the user provides a Tuning Job ID and asks for its status:

from google.cloud import aiplatform_v1

project_id = "YOUR_PROJECT_ID"
region = "YOUR_REGION"
job_id = "YOUR_JOB_ID"  # 19-digit ID
name = f"projects/{project_id}/locations/{region}/tuningJobs/{job_id}"

client = aiplatform_v1.GenAiTuningServiceClient(
    client_options={"api_endpoint": f"{region}-aiplatform.googleapis.com"}
)

job = client.get_tuning_job(name=name)
print(f"Name: {job.name}")
print(f"Base Model: {job.base_model}")
print(f"State: {job.state}")
print(f"Tuning Model: {job.tuned_model_display_name}")

3. Canceling a Job (Tier D)

If the user explicitly requests to stop, abort, or cancel a running tuning job:

Safety Check: Action requires explicit typed confirmation before proceeding. You MUST ask the user for confirmation before generating or providing this script, even if they provided the job ID, unless they explicitly use confirming language like "Yes, I confirm, cancel tuning job 123456".

[!IMPORTANT] NEVER pre-emptively provide or execute any cancellation code before receiving the user's response in a new turn. You must never speculate or assume that confirmation will be given. Asking for confirmation and providing the code in a single parallel turn is a severe safety violation.

from google.cloud import aiplatform_v1

project_id = "YOUR_PROJECT_ID"
region = "YOUR_REGION"
job_id = "YOUR_JOB_ID"  # 19-digit ID
name = f"projects/{project_id}/locations/{region}/tuningJobs/{job_id}"

client = aiplatform_v1.GenAiTuningServiceClient(
    client_options={"api_endpoint": f"{region}-aiplatform.googleapis.com"}
)

client.cancel_tuning_job(name=name)
print(f"Successfully requested cancellation for {name}")
Files1
1 files · 11.1 KB

Select a file to preview

Overall Score

88/100

Grade

A

Excellent

Safety

92

Quality

87

Clarity

89

Completeness

82

Summary

Provides instructions for managing GenAI tuning jobs in Google Cloud's Agent Platform via the Python SDK. Enables listing active jobs, retrieving job status details, and cancelling running tuning operations with explicit safety confirmation gates for destructive actions.

Detected Capabilities

Python SDK executionGoogle Cloud authentication (gcloud, ADC)Virtual environment setupAPI calls to Google Cloud AI PlatformJob cancellation (with user confirmation)

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

cancel tuning jobcheck tuning statuslist active jobstuning job managementinspect job details

Risk Signals

INFO

Google Cloud API access via python-aiplatform SDK

Using the Python SDK section, code examples
INFO

Requires gcloud authentication and ADC setup

Phase 0: Environment Setup
INFO

Cancellation action requires explicit typed user confirmation before execution

Tier D: Destructive & Interruptive, Section 3: Canceling a Job
INFO

No credentials stored or hardcoded; authentication delegated to gcloud ADC

Phase 0: Environment Setup

Referenced Domains

External domains referenced in skill content, detected by static analysis.

www.apache.org

Use Cases

  • Check the status of an ongoing tuning job
  • List all active tuning jobs in a project region
  • Cancel a long-running or failed tuning job
  • Inspect tuning job details and model outputs
  • Verify tuning job state before proceeding with deployment

Quality Notes

  • Excellent safety framework: clearly defines Tier R (read-only) and Tier D (destructive) actions with explicit confirmation requirement for cancellations
  • Well-structured workflow decision tree guides agents through information gathering, task identification, and appropriate action selection
  • Comprehensive environment setup instructions with virtual environment isolation and proper Google Cloud authentication via ADC (no hardcoded credentials)
  • Detailed error handling and resource verification guidance: agents must validate projects/jobs exist and halt if resources are missing rather than retry or assume
  • Clear delineation of related skills to avoid scope creep (agent-platform-tuning for fine-tuning, agent-platform-deploy for deployments, agent-platform-endpoint-management for serving)
  • Python code examples are complete and include all required imports and SDK initialization
  • Emphasizes critical safety measure: agents must never provide cancellation code without receiving explicit user confirmation in a separate turn
  • Good defensive note about not searching random regions — requires explicit user input for Project ID and Region
Model: claude-haiku-4-5-20251001Analyzed: Jun 28, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

v1.1

Content updated

2026-06-28

Latest
v1.0

No changelog

2026-05-27

Add google/agent-platform-tuning-management to your library

Command Palette

Search for a command to run...