google/agent-platform-tuning
>- Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment 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
This skill provides procedural knowledge for fine-tuning Large Language Models
(both Open Models and Gemini Models) using Agent Platform's tuning service. It
covers the entire lifecycle from environment setup and data preparation to job
configuration, monitoring, and deployment.
they want to tune an Open Model or a Gemini Model?
Gemini Model. CRITICAL EXCEPTION for Environment Setup Requests: If
the user is specifically asking for environment setup instructions (e.g.
"What environment setup is needed?"), you MUST provide the full
Phase 0 environment setup instructions in your initial
response, *simultaneously* with asking clarifying questions about the
model category.
three models: one Open Model, one Gemini Model, and a third generally
recommended choice. Briefly list the pros and cons of each (e.g., Gemini
models might be more expensive, etc.). CRITICAL: You must read
references/models.md during this step and only recommend models
explicitly listed in that catalog. Do not recommend unsupported models
like Mistral. If the user names a model that is not in the catalog,
follow the fallback rule in that catalog. Do not proceed with model
configuration until the category is confirmed.
initialized?
valid for tuning**, and is it uploaded to Google Cloud Storage?
- **No** → Go to [Phase 1: Dataset Preparation & Upload](#phase-1).
- **Yes** → Proceed.
user and confirmed the mapping?
column mapping as described in Phase 1.0 before proceeding.
hyperparameters, or explicitly agreed to your recommendations?
Phase 2: Model Configuration & Recommendation.
- **No** → Go to
[Phase 3: Tuning Job Execution](#phase-3-tuning-job-execution).
- **Yes** → Proceed.
- **No** → Go to [Phase 4: Monitoring](#phase-4-monitoring).
- **Yes** → Proceed.
- **No** → Go to [Phase 5: Model Deployment](#phase-5-model-deployment).
- **Yes** → Task Complete.
Ensure the foundational environment is ready before proceeding.
gcloud CLI is installed. If it is not installed, prompt the userfor permission to install it before proceeding. If it is installed, update
it:
gcloud components update --quiet > /dev/null 2>&1
gcloud auth list. If not authenticated, run gcloud auth login.project is known. Use gcloud config get project to retrieve thecurrent project.
retrieved project before proceeding, in case they want to switch to a
different one. The location must also be confirmed — see section 0.2 for
which location to propose, which depends on the model category.
Location handling depends on the model category you established in the
workflow decision tree. The two categories have different supported locations —
never apply one category's locations to the other.
global is therecommended choice.
global is notaccepted for them today.
If the user names a location that is not valid for their model and category,
STOP. Respond with an error naming the requested location as unsupported, list
the locations that are valid, and do NOT ask for a dataset, do NOT proceed with
any other setup step, and do NOT silently retry elsewhere.
global)Recommend global and confirm it with the user. Propose it as a single
recommended choice rather than making the user pick a region first, and do not
steer them toward a specific region instead.
These are the only locations available for open model tuning:
global (the recommended choice)us-central1europe-west4us-west1us-east5asia-southeast1The global endpoint automatically selects a supported region that has
available capacity, so it is the most likely to be scheduled successfully.
Pinning a region up front restricts the job to that one region's capacity, which
is why global is the recommended location for open model tuning.
global orone of the regions listed above. Do not talk them out of it.
Share the list above and say that global is recommended and why. Never
withhold it.
global and ask them toconfirm it before you proceed. Say that global lets the service pick a
region with available capacity. Do NOT silently assume global.
The point of proposing a single choice is to avoid making region selection a
decision the user must resolve before anything else can happen — that ordering
is what previously blocked people. It is not a reason to hide the list: quote it
whenever the user asks, and quote it when rejecting an unsupported location.
Fall back to an explicit region only in the cases below, and tell the user
why you are doing so:
global with aFAILED_PRECONDITION error. A CMEK-protected job must name the region that
holds the key.
jurisdiction, honor their region. global currently runs the job in either
us-central1 or europe-west4.
If a global job is accepted but then fails with a FAILED_PRECONDITION error
saying the model does not support global endpoint tuning, that model is not
onboarded to the global endpoint yet. The model itself is still tunable:
resubmit once in an explicit region from the list above (us-central1 is the
safest choice) and tell the user why you switched.
global jobaiplatform.googleapis.com. There is noglobal-aiplatform.googleapis.com host.
global to a real region at run time. Sub-resources(the tuned model, checkpoints, TensorBoard) come back with that real
region in their resource names, not global. Read the location out of the
returned resource name before using it for monitoring or deployment; never
assume it is still global.
quota.
global is not accepted for Gemini tuning today — the service rejects it at
job creation with a FAILED_PRECONDITION error, so do not propose it here.
There is no single region allowlist for Gemini. Supported tuning regions
vary by model and by model version: some Gemini models are restricted to two
regions while others support many more. Do NOT reuse the open model list above,
and do NOT assume a region carries over from another Gemini model.
Before submitting, look up the chosen model in the supervised fine-tuning
documentation and read its "Supported endpoint for model tuning"
row:
and tell them what the docs say. Do not answer from memory or from the open
model list, and do not answer for a different Gemini model.
of them. If it is not, STOP and report the supported regions for that model.
region rather than guessing one.
Confirm the region with the user before proceeding. Note that some Gemini models
also restrict CMEK and serve tuned models only on the us and eu multi-region
endpoints, so check the same table for those limits before promising them.
Ensure aiplatform.googleapis.com and storage.googleapis.com are enabled.
gcloud services enable aiplatform.googleapis.com storage.googleapis.com \
--project=YOUR_PROJECT
Verify the following identities have the required roles.
service-PROJECT_NUMBER@gcp-sa-vertex-moss-ft.iam.gserviceaccount.com
The scripts in this skill import vertexai (from google-cloud-aiplatform),
google-genai, google-cloud-storage, and datasets.
CRITICAL AGENT INSTRUCTION: Do not create a virtual environment, and do
not install anything before checking. A venv starts empty and hides packages the
environment already provides, forcing a redundant several-minute install.
Probe first and install only if the probe fails:
python3 -c "import vertexai, google.genai, google.cloud.storage, datasets" \
|| pip install -r references/requirements.txt
Then run every script with a plain python3 scripts/... — no activation prefix.
The references/requirements.txt pins are a fallback for an environment that
does not already provide these SDKs. Do not apply them on top of a working
environment: they would downgrade packages other tools may share.
filename or path in their prompt, verify its existence in the workspace
(e.g. via script execution or checking for typos).
that the dataset file does not exist or cannot be accessed. You MUST
prompt the user to provide a valid dataset path. Alternatively, if
candidate dataset files are found in the workspace during your search,
you MUST present the candidates to the user and ask them to select
one. You MUST stop tool execution immediately after reporting the
missing file or presenting candidates, and wait for the user's response.
Do NOT ask for 80/20 validation split permission, and do NOT
attempt to upload the dataset before receiving a valid dataset file
selection from the user.
Validation below.
and no suitable alternative is found in the Hugging Face reference, offer to
search the user's GCS buckets for potential training data. Prioritize
searching for files with extensions like .jsonl, .json, .csv, and
.parquet. If such files are found, read the first few lines/records of
each to determine if they contain text-based data suitable for tuning (e.g.,
prompt/completion pairs) that can be modified to follow
Data Preparation Guide and is related to the
tuning task requested. DO NOT search without prompting first.
task, refer to Huggingface Datasets Reference
and recommend a dataset from this if one exists. For each dataset
recommended, provide some information about the dataset and provide some
reasonable splits. > [!IMPORTANT] > **CRITICAL: Ask for Confirmation and
Column Selection.** Do not proceed > with dataset preparation or upload
until you perform the following > steps and get user confirmation: > 1.
Dataset and Split Confirmation: Present the dataset and > available
splits to the user and have them confirm which to use. > 2. **Column
Selection (Hugging Face or Custom Datasets):** You must: > - Provide a list
of all available columns in the selected dataset > split. > - **Show a few
samples from the dataset** to help the user > understand the content and
make the choice of columns. > - Recommend which columns should be mapped to
prompt (or user > message) and completion (or assistant response),
offering a few > reasonable options if applicable. > - Ask the user to
confirm the column mapping or specify which > columns to use.
scripts/prepare_dataset.py to convert.
dataset, you must prompt the user to seek permission to split the
training dataset 80/20 to form a validation dataset (using
--validation_split 0.2). If they agree, proceed with the split. If they
decline, just use the training dataset without a validation dataset.
Simply having a .jsonl extension is not enough. You must verify that the
content schema is valid for tuning (e.g. correct system/user/model roles).
python3 scripts/prepare_dataset.py \
--input my_data.jsonl \
--format <messages|messages_gemini> \
--validate_only
*(Use --format messages for open models and --format messages_gemini for
Gemini models.)* - Refer to Data Preparation Guide
for required schemas.
Upload formatted .jsonl files to GCS using a unique directory (e.g., with a
datetime timestamp) to avoid overwriting outputs from different runs.
ARTIFACTS="gs://YOUR_BUCKET/tuning_agent_job_<datetime>/dataset.jsonl"
gcloud storage cp dataset.jsonl "$ARTIFACTS"
Help the user choose the best model and parameters. **Always seek user
confirmation before submitting the job.**
recommendations based on the Models Catalog.
ask for their confirmation before configuring hyperparameters.
tuning_mode, epochs, learning_rate, and adapter_size basedon the Tuning Guide and model-specific
baselines in the Models Catalog.
Before submitting the job, run scripts/list_models.py and pick --base_model
only from its models output. Do not invent IDs or version numbers.
python3 scripts/list_models.py --project YOUR_PROJECT --filter gemini
Output: {"models": [...], "total_count": N, "truncated": bool}.
google/ and @default (e.g.google/gemini-2.5-flash@default → gemini-2.5-flash); for open models,
pass publisher/family@version as-is.
-embedding, -tts, -image,-computer-use, or -native-audio; they are not tunable.
truncated is true, re-run with a tighter --filter (e.g.gemini-2.5) before deciding the target version is unavailable.
models is empty, stop and ask the user.the selected model in the Models Catalog:
python3 scripts/calculate_cost.py \
--input my_data.jsonl \
--model MODEL_NAME \
--tuning_mode TUNING_MODE \
--epochs epochs
> [!NOTE] Handling Missing Dataset Errors: If scripts/calculate_cost.py
> fails because the dataset file (e.g. my_data.jsonl or dummy_data.jsonl)
> cannot be found, you MUST inform the user that the dataset file does not
> exist or cannot be accessed. You MUST prompt the user to provide a valid
> dataset path, and stop tool execution immediately to wait for their response.
> Do NOT retry or loop, do NOT invent a specific cost number, and do
> NOT prompt for job submission approval before receiving a valid dataset
> from the user.
configuration and estimated cost to the user and ask for their approval
before proceeding to job submission. Make sure to note that the estimated
cost is just an estimate and can vary from actual billing costs.
CRITICAL Pre-Flight Check (GCS Verification): Before you propose a
confirmation prompt or submit any tuning job, you MUST verify that the
specified training dataset GCS URI (e.g. gs://dummy_bucket/dataset.jsonl or
gs://YOUR_BUCKET/...) actually exists and is accessible. Run `gcloud storage
ls $DATASET_URI (or gsutil ls`).
BucketNotFound, 404, AccessDenied,or indicating a dummy/missing bucket), you MUST inform the user that the
GCS bucket or dataset does not exist or cannot be accessed. You MUST
prompt the user to provide a valid GCS URI for the dataset, and stop tool
execution immediately to wait for their response. Do NOT propose a
confirmation prompt and do NOT execute any tuning scripts before
receiving a valid dataset URI from the user.
below.
Check if scripts/tune_gemini_model.py exists.
scripts/tune_gemini_model.py exists: Submit the Gemini model tuningjob using this script.
python3 scripts/tune_gemini_model.py
scripts/tune_gemini_model.py does not exist: Instruct the user tomanually configure and submit the tuning job via the Google Cloud Console UI
or using the Agent Platform SDK for Python.
Submit the open model tuning job using scripts/tune_open_model.py. Identify
the model id using available models documentation
at
python3 scripts/tune_open_model.py \
--project YOUR_PROJECT \
--location global \
--base_model BASE_MODEL_ID \
--train_dataset gs://YOUR_BUCKET/tuning_agent_job_<datetime>/dataset.jsonl \
--output_uri gs://YOUR_BUCKET/tuning_agent_job_<datetime>/output \
--epochs EPOCHS \
--learning_rate LR \
--tuning_mode MODE
This script is open model only, and --location falls back to global if
omitted. Always pass the location the user confirmed in section 0.2 explicitly,
so it is visible in the command string you present for approval.
> [!IMPORTANT] Interactive Confirmation Required (Tier M): Before proceeding
> with job submission, you MUST present the proposed command string showing
> all literal flags in a confirmation prompt to the user with 'Yes' and 'No'
> options.
> CRITICAL: When presenting this confirmation prompt to the user, you MUST
> output it as a direct plain text response and stop tool execution immediately.
> Do NOT call any command execution or interactive tools in the same turn, as
> unexpected tool calls may be auto-replied by the simulation harness and cause
> an infinite loop. Yield immediately for the user's reply.
Monitor the job via the Cloud Console link provided in the script output.
--location is required and must be the same location you submitted with: an
open model job submitted on global is polled with --location global, even
though the work runs in a real region behind the scenes.
Additionally, ask the user if they want you to monitor the job status for them
in the background. If they agree, execute scripts/monitor_tuning_job.py as a
background task to periodically poll the job status and notify the user to show
the status. If the user declines, leave it completely to the user to check on
the status.
Once the tuning job is SUCCEEDED, deploy the model.
Deployment requires a real region — --region=global is not valid here. If the
job ran on global, read the region out of the tuned model's resource name
(projects/.../locations/<REGION>/models/...) and deploy there; do not guess.
ARTIFACTS="gs://YOUR_BUCKET/tuning_agent_job_<datetime>/output/postprocess/node-0/checkpoints/final"
gcloud ai model-garden models deploy \
--project=YOUR_PROJECT \
--region=YOUR_LOCATION \
--model="$ARTIFACTS" \
--machine-type=MACHINE_TYPE \
--accelerator-type=ACCELERATOR_TYPE \
--accelerator-count=COUNT
> [!IMPORTANT] Interactive Confirmation Required (Tier M): Before proceeding
> with deployment, you MUST present the proposed command string showing all
> literal flags in a confirmation prompt to the user with 'Yes' and 'No'
> options.
> CRITICAL: When presenting this confirmation prompt to the user, you MUST
> output it as a direct plain text response and stop tool execution immediately.
> Do NOT call any command execution or interactive tools in the same turn, as
> unexpected tool calls may be auto-replied by the simulation harness and cause
> an infinite loop. Yield immediately for the user's reply.
Refer to Models Catalog for hardware recommendations for
specific open models.
scripts/prepare_dataset.py: Data conversion & validation.scripts/tune_open_model.py: Open model tuning job submission.Take google/agent-platform-tuning 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.