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 jason21wc/ai-governance-mcp --skill eval-suitegit clone --depth 1 https://github.com/jason21wc/ai-governance-mcpWrote 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/jason21wc/ai-governance-mcp/eval-suite)<a href="https://agentmods.dev/skills/jason21wc/ai-governance-mcp/eval-suite"><img src="https://agentmods.dev/badge/skills/jason21wc/ai-governance-mcp/eval-suite/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.
<a href="https://agentmods.dev/skills/jason21wc/ai-governance-mcp/eval-suite"><img src="https://agentmods.dev/badge/skills/jason21wc/ai-governance-mcp/eval-suite.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00200 | $0.01019 |
| Opus 5 | $0.00100 | $0.00509 |
| Sonnet 5 | $0.00040 | $0.00204 |
| Haiku 4.5 | $0.00020 | $0.00102 |
Grade A, and why
eval-suite 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.
How it starts
The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Runtime Context
After the skill loads, inspect the branch, dependency manifests, and existing eval files with ordinary read-only calls. Select tooling from the detected stack; an empty eval corpus is a valid greenfield result.
Instructions
You are building an eval suite for a probabilistic feature — one whose output quality is a matter of degree, not equality. This is Eval-Driven Development (EDD), the Layer-B complement to TDD. Read procedure.md in this skill folder for the full protocol; the authority is CFR §5.2.8.
Quick Start
-
Collect the Runtime Context above, then confirm it's actually a Layer-B feature. If the output has one correct value computable from the input, this is the wrong skill — use TDD (
/test-suite, CFR §5.2.2, assert equality). EDD is for outputs that are one of many acceptable answers (generated text, extracted fields from messy input, estimates, classifications). -
Read
procedure.mdfor the full EDD loop. -
Execute the loop in order:
- Golden cases — curate ~5+ representative inputs across the three categories (control / edge / capability-limit), with expected properties anchored to the spec, not exact strings.
- Rubric — scored dimensions; prefer deterministic graders (arithmetic, schema, grounding-by-substring) and reserve an LLM-as-judge for genuinely subjective dimensions.
- Judge + threshold — score each output, pass = aggregate ≥ threshold, recorded as a rate (cases-passed ÷ cases). A capability-limit case that fabricates a value is an automatic fail.
- CI regression — store a dated baseline; fail when the pass-rate drops >~15% below it. Marker-gate judge-based evals out of default CI.
-
Surface the golden cases + rubric for human approval BEFORE trusting the eval as a gate (the Red/Green checkpoint — see Key Principles).
Key Principles
- Anchor to the spec, not the model's output. The Echo Chamber trap (
coding-quality-testing-integration) is worse here than in TDD — there is no compiler to catch a tautological eval. Never derive an expected property from what the model happened to produce. - Deterministic graders first. Anything checkable in code (totals add up, every figure traces to a source, schema valid) is a deterministic grader. The LLM-as-judge is the expensive, drifting fallback for subjective quality only.
- Who evals the evaluator? The judge is itself probabilistic. Pin and version the judge model + prompt, keep a small human-scored calibration set, and re-confirm the judge when its model changes.
- The cases are the definition of done. Golden cases + rubric must be human-approved before the eval gates anything — exactly as failing tests are approved under TDD.
- Tool-agnostic. Recommend the capability, not a tool. DeepEval (pytest-native, Python) and promptfoo (YAML, polyglot) are current starting points, not endorsements — pick what matches the stack.
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.
- 10d ago First seen · 45 lines · 200 tokens per session scan A 2ce125413894
eval-suite is a skill published in the GitHub repository jason21wc/ai-governance-mcp (0 stars, last pushed 10d ago), licensed Apache-2.0. It adds 200 tokens to every session and 1,019 once invoked, about $0.0010 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-31.
Other skills, from other repositories
cli-eval
Create and run evaluation suites, watch live benchmark progress, view scorecards, compare model performance, and integrate eval runs with CI workflows from the CLI.
model-merging
Merge multiple fine-tuned models using mergekit to combine capabilities without retraining. Use when creating specialized models by blending domain-specific expertise (math + coding + chat), improving performance beyond single models, or experimenting rapidly with model variants. Covers SLERP, TIES-Merging, DARE, Task…
darwinian-evolver
Evolve prompts/regex/SQL/code with Imbue's evolution loop.
validate
Validate Semantica pipelines, extraction quality, graph schemas, and ontology consistency. Returns structured error/warning checklists. Uses PipelineValidator, PipelineBuilder.validatepipeline(), GraphValidator, and OntologyValidator. Sub-commands: pipeline, step, dependencies, extraction, graph, ontology, performance.
launching-evals
Run, monitor, analyze, and debug LLM evaluations via nemo-evaluator-launcher. Covers running evaluations, checking status and live progress, debugging failed runs, exporting artifacts and logs, and analyzing results. ALWAYS triggers on mentions of running evaluations, checking progress, debugging failed evals…
nemo-automodel-recipe-development
Create and modify NeMo AutoModel training and evaluation recipes, including YAML structure, builders, and execution flow.