Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Run the research/audit handoff loop between an agentic coding harness and a slow, non-agentic frontier reasoning model (GPT Pro on the ChatGPT web UI, or equivalent) with the codebase pre-loaded as split zip bundles. Author a high-signal prompt, then later take the returned report, verify every finding against the LIVE codebase, and implement what holds up. Use whenever the operator wants to send something to a deep external model, prep a prompt or report, scope an issue for deep research, bug-h
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 138% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 330% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 52% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 101% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 84% | 0% |
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.
Internalize the model before writing for it. Its constraints and its personality both shape the prompt.
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."
not iterate cheaply. The prompt must be complete and self-contained, because there is no follow-up channel mid-run.
copies it verbatim into the web UI. No tool call, no back-channel. What you write is exactly and only what the model gets.
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.
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.
Because the model is so literal, prompt tightness is a dial you set deliberately:
the code," constrain hard: VERIFIED/HYPOTHESIS labeling, confirm-or-refute each seeded hypothesis, fixed output format, DO-NOT roadmap. The rigid structure is what makes verification fast and the report triageable.
what we're missing," do the opposite: state the problem and the constraints, then explicitly grant freedom to reason independently, challenge your framing, and surface directions you didn't ask about. Seeds are a floor, not a fence — say so ("our hypotheses are a starting point; go beyond them, and tell us where we're wrong"). Leash a research prompt like an audit and you waste the one thing this model is best at.
"verify tightly" and which are "run free."
Keep the invariants hard even on a loose leash. Free on ideas, fixed on constraints.
1. SCOPE — pin one well-framed problem with the operator (not "review everything").
2. AUTHOR — write the prompt together; save to gptpro/issue-NN-<slug>.md.
3. FRESHEN — if code changed materially since the last export, re-run `gptpro`.
4. HAND OFF — operator pastes the prompt into the web UI.
5. RECEIVE — operator brings the report back; save to gptpro/issue-NN-<slug>.report.md.
6. VERIFY — re-check every finding against the LIVE codebase (this is the gate).
7. IMPLEMENT — apply what holds up; record what didn't and why.Steps 1–3 are one session's work. Steps 5–7 usually happen in a later session, when the report lands.
A good payload is one hard problem, deeply framed — not a grab-bag. Pin three things with the operator first:
design? a prioritized fix list? a teardown of an approach you doubt?).
what's already decided and won't be relitigated, invariants it must respect.
explicitly out of scope so it doesn't wander.
Then write in the house style — see references/prompt-style.md for the XML structure, the VERIFIED-vs-HYPOTHESIS rule, and a ready skeleton. Non-negotiables:
your hypotheses, but tag each "confirm, refute, or extend against the actual code" so it verifies rather than parrots.
fault; if you don't say a consistency boundary must hold, it may cheerfully propose moving it.
a DO-NOT column — that roadmap is the direct input to step 7. (A pure-theory prompt may want an open synthesis instead.)
Everything goes in a gitignored gptpro/ folder at the repo root — these are local handoff artifacts, never committed:
gptpro/issue-NN-<slug>.md — the prompt you author.gptpro/issue-NN-<slug>.report.md — the returned report, pasted back.Number issues sequentially so a session can carry several handoffs and you can refer to them unambiguously.
The model reasons over the last-exported zips. If you've shipped changes since the last export and the new prompt depends on that code, the snapshot is stale — re-run the gptpro export and have the operator re-upload the changed bundles. When in doubt, name the export date in the prompt so the model knows the snapshot's age and can flag drift itself.
If your chat provider supports a persistent Project or custom-instructions blurb, put the "what this system is + answer like a senior engineer, ground in the attached code, label uncertainty" context there once. Individual prompts then focus on the specific issue instead of re-explaining the project every time. If the operator is setting up a fresh Project, offer that blurb first.
This is where the value is captured or lost. For each finding, before treating it as actionable:
file:line it cited in the LIVE tree. Bundles lag— the line may have moved, the code may already be fixed, or the symbol may be gone. Confirm the finding still describes reality.
the code path or write the failing test. If it claims a cost, sanity-check the mechanism. A VERIFIED tag means "I found it in the snapshot," not "I proved it at runtime."
governance gate, crosses a consistency boundary, or contradicts a decision already made — even if the model is confident. Confident-and-wrong is the failure mode that matters.
discard — with a one-line reason so it isn't re-litigated later.
Spawn parallel verification sub-agents when a report has many findings, one per finding or cluster — but the conclusion is yours to make, grounded in the live code, not the sub-agent's say-so.
Implement what survived verification, following the repo's normal discipline (tests with every change; typecheck and build green before claiming done). Work the prioritized roadmap top-down. When a finding is implemented or rejected, note it in the .report.md so the next session knows what's been actioned. The operator can then take a follow-up question back for the next round.
hit rate is earned by verifying, not a license to skip it.
One framed problem per prompt.
is worse than no report. Freshen, or flag the snapshot age.
well-scoped prompt would let the model see the whole shape. Genuinely separate concerns do get separate, sequential prompts.
Other measured skills in the registry, with their headline benchmark lift.