gptpro-handoff

gptpro-handoff is a skill for Claude Code, Codex from avenoxai/avenoxskills. It costs 162 tokens per session (2,364 once invoked), scanned A, original, MIT.

A handoff workflow between a coding agent and a slower reasoning model that cannot access the live project or run tests. It prepares a code snapshot and prompt, then checks the returned findings against the current code before implementation.

In plain words
What is it for?
Use it to prepare code for external analysis, review the resulting audit, verify each finding locally, and decide which suggestions are safe to implement.
Why use it?
It provides a structured way to get a second review while accounting for the fact that the other model may be working from an older snapshot.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to prepare code for external analysis, review the resulting audit, verify each finding locally, and decide which suggestions are safe to implement.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/avenoxai/avenoxskills/gptpro-handoff
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 avenoxai/avenoxskills --skill gptpro-handoff
Clone the repo
git clone --depth 1 https://github.com/avenoxai/avenoxskills

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 gptpro-handoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/avenoxai/avenoxskills/gptpro-handoff/github.svg)](https://agentmods.dev/skills/avenoxai/avenoxskills/gptpro-handoff)
Your own site
<a href="https://agentmods.dev/skills/avenoxai/avenoxskills/gptpro-handoff"><img src="https://agentmods.dev/badge/skills/avenoxai/avenoxskills/gptpro-handoff/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 gptpro-handoff

Your own site · 80×15
<a href="https://agentmods.dev/skills/avenoxai/avenoxskills/gptpro-handoff"><img src="https://agentmods.dev/badge/skills/avenoxai/avenoxskills/gptpro-handoff.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 162 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,364 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00162 $0.02364
Opus 5 $0.00081 $0.01182
Sonnet 5 $0.00032 $0.00473
Haiku 4.5 $0.00016 $0.00236

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

Security

Grade A, and why

gptpro-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 10d 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/gptpro-handoff/SKILL.md · 193 lines

How it starts

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

Deep-model handoff loop

A slow, non-agentic frontier reasoning model is a different tool from your coding agent, and it needs a different workflow. This skill is that workflow.

Written against GPT Pro on the ChatGPT web UI, with the codebase loaded into a Project as split zip bundles (produced by the gptpro export skill). It transfers to any deep model you reach through a chat UI rather than a harness.

The defining fact: the model is non-agentic — no shell, no live filesystem, bounded context. It reasons over a static snapshot.

That drives the entire discipline: it proposes, you verify, then you implement. Its report is the strongest kind of input, but it is read against a snapshot that may lag the live tree, and it cannot run a test. Nothing ships unchecked. In practice the large majority of findings hold up — the job is to catch the ones that don't before they cost you.

What this model is (and how it behaves)

Internalize the model before writing for it. Its constraints and its personality both shape the prompt.

  • No harness, no live repo. It runs in the chat provider's own container: no shell, no tools, no filesystem. It sees only the bundled snapshot you upload. On the harness axis it is strictly disadvantaged; its reasoning depth is what makes up for that. You give up "can run a test" to buy "can out-think the problem."
  • Slow, deep, one-shot. A single answer can take ~50–60 minutes. You do not iterate cheaply. The prompt must be complete and self-contained, because there is no follow-up channel mid-run.
  • The prompt is the entire interface. The agent authors it; the operator copies it verbatim into the web UI. No tool call, no back-channel. What you write is exactly and only what the model gets.
  • The operator sets the reasoning tier at send time. NEVER put reasoning-effort instructions in the prompt (no "use xhigh", no <REASONING> block) — that's a UI control, so any such text is dead weight crowding the real instructions.
  • Obsessively literal. It follows instructions to the letter and hyper-focuses on exactly what you specify. A superpower for audits, and a trap for research: over-constrain a prompt meant to surface theories and it will tunnel on your seeds and never bring you the ideas you couldn't think of yourself.

Read the full file on GitHub · 193 lines

Files

What ships with it

1 file 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. 10d ago First seen · 193 lines · 162 tokens per session scan A 13e94da4779b

Subscribe to this mod's changes

gptpro-handoff is a skill published in the GitHub repository avenoxai/avenoxskills (49 stars, last pushed 1mo ago), licensed MIT. It adds 162 tokens to every session and 2,364 once invoked, about $0.0008 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

pdf

A set of instructions for working with PDF files, which are documents designed to preserve their layout across devices.

agentscope-ai/QwenPaw · 95 tokens

make_plan

For external plan request scenarios, guides the Agent to request a clear, actionable, step-by-step plan from a stronger Agent via listagents and chatwithagent, emphasizing that the plan is executed by the requester, not by the consulted Agent.

agentscope-ai/QwenPaw · 51 tokens

hermes-history-ingest

Ingest Hermes agent history into the Obsidian wiki. Use this skill when the user wants to mine their past Hermes sessions for knowledge, import their /.hermes folder, extract insights from previous Hermes conversations, or says things like "process my Hermes history", "add my Hermes memories to the wiki", "ingest…

Ar9av/obsidian-wiki · 108 tokens

wiki-context-pack

Produce a token-bounded, citation-ready context slice from an existing Obsidian vault for a downstream agent or task. Use for "/wiki-context-pack", "use my vault as context", "context slice for X", "pack the wiki for my agent", or "bounded context for Y".

Ar9av/obsidian-wiki · 63 tokens

security-review

Perform a focused security review of pending git changes to identify high-confidence security vulnerabilities with real exploitation potential. Use this skill when the user asks for a security review, security audit, vulnerability scan, or wants to check pending changes on a branch for security issues before merging.…

waybarrios/opencode-power-pack · 64 tokens

huggingface-llm-trainer

Train or fine-tune language models with TRL or Unsloth on Hugging Face Jobs, including SFT, DPO, GRPO, reward models, and GGUF conversion. Use for cloud LLM training; use huggingface-vision-trainer for vision tasks.

waybarrios/opencode-power-pack · 65 tokens