New to Claude Skills? Learn how to install them →

Agoogle on GitHub

Agent Platform Tuning Management

Free

Manage GenAI tuning jobs with ease.

by google17.6k stars on google/skills
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Agent Platform Tuning Management does

The Agent Platform Tuning Management skill is designed to facilitate the management of GenAI tuning jobs within the Agent Platform. This skill allows users to list ongoing tuning jobs, retrieve details about specific jobs, and cancel jobs that may be taking longer than expected. It is particularly useful for developers and data scientists who are working with AI models and need to keep track of their tuning processes. By using this skill, users can efficiently monitor and control their tuning jobs without needing to navigate through the Google Cloud console.

To effectively use this skill, users must first ensure their environment is set up correctly. This involves authenticating their Google Cloud account and ensuring that the necessary Python dependencies are installed. The skill employs the Google Cloud Python SDK to interact with the GenAI tuning services, making it essential for users to have a valid Project ID and Region configured. The skill provides clear instructions on how to gather this information and execute the appropriate commands to manage tuning jobs.

The skill's functionality is divided into three main tasks: listing tuning jobs, checking the status of specific jobs, and canceling jobs. Listing jobs and retrieving details do not require user confirmation, allowing for quick access to information. However, canceling a job is a critical action that necessitates explicit confirmation from the user to prevent accidental data loss. This safety measure ensures that users have control over their tuning processes and can make informed decisions about job management.

Overall, this skill is tailored for users who need a straightforward way to manage their GenAI tuning jobs, providing essential functionalities while adhering to safety protocols. It is not intended for fine-tuning models or deploying them to endpoints, making it a focused tool for specific job management tasks.

When to use it

Use this skill when you need to check the status of ongoing tuning jobs, find specific jobs, or cancel jobs that are taking too long.

When not to use it

This skill is not suitable for fine-tuning models or deploying them to endpoints; use the appropriate skills for those tasks instead.

What you can build with it

Checking Active Tuning Jobs

If you need to see which tuning jobs are currently running, this skill allows you to list them quickly.

Retrieving Job Details

When you have a specific tuning job ID, you can use this skill to get detailed information about its status.

Canceling a Long-Running Job

If a tuning job is taking too long, you can use this skill to cancel it, but you'll need to confirm your decision first.

How to install Agent Platform Tuning Management

View source

1. Install with the skills CLI

npx skills add google/skills/agent-platform-tuning-management --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by google

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. 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
    
  2. Python Dependencies: This skill needs google-cloud-aiplatform. Do not create a virtual environment — it starts empty and hides packages the environment already provides, forcing a redundant install. Probe, and install only what is missing:

    python3 -c "import vertexai" || pip install google-cloud-aiplatform
    
  3. Execution: Run Python snippets with a plain python3. There is no environment to activate 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}")

Frequently asked questions about Agent Platform Tuning Management

Similar skills