>- 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`).
npx skills add https://github.com/google/skills --skill 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.
Before executing any commands on behalf of the user, you MUST adhere to the
following safety tiers based on the action requested:
list, get)immediately to gather information for the user.
cancel)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.
CRITICAL: Before running any of the Python snippets below, you MUST ensure
the environment is correctly initialized by following these steps:
and configure active Application Default Credentials (ADC) for Agent
Platform access:
gcloud auth login
gcloud auth application-default login
google-cloud-aiplatform. Donot 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
python3. There is noenvironment to activate first.
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.
R)
tuning job details. (Tier R)
cancel the tuning job. (Tier D)
> [!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.
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}")
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}")
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}")
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
This skill should be used when working with reinforcement learning tasks including high-performance RL training, custom environment development, vectorized parallel simulation, multi-agent systems, or integration with existing RL environments (Gymnasium, PettingZoo, Atari, Procgen, etc.). Use this skill for implementing PPO training, creating PufferEnv environments, optimizing RL performance, or developing policies with CNNs/LSTMs.
Run evaluations for one, multiple, or all skills using the agent orchestration framework. Make sure to use this skill whenever the user asks to run evals, test a skill's performance, run benchmarks, or compare baseline versus with-skill execution.
You are an expert prompt engineer specializing in crafting effective prompts for LLMs through advanced techniques including constitutional AI, chain-of-thought reasoning, and model-specific optimizati
Implements the NOWAIT technique for efficient reasoning in R1-style LLMs. Use when optimizing inference of reasoning models (QwQ, DeepSeek-R1, Phi4-Reasoning, Qwen3, Kimi-VL, QvQ), reducing chain-of-thought token usage by 27-51% while preserving accuracy. Triggers on "optimize reasoning", "reduce thinking tokens", "efficient inference", "suppress reflection tokens", or when working with verbose CoT outputs.
Provides guidance for automatically evolving and optimizing AI agents across any domain using LLM-driven evolution algorithms. Use when building self-improving agents, optimizing agent prompts and skills against benchmarks, or implementing automated agent evaluation loops.
Elite AI context engineering specialist mastering dynamic context management, vector databases, knowledge graphs, and intelligent memory systems.
亚马逊卖家专用的 skill 创建器(中文)。当用户想把一个亚马逊运营/自媒体/日常工作流程变成可复用的 skill 时使用。触发场景包括但不限于:用户说"我想做一个 skill""把这个流程变成 skill""帮我写个自动化""优化我已有的 skill""给这个工作流做个自动化",即使用户没用"skill"这个词,只要在描述"以后每次都这样做"的重复性工作时也应触发。本 skill 的核心差异:强制用户先回答 6 个业务问题(业务目标/过去做法/具体步骤/方法论/调用方式/期望输出)再进入创建流程,防止产出空洞 skill。Create new skills, improve existing skills, run evals and benchmarks — tailored for Amazon sellers with a Chinese-first workflow.
Take google/agent-platform-tuning-management from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip.
Without those the skill loads but fails at the first command.