agent-platform-tuning-management

agent-platform-tuning-management is a skill for Claude Code, Codex from hamzabellouch/agent-skills. It costs 72 tokens per session (1,498 once invoked), scanned A, a copy of agent-platform-tuning-management, MIT.

A management guide for model-tuning jobs in Agent Platform, where tuning adapts a generative AI model to a task or dataset.

In plain words
What is it for?
List tuning jobs, view a job's details or status, and cancel a job that is taking too long. It does not cover creating tuning jobs, deploying models, or managing serving endpoints.
Why use it?
It helps you inspect running jobs without guesswork and prevents accidental cancellation by requiring typed confirmation before stopping one.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit List tuning jobs, view a job's details or status, and cancel a job that is taking too long. It does not cover creating tuning jobs, deploying models, or managing serving endpoints.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hamzabellouch/agent-skills/agent-platform-tuning-management
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hamzabellouch/agent-skills --skill agent-platform-tuning-management
Clone the repo
git clone --depth 1 https://github.com/hamzabellouch/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agent-platform-tuning-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/agent-platform-tuning-management/github.svg)](https://agentmods.dev/skills/hamzabellouch/agent-skills/agent-platform-tuning-management)
Your own site
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/agent-platform-tuning-management"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/agent-platform-tuning-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agent-platform-tuning-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/agent-platform-tuning-management"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/agent-platform-tuning-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,498 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.01498
Opus 5 $0.00036 $0.00749
Sonnet 5 $0.00014 $0.00300
Haiku 4.5 $0.00007 $0.00150

Measured 11d ago against content hash 7dbfb54277b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

agent-platform-tuning-management scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to agent-platform-tuning-management — 75 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

AI API and Agent Platform/agent-platform-tuning-management/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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.

Read the full file on GitHub · 163 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 163 lines · 72 tokens per session scan A 7dbfb54277b1

Subscribe to this mod's changes

agent-platform-tuning-management is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 72 tokens to every session and 1,498 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to agent-platform-tuning-management, differing in 75 lines, and is treated as a copy.