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 orlando-japan/claude-code-setting --skill evals-designgit clone --depth 1 https://github.com/orlando-japan/claude-code-settingWrote 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/orlando-japan/claude-code-setting/evals-design)<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>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.00034 | $0.01069 |
| Opus 5 | $0.00017 | $0.00535 |
| Sonnet 5 | $0.00007 | $0.00214 |
| Haiku 4.5 | $0.00003 | $0.00107 |
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.
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.
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.
- 8d ago First seen · 105 lines · 34 tokens per session scan A 09315e8d4f5a
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.
Other skills, from other repositories
darwinian-evolver
Evolve prompts/regex/SQL/code with Imbue's evolution loop.
agent-eval
Use when measuring whether an LLM or agent system actually got better and gating merges on it: golden sets, fixing an inflated LLM-as-judge, scoring RAG (faithfulness, contextual recall) or agent trajectories (tool correctness, completion), or picking an eval framework. NOT building the agent loop, tools or RAG…
prompt-engineering
Use when one prompt must give the same right answer across reruns, models, and pasted-in hostile input: forcing a fixed schema, picking the few-shot set, ordering the prompt blocks, or the inline cases you run while tuning. NOT the agent loop, tools, or retrieval (that is building-agents), NOT a standing CI eval…
recipe-eval-prompt
Compares original and optimized prompts through repeated blind paired execution in git worktrees. Use when evaluating prompt improvement effects or learning prompt engineering through concrete examples.
ai-hacker
Use when aI and LLM security testing — prompt injection, model manipulation, data exfiltration via AI. Use when testing AI-powered applications, finding prompt injection vulnerabilities, or assessing LLM-integrated systems.
guidance
Constrain LLM output with grammars; guarantee valid JSON.