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.
npx agentmods add skills/bman654/clodex/pr-verificationnpx skills add bman654/clodex --skill pr-verificationgit clone --depth 1 https://github.com/bman654/clodexWrote 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.
[](https://agentmods.dev/skills/bman654/clodex/pr-verification)<a href="https://agentmods.dev/skills/bman654/clodex/pr-verification"><img src="https://agentmods.dev/badge/skills/bman654/clodex/pr-verification.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00088 | $0.02629 |
| Opus 5 | $0.00044 | $0.01314 |
| Sonnet 5 | $0.00018 | $0.00526 |
| Haiku 4.5 | $0.00009 | $0.00263 |
Grade A, and why
pr-verification 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.
How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Before you open a PR
Your change will be held to a higher bar than "the suite is green." Across ~100 merged and closed PRs, three failures dominate — in this order. They are what most review rounds are spent on, and every one of them is cheaper to catch now than after a reviewer finds it.
This file is a gate, not a checklist to run alongside the PR. Nothing is pushed and no PR is
opened until every item below has been done and your local adversarial review has reported and its
findings are resolved. Running the review in parallel with git push looks like free wall-clock and
is not: a finding that lands after the branch is public costs a force-push or a second PR, it can
reach a reviewer or a merge first, and it arrives already framed as follow-up — which is how a
should-fix becomes a won't-fix. "Quick PR" is a reason to keep the change small, never a reason to
open it before the gate closes.
A review that reports "nothing to fix" still has to report before the push. The point is not that findings are likely; it is that the branch going public is the irreversible step, and the review is what tells you whether it should.
1. Tests must discriminate. Green is not evidence.
The single most common defect. Tests pass; the behavior they claim to pin is absent, unreachable, or staged in a state production can never produce.
The acceptance test: delete the feature and run the suite. If nothing turns red, the tests are theatre regardless of how many there are. One detector shipped with tests staging the scenario in a data region the detector never touches — deleting the entire feature left 85/85 green, and the detector was dead in production.
- Run the full file, not
-tisolation — they disagree, and CI runs the file. A test has passed in the full run and failed under-t. - Stage state through production producers. For chain/head/normalization work, emit the item
via
response.output_item.doneinto the expected-assistant history; never plant it directly in the request input. That region is kept verbatim and can never diverge, so a test staged there passes no matter what the code does. This defect has now been seen twice. - Mutate each independent guard and precedence branch, not just the happy path.
- Include over-scope and under-scope negatives — prove the change does not fire where it shouldn't.
- Never accept the sha256 source-digest pin as the failing test. It is a tripwire, not a behavioural test. A mutation that broke a real bridge leak passed 1329/1330 with the digest pin as the only red. If the pin is the only thing failing, the behaviour is unpinned.
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.
- 5d ago First seen · 184 lines · 88 tokens per session scan A a81a0aec188b
pr-verification is a skill published in the GitHub repository bman654/clodex (50 stars, last pushed yesterday), licensed MIT. It adds 88 tokens to every session and 2,629 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…