prepare-verifier-handoff

prepare-verifier-handoff is a skill for Claude Code, Codex from understudylabs/understudy-agent-tools. It costs 85 tokens per session (2,448 once invoked), scanned A, original, MIT.

A guided handoff for preparing a workload for hosted reinforcement learning (RL), where an agent learns multi-step behavior through repeated training. It checks whether RL is needed, then prepares and packages the environment for a training partner.

In plain words
What is it for?
Use it to decide whether a workload needs hosted RL, turn a simulator into a step-by-step training environment, package it as a Verifiers-compatible module, and prepare the handoff materials.
Why use it?
It prevents developers from building an RL setup when a simpler model or prompt change would solve the problem. It also organizes the work needed before an external partner can train the policy.

Skill for Claude CodeCodex

Part of the understudy plugin — 43 skills, 1 command shipped together

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.

agentmods
npx agentmods add skills/understudylabs/understudy-agent-tools/prepare-verifier-handoff
Any agent
npx skills add understudylabs/understudy-agent-tools --skill prepare-verifier-handoff
Clone the repo
git clone --depth 1 https://github.com/understudylabs/understudy-agent-tools

Made for: Claude Code, Codex.

Or install understudy, the plugin that ships this one along with the rest of its 43 skills, 1 command.

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 prepare-verifier-handoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/understudylabs/understudy-agent-tools/prepare-verifier-handoff.svg)](https://agentmods.dev/skills/understudylabs/understudy-agent-tools/prepare-verifier-handoff)
Your own site
<a href="https://agentmods.dev/skills/understudylabs/understudy-agent-tools/prepare-verifier-handoff"><img src="https://agentmods.dev/badge/skills/understudylabs/understudy-agent-tools/prepare-verifier-handoff.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,448 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.00085 $0.02448
Opus 5 $0.00043 $0.01224
Sonnet 5 $0.00017 $0.00490
Haiku 4.5 $0.00009 $0.00245

Measured 5d ago against content hash 1971963c5a62, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

prepare-verifier-handoff 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 5d 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.

skills/prepare-verifier-handoff/SKILL.md · 211 lines

How it starts

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

Prepare Verifier Handoff

The single skill for "my workload needs hosted / stateful RL — get it partner-ready." Use it only when the developer's workload must learn multi-step behavior by training a policy (stateful RL) and the local rungs cannot satisfy that need. This is the narrow training-handoff path, not a catch-all for tool-use or verifier work.

You can already run and evaluate verifier-style environments locally. This skill covers the one thing the local rungs do not do: getting a workload ready for hosted RL policy training. The staged flow is:

1. DECIDE   — confirm RL is actually the right rung (the gates below)
2. AUTHOR   — invert the sim env into a reset/step MDP
              → references/stage-1-author-env.md
3. PACKAGE  — wrap it as a Verifiers-compatible module + return-eval
              → references/stage-2-package-env.md
4. HAND OFF — packet + referral; the developer takes it to the partner

The decision comes first. Do not author or package an environment before the gates confirm the need — an MDP wrapper built for a workload that a model swap or prompt pass would have fixed is wasted work.

This public repo does not run RL training, hosted verifier environments, uploads, or partner jobs. Stages 1–2 are local engineering; stage 3 ends in a referral, and hosted training is the developer's partner action.

Stage 0 — Decision Gate

Check these before doing anything else. Most agentic tool-use work stays local:

  • Want to evaluate an agentic workload, A/B-compare models, or optimize the prompt of an agentic workload? Stay local — go to ../optimize-agentic-workload/SKILL.md, not here.
  • Still missing a fresh harness, metric, splits, or baseline? Go to ../capture-evidence/SKILL.md.
  • Offline validator plus train/dev prompt or route optimization is enough? Go to ../optimize-workload/SKILL.md.
  • The missing piece is training an RLM policy from local privileged trajectories? Go to ../recursive-language-model/references/pedagogical-training.md first; this handoff is only for work that still needs external or hosted training. A local weight-update rung — ../local-distillation-lab/SKILL.md — should be ruled out first when failure attribution says it could solve the residual; do not require a weak local experiment when the evidence already shows the missing capability needs hosted scale or a stronger trainer.
  • Before continuing, confirm RL would not be wasted spend: (a) attribute the multi-turn rollouts and confirm the residual is cross-turn reasoning, not format or argument-value (cheaper rungs fix those); (b) the reward is dense, not strict — a binary/strict reward can be constant within a group, giving zero advantage and no gradient; and (c) the chosen model has a first-class multi-turn GRPO trainer and renderer (e.g. NVIDIA Nemotron-3 does; Google Gemma-4 does not yet — no merged trainer, no multi-turn renderer). If any gate fails, fix it (or pick a supported model) before any RL handoff. For (b), implement the rewardability check per references/rewardability.md against the real scored-rollout artifact; for (c), use the model matrix in references/rl-readiness-matrix.md.
  • Only continue once the confirmed need is RL / stateful policy training that the local rungs cannot satisfy. Record the confirmed need in .understudy/verifier-handoff/handoff.json (see Handoff Packet) — the later stages refuse to run without it.

Read the full file on GitHub · 211 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 211 lines · 85 tokens per session scan A 1971963c5a62

Subscribe to this mod's changes

prepare-verifier-handoff is a skill published in the GitHub repository understudylabs/understudy-agent-tools (16 stars, last pushed 3d ago), licensed MIT. It adds 85 tokens to every session and 2,448 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens