New to Claude Skills? Learn how to install them →

mims-harvard on GitHub

Benchmark Harness

Free

Enhance ToolUniverse tools with systematic evaluation.

Get this skill

Free · Opens the source repo

What Benchmark Harness does

The Benchmark Harness is a continuous improvement system designed for ToolUniverse tools, skills, and plugins. It implements a structured 5-step feedback loop that facilitates the benchmarking process, enabling developers to run evaluations, analyze results, diagnose failures, apply fixes, and retest. This systematic approach ensures that tools remain reliable and effective over time, particularly after optimizations or the addition of new features.

The skill operates through a series of scripts that automate the benchmarking process. By executing a single command, users can initiate a comprehensive evaluation cycle that includes a memorization audit, benchmark execution, result analysis, and failure diagnosis. The output is organized into a timestamped directory that captures all relevant results and logs, making it easy to track performance over time. This is particularly useful for developers who need to ensure their tools are not only functional but also continuously improving.

One of the key features of the Benchmark Harness is its anti-memorization guard, which prevents overfitting by ensuring that no specific benchmark identifiers or answers are hardcoded into the skills. This is crucial for maintaining the integrity of the evaluation process and ensuring that the tools are generalizable across different datasets. Additionally, the skill provides clear guidance on how to address identified issues, routing users to the appropriate devtu skills for fixes, thus promoting best practices in tool development.

The Benchmark Harness is ideal for developers and teams working within the ToolUniverse ecosystem who are focused on maintaining high-quality, reliable tools. It is particularly beneficial in environments where tools are frequently updated or optimized, as it provides a systematic way to validate changes and ensure ongoing performance improvements.

When to use it

Use this skill when you need to evaluate and enhance the performance of ToolUniverse tools after updates or optimizations.

When not to use it

This skill is not suitable for one-off evaluations or for tools outside the ToolUniverse ecosystem.

What you can build with it

Routine Tool Evaluation

Run the Benchmark Harness after every major update to ensure that the tool functions correctly and meets performance standards.

Diagnosing Tool Failures

Use the analyze_results.py script to identify which skills are underperforming and require attention.

Preventing Overfitting

Implement the anti-memorization guard before any skill edits to maintain the generalizability of your tools.

How to install Benchmark Harness

View source

1. Install with the skills CLI

npx skills add mims-harvard/tooluniverse/devtu-benchmark-harness --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mims-harvard

Benchmark Harness — Continuous Improvement System

A 5-step feedback loop for improving ToolUniverse tools, skills, and plugin quality.

Note: This skill is dataset-agnostic. Per-benchmark score history, known-failing question IDs, and dataset-specific investigations belong in temp_docs_and_tests/benchmark_tracking/ (gitignored workfolder), NOT in this skill directory.

The Feedback Loop

1. RUN benchmark → 2. ANALYZE results → 3. DIAGNOSE failures → 4. FIX via devtu skill → 5. RETEST → repeat

Orchestrated runner (preferred)

One command does steps 0 (memorization audit), 1 (build), 2 (run), 3 (analyze), 4 (diagnose + extract failures):

bash skills/devtu-benchmark-harness/scripts/run_harness_loop.sh --benchmark bixbench --n 20 --seed 42
# After reviewing diagnose.log and applying devtu skill fixes:
bash skills/devtu-benchmark-harness/scripts/run_harness_loop.sh --retest /path/to/failures.json

The script creates temp_docs_and_tests/benchmark_tracking/run_<TS>/ with results.json, analysis.log, diagnose.log, failures.json. Diagnose output lists each failure with the exact devtu skill to invoke — do NOT fix manually.

Anti-memorization guard

Before accepting any skill edit (from devtu-optimize-skills or manual), run:

python3 skills/devtu-benchmark-harness/scripts/check_memorization.py --all

Fails if any skill contains benchmark names, capsule UUIDs, bix-N question IDs, or known-to-be-GT specific numeric answers. This prevents overfitting the plugin to a single benchmark's answer key. Run in --strict mode to also flag specific gene names and dataset filenames (softer signal).

Step 1: RUN — Execute Benchmark

