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 skills add OutlineDriven/odin-claude-plugin --skill skill-benchmark-gategit clone --depth 1 https://github.com/OutlineDriven/odin-claude-pluginWrote 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/outlinedriven/odin-claude-plugin/skill-benchmark-gate)<a href="https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/skill-benchmark-gate"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/skill-benchmark-gate.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00070 | $0.01121 |
| Opus 5 | $0.00035 | $0.00561 |
| Sonnet 5 | $0.00014 | $0.00224 |
| Haiku 4.5 | $0.00007 | $0.00112 |
Grade A, and why
skill-benchmark-gate 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 4d 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 — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill benchmark gate
Contract
| Field | Bound contract |
|---|---|
| Trigger | Before shipping any skill change; diagnosing weak skill activation, regressions, or context cost; setting release gates for skill packs |
| Authority | Read and evaluate the skill; write only gate logs and issue artifacts; do not ship the change |
| Side effect | Runs evaluation loops; writes run-log entries; opens follow-up issues on GitHub or equivalent tracker |
| Done | A reproducible PASS or FAIL record with case results, deltas, context cost, and failure issues |
Inputs
All inputs are required and must be explicit. No defaults are inferred from the procedure.
- Changed skill and comparison revision: the skill slug, the diff or branch under test, and the baseline revision to compare against.
- Explicit universal activation case set: the complete list of cases that must all show activation greater than 0% with the skill enabled. Every case must be named; no case is implied.
- Explicit critical regression case set and baseline: the list of critical scenarios and their recorded baseline results (pass/fail and context token count per scenario) from the comparison revision. Every scenario must be named with its baseline; no scenario is implied.
- Explicit context-budget ceiling: the maximum total context tokens the skill may load, stated as a number.
- Explicit iteration budget: the maximum number of evaluation iterations the gate may run, stated as a number.
Procedure
- Validate all gate inputs fail-closed. Confirm every required input is present and non-empty. If any input is missing or incomplete, fail immediately with
missing gate inputand name the missing input. Do not proceed to evaluation. Done when: all five required inputs are confirmed present and explicit. - Run activation cases. Execute each case in the universal activation set with the skill enabled. Record whether the skill fired (activated) or missed for each case. Done when: every case in the universal activation set is executed and its activation result is recorded.
- Run baseline and changed regression cases. Execute each critical regression scenario against the comparison revision (baseline) and against the changed skill. Record pass/fail and context token count per scenario for both. Done when: every critical regression scenario is executed against both baseline and changed skill, and results are recorded.
- Measure context cost. Sum the total context tokens loaded by the skill across all executed cases. Compare against the explicit context-budget ceiling. Done when: the total context cost is measured and compared against the ceiling.
- Emit PASS or FAIL and file one issue per failure. Apply the gate criteria:
- Universal activation: every case in the universal activation set must show activation greater than 0%. Any 0% activation is a gate failure.
- Regression deltas: compare each critical scenario's changed result against its recorded baseline. Any negative delta (baseline pass to changed fail, or increased token count) is a gate failure.
- Context budget: total context tokens must not exceed the explicit ceiling. An overrun is a gate failure.
- Iteration budget: if the iteration budget is exhausted before all cases are executed, the gate fails with
iteration budget exhausted. For each gate failure, open a follow-up issue with the failure class, scenario or case ID, observed value, and expected threshold. Write the run-log entry: timestamp, skill slug, change reference, case results, deltas, context cost, gate verdict, and filed issue references. Done when: the verdict is emitted, one issue is filed per failure (or none if the gate passed), and the run-log entry is written.
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.
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.
- 4d ago First seen · 55 lines · 70 tokens per session scan A 81e4a0b37a60
skill-benchmark-gate is a skill published in the GitHub repository OutlineDriven/odin-claude-plugin (35 stars, last pushed yesterday), licensed Apache-2.0. It adds 70 tokens to every session and 1,121 once invoked, about $0.0003 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-09-04.
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…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
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…