eval-suite

eval-suite is a skill for Claude Code from jason21wc/ai-governance-mcp. It costs 200 tokens per session (1,019 once invoked), scanned A, original, Apache-2.0.

A test-suite builder for AI features whose answers can vary while still being acceptable, such as generated text, extraction, estimates, summaries, or classifications.

In plain words
What is it for?
Use it to create an Eval-Driven Development suite with control, edge, and capability-limit cases, provided the feature’s expected quality can be judged by properties rather than exact values.
Why use it?
It provides representative test cases and scoring rules for outputs that cannot be checked by comparing them with one single exact answer.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to create an Eval-Driven Development suite with control, edge, and capability-limit cases, provided the feature’s expected quality can be judged by properties rather than exact values.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jason21wc/ai-governance-mcp/eval-suite
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 jason21wc/ai-governance-mcp --skill eval-suite
Clone the repo
git clone --depth 1 https://github.com/jason21wc/ai-governance-mcp

Made for: Claude Code.

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 eval-suite

README.md
[![agentmods](https://agentmods.dev/badge/skills/jason21wc/ai-governance-mcp/eval-suite/github.svg)](https://agentmods.dev/skills/jason21wc/ai-governance-mcp/eval-suite)
Your own site
<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.

agentmods 80×15 button for eval-suite

Your own site · 80×15
<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>
Per session 200 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,019 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.
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.00200 $0.01019
Opus 5 $0.00100 $0.00509
Sonnet 5 $0.00040 $0.00204
Haiku 4.5 $0.00020 $0.00102

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

Security

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.

global-skills/eval-suite/SKILL.md · 45 lines

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

  1. 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).

  2. Read procedure.md for the full EDD loop.

  3. 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.
  4. 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.

Read the full file on GitHub · 45 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 · 45 lines · 200 tokens per session scan A 2ce125413894

Subscribe to this mod's changes

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.

Related

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.

diegosouzapw/OmniRoute · 34 tokens

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…

davila7/claude-code-templates · 73 tokens

darwinian-evolver

Evolve prompts/regex/SQL/code with Imbue's evolution loop.

NousResearch/hermes-agent · 22 tokens

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.

semantica-agi/semantica · 0 tokens

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…

NVIDIA/Model-Optimizer · 115 tokens

nemo-automodel-recipe-development

Create and modify NeMo AutoModel training and evaluation recipes, including YAML structure, builders, and execution flow.

NVIDIA/skills · 31 tokens