bash scripts/build-plugin.sh   # rebuild plugin with latest skills

python skills/devtu-benchmark-harness/scripts/run_eval.py \
  --benchmark bixbench \        # bixbench | lab-bench | custom
  --mode plugin-only \          # plugin-only | baseline-only | comparison
  --n 205 \                     # number of questions
  --timeout 1800 \              # seconds per question
  --max-turns 30                # agent turns per question

Options: --category DESeq2 (filter), --resume results.json (skip done), --guidance path.md (inject custom).

Reliability mode: APPEND_CONVENTIONS env var

Skill auto-matching in interactive mode is variable — sometimes Claude reads the skill description but starts writing code before loading the skill body. To force the router's critical conventions into every request's system prompt (more reliable, measures the plugin's conventions as-designed rather than skill-routing-as-implemented):

APPEND_CONVENTIONS=1 python skills/evals/run_benchmark.py --benchmark bixbench --plugin-only

Use this mode when measuring the CORRECTNESS of the conventions (are they the right rules?). Use default mode when measuring the RELIABILITY of skill routing (does Claude actually invoke the skill?). The gap between these two numbers is the routing-reliability problem.

Benchmark setup (first time only)

Rscript skills/evals/install_r_packages.R                  # R packages
python3 skills/evals/bixbench/download_capsules.py         # BixBench data (~5 GB)

Available benchmarks

BenchmarkQuestionsTestsData
lab-bench20 MCQDatabase lookup accuracyskills/evals/lab-bench/questions.json
bixbench205 computationalData analysis + statisticsskills/evals/bixbench/questions.json + capsule data
customUser-definedAnyCustom JSON file

Step 2: ANALYZE — Map Failures to Skills

python skills/devtu-benchmark-harness/scripts/analyze_results.py \
  --results results.json \
  --questions skills/evals/bixbench/questions.json \
  --benchmark bixbench

Output:

  • By skill: which skills have lowest accuracy (fix those first)
  • By category: DESeq2, ANOVA, phylogenetics, variant_analysis, etc.
  • Failure types: timeout, wrong_answer, tool_error, api_key_missing

Category → Skill mapping

CategorySkill
DESeq2, fold_changetooluniverse-rnaseq-deseq2
ANOVA, regression, chi_square, spline_fittingtooluniverse-statistical-modeling
pathway_enrichment, DESeq2+enrichGOtooluniverse-gene-enrichment
phylogeneticstooluniverse-phylogenetics
variant_analysis, epigenomicstooluniverse-variant-analysis
crispr_screen, functional_genomicstooluniverse-crispr-screen-analysis
single_celltooluniverse-single-cell

Step 3: DIAGNOSE — Get Improvement Recommendations

python skills/devtu-benchmark-harness/scripts/analyze_results.py \
  --results results.json \
  --questions skills/evals/bixbench/questions.json \
  --diagnose

Each recommendation includes the failing category, responsible skill, failure type, and which devtu skill to invoke for the fix.

Root cause investigation

For each failure, verify whether it's an agent error or a GT (ground truth) issue:

  1. Find the capsule data: temp_docs_and_tests/bixbench/bixbench/data/CapsuleFolder-{uuid}/
  2. Look for authoritative scripts: *.py, *.R, analysis.R, run_*.py
  3. Run the script yourself — does it reproduce the GT value?
  4. If your computation matches the agent (not the GT), it's a GT issue, not an agent error

Step 4: FIX — Route to the Right devtu Skill

Do not fix manually — use devtu skills so fixes follow established patterns and include tests.

DiagnosisWhat to doInvoke
Tool returns wrong dataFix tool code + JSON configSkill('devtu-fix-tool')
No tool exists for this computationCreate new ToolUniverse toolSkill('devtu-create-tool')
Skill gives wrong guidanceUpdate SKILL.md conventionsSkill('devtu-optimize-skills')
Agent needs bundled scriptAdd script to skill's scripts/ dirSkill('devtu-optimize-skills') Pattern 15
Grader false negativeFix grade_answers.pyDirect code fix
Multiple coordinated changesFull cycleSkill('devtu-self-evolve')

Fix workflow

1. analyze_results.py --diagnose → get recommendations
2. For each recommendation → invoke the appropriate devtu skill
3. bash scripts/build-plugin.sh → rebuild dist
4. run_eval.py --retest failures.json → verify fix

Example

Diagnosis: "ANOVA wrong_answer → tooluniverse-statistical-modeling"
  → Invoke: Skill('devtu-optimize-skills')
  → Tell it: "statistical-modeling skill produces wrong F-statistics for
     per-gene expression ANOVA. Agent aggregates at sample level instead
     of gene level."
  → The skill handles: read SKILL.md, add convention, verify no
     memorization, rebuild, suggest retest.

Step 5: RETEST — Verify Fixes

# Extract failed question IDs
python skills/devtu-benchmark-harness/scripts/analyze_results.py \
  --results results.json --extract-failures /tmp/failures.json

# Retest only failures
python skills/devtu-benchmark-harness/scripts/run_eval.py \
  --benchmark bixbench --mode plugin-only --retest /tmp/failures.json

Compare: how many flipped from wrong to correct? Update baseline if improved.

Grader

grade_answers.py applies 7 strategies in order:

  1. Exact match — GT substring in prediction
  2. MC match — letter answer detection (A/B/C/D)
  3. Range match — numeric value within (low, high) with rounding tolerance
  4. Normalized match — strip punctuation, bidirectional substring + bold-segment extraction
  5. Numeric proximity — within 5% tolerance
  6. Synonym match — scientific term equivalences
  7. LLM verifier — Claude judges semantic correctness (for eval_mode=llm_verifier)

Unicode normalization: minus signs (U+2212), superscript exponents (10⁻²⁶ → e-26).

# Re-grade with LLM
python skills/devtu-benchmark-harness/scripts/grade_answers.py \
  --results results.json --output graded.json --llm

Plugin Architecture

The ToolUniverse plugin uses router-only skill matching:

1 auto-matchable skill: "tooluniverse" (router, ~300 chars)
  └── Routing table → 113 sub-skills (all disable-model-invocation: true)

Why: Claude Code has a character budget for skill descriptions (~1% of context). 114 skills × 500 chars = 57K exceeds budget → descriptions get dropped. With 1 router, the agent always sees it and routes correctly.

In -p mode, skills don't auto-match. The benchmark runner simulates interactive behavior via full_skill_injection mode: programmatically detects matching skill, injects its full SKILL.md content.

Integration with devtu-self-evolve

Insert as Phase 3.5 between Testing and Fix:

Phase 3 (Test) → Phase 3.5 (Benchmark) → Phase 4 (Fix via devtu) → Phase 5 (Retest)

Known Failure Patterns

The --diagnose flag references these patterns:

PatternRoot causeFix action
DESeq2 wrong_answerpydeseq2 vs R disagreement, wrong set operationsdevtu-optimize-skills on rnaseq-deseq2
ANOVA wrong_answerF-stat vs p-value confusion, wrong aggregationdevtu-optimize-skills on statistical-modeling
spline wrong_answerR ns() ≠ Python patsy; endpoint inclusion variesdevtu-optimize-skills on statistical-modeling
phylogenetics wrong_answerPhyKIT output column selection, file pairingdevtu-fix-tool on phykit_batch_analysis
variant wrong_answerMulti-row Excel headers, coding-variant denominatordevtu-optimize-skills on variant-analysis
enrichGO wrong_answerR clusterProfiler version sensitivitydevtu-fix-tool on run_deseq2_analysis
timeoutPipeline >30 min (Trimmomatic, GATK)devtu-create-tool to wrap pipeline
GT issueGround truth unreproducible with current toolsDocument in results, exclude from score

Skill convention rules

When adding conventions to skills from benchmark findings:

  • General knowledge only — no dataset-specific values, no memorized answers
  • Principles over examples — "per-gene ANOVA not per-sample" rather than "F=0.77 on this dataset"
  • Tool preferences — "use R DESeq2 for dispersion" rather than "R gives 4, pydeseq2 gives 2"
  • Verify no contamination — grep for dataset names, specific numeric answers in the convention text

Frequently asked questions about Benchmark Harness

Similar skills