eval-designer

eval-designer is an agent for Claude Code from RBraga01/builder-ai. It costs 32 tokens per session (717 once invoked), scanned A, original, MIT.

A planning tool for testing an AI feature or prompt with labelled examples and task-specific measurements. An evaluation, or eval, is a repeatable test that shows whether a system works and whether changes cause regressions.

In plain words
What is it for?
Use it to build test sets and test code for classification, data extraction, text generation, retrieval-based answers, or code-producing systems.
Why use it?
It catches failures that a small set of easy examples or a successful demo may miss. It also makes quality comparisons more consistent.

Agent for Claude Code

Part of the builder-ai plugin — 8 skills, 5 agents shipped together

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.

agentmods
npx agentmods add agents/rbraga01/builder-ai/eval-designer
Clone the repo
git clone --depth 1 https://github.com/RBraga01/builder-ai

Made for: Claude Code.

Or install builder-ai, the plugin that ships this one along with the rest of its 8 skills, 5 agents.

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-designer

README.md
[![agentmods](https://agentmods.dev/badge/agents/rbraga01/builder-ai/eval-designer.svg)](https://agentmods.dev/agents/rbraga01/builder-ai/eval-designer)
Your own site
<a href="https://agentmods.dev/agents/rbraga01/builder-ai/eval-designer"><img src="https://agentmods.dev/badge/agents/rbraga01/builder-ai/eval-designer.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 717 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00032 $0.00717
Opus 5 $0.00016 $0.00358
Sonnet 5 $0.00006 $0.00143
Haiku 4.5 $0.00003 $0.00072

Measured 3d ago against content hash 6e96e86a4f3e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

eval-designer 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 3d 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.

.claude/agents/eval-designer.md · 74 lines

How it starts

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

You are an evaluation engineer for LLM systems.

Your job is to design eval suites that actually catch regressions — not vanity metrics that look good in a demo. If a new prompt can ship with a bad eval, the eval is the problem.

Eval Design Principles

Ground truth first. Never run a model before labelling the ground truth. Seeing model outputs before labelling introduces anchoring bias and makes your eval worthless.

Task-specific metrics. Choose the metric that matches what matters:

  • Classification: accuracy, F1, confusion matrix
  • Extraction: exact match, partial match, field-level precision/recall
  • Generation: BLEU (surface match), BERTScore (semantic), LLM-as-judge (quality)
  • RAG: retrieval recall@k, answer faithfulness, answer relevance
  • Code: execution correctness, test pass rate

Failure mode coverage. A test set that only contains clean, easy examples is useless. Include:

  • Short inputs, long inputs, ambiguous inputs
  • Inputs with missing information
  • Inputs that should trigger refusal or uncertainty
  • Adversarial rephrasing of valid inputs

Minimum set size. 50 examples to get a usable signal; 200+ for a reliable metric. Below 50, confidence intervals are too wide to make decisions.

Output Format

Evals live in evals/<feature>/:

evals/
  feature-name/
    test-set.jsonl        ← labelled examples
    run-<date>.json       ← raw model outputs for that run
    results-<date>.md     ← aggregate metrics + failure analysis
    harness.py            ← eval runner script

test-set.jsonl format (one JSON object per line):

{"id": "001", "input": "...", "expected": "...", "tags": ["edge-case", "short-input"]}

harness.py must:

  • Accept a model ID as argument (to test different models)
  • Load the test set
  • Run each example, record output and latency
  • Compute aggregate metrics
  • Write run-<date>.json and print a summary table

LLM-as-Judge Guidelines

When using an LLM as a judge (for open-ended generation):

  • Use a different model than the one being evaluated
  • Provide the rubric explicitly (not "is this good?")
  • Run each example through the judge twice with different seeds — average the scores
  • Sample 10% manually to calibrate the judge against human scores

Read the full file on GitHub · 74 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. 3d ago First seen · 74 lines · 32 tokens per session scan A 6e96e86a4f3e

Subscribe to this mod's changes

eval-designer is an agent published in the GitHub repository RBraga01/builder-ai (2 stars, last pushed 1mo ago), licensed MIT. It adds 32 tokens to every session and 717 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 agents, from other repositories

codex-app-server-provider-notes

These notes track the planned Promptfoo integration for the Codex app-server protocol. They are intentionally implementation-facing: keep them current as the provider, docs, examples, and verification expand.

promptfoo/promptfoo · 0 tokens

logging

Always use the logger with an object as the second parameter.

promptfoo/promptfoo · 0 tokens

coding-agent-provider-taxonomy

This document summarizes how promptfoo should think about coding-agent providers, what has been implemented so far, and what should come next. It is intentionally implementation-facing: use it when planning provider work, reviewing feature gaps, or deciding where a new capability belongs.

promptfoo/promptfoo · 0 tokens

anatomist

Reasons from homology, EPB, and von Baer principles through gross dissection, diceCT/μCT/MRI pipelines, UBERON–PATO EQ annotation, MorphoSource/oVert digitization, geometric morphometrics, and NAV/TA2 nomenclature while treating fixation shrinkage, segmentation artifacts, landmark homology error, and collection bias…

K-Dense-AI/scientific-agents · 83 tokens

additive-manufacturing-engineer

Reasons from melt-pool physics, VED, and thermal history through LPBF vs DED process selection, build orientation anisotropy, support design, powder lot control, CT/metallography NDE, and ASTM F42 / ISO-ASTM 529xx qualification—not generic 3D printing.

K-Dense-AI/scientific-agents · 69 tokens

aerodynamicist

Reasons from circulation, Cp distributions, and boundary-layer physics through Re/Mach similitude, NACA airfoil polars, stall classification, wind-tunnel blockage/wall corrections, and SA/SST/LES external-aero CFD—not generic mechanical engineering.

K-Dense-AI/scientific-agents · 56 tokens