evals-design

evals-design is a skill for Claude Code, Codex from orlando-japan/claude-code-setting. It costs 34 tokens per session (1,069 once invoked), scanned A, original, MIT.

A method for building a fixed test set that measures how well language-model prompts or models perform. An evaluation set compares outputs against expected answers or grading rules.

In plain words
What is it for?
Use it to test structured answers, length and content rules, safety constraints, or harder outputs judged by another language model.
Why use it?
It shows whether a prompt or model change improved results instead of relying on impressions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to test structured answers, length and content rules, safety constraints, or harder outputs judged by another language model.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orlando-japan/claude-code-setting/evals-design
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 orlando-japan/claude-code-setting --skill evals-design
Clone the repo
git clone --depth 1 https://github.com/orlando-japan/claude-code-setting

Made for: Claude Code, Codex.

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 evals-design

README.md
[![agentmods](https://agentmods.dev/badge/skills/orlando-japan/claude-code-setting/evals-design.svg)](https://agentmods.dev/skills/orlando-japan/claude-code-setting/evals-design)
Your own site
<a href="https://agentmods.dev/skills/orlando-japan/claude-code-setting/evals-design"><img src="https://agentmods.dev/badge/skills/orlando-japan/claude-code-setting/evals-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,069 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.00034 $0.01069
Opus 5 $0.00017 $0.00535
Sonnet 5 $0.00007 $0.00214
Haiku 4.5 $0.00003 $0.00107

Measured 8d ago against content hash 09315e8d4f5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

evals-design 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 8d 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.

templates/extra/skills/evals-design/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Evals design

Prompt engineering without evaluation is guessing. Evals are how you know if a prompt change made the output better, worse, or different-but-neither.

The core idea

An eval is a fixed set of (input, expected_output_or_grader) pairs that you run every prompt/model version against. You compare aggregate scores across versions.

prompt_v2 scores 0.87 on the eval set vs prompt_v1 at 0.81 → ship v2
prompt_v3 scores 0.79 → don't ship v3

Without this, you're going on vibes.

Three types of graders

1. Exact match / structured

For tasks with a right answer: classification, extraction, routing.

  • Input: "I can't log in, password reset isn't working"
  • Expected: {"category": "auth", "severity": "medium"}
  • Grader: exact match on the JSON.

Fast, cheap, deterministic. Use wherever possible.

2. Rule-based / programmatic

For tasks with constraints that are testable programmatically.

  • Length constraint: "summary ≤ 200 words"
  • Format constraint: "output is valid JSON"
  • Content constraint: "output contains one of these keywords"
  • Safety: "output does not contain PII"

Fast, cheap, composable with exact match.

3. LLM-as-judge

For tasks where "correctness" is subjective: summaries, explanations, creative output, rewrites.

A second LLM call evaluates the output against a rubric:

You are grading a summary. Given the original text and the summary,
rate 1-5 on:
- Faithfulness: does it accurately reflect the original?
- Completeness: does it cover the key points?
- Concision: is it free of filler?
Output JSON: {"faithfulness": N, "completeness": N, "concision": N}

Caveats:

  • LLM graders are biased. They prefer verbose output, their own outputs, and outputs that match their training distribution.
  • Use a different model for grading than for generating when possible.
  • Validate the grader against human labels on a subset. If the grader doesn't correlate with human judgment, it's useless.
  • Grading is non-deterministic. Run multiple samples.

Read the full file on GitHub · 105 lines

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. 8d ago First seen · 105 lines · 34 tokens per session scan A 09315e8d4f5a

Subscribe to this mod's changes

evals-design is a skill published in the GitHub repository orlando-japan/claude-code-setting (2 stars, last pushed 3mo ago), licensed MIT. It adds 34 tokens to every session and 1,069 once invoked, about $0.0002 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