From llm-finetuning
Builds the evaluation harness gating fine-tuning runs: golden sets, per-failure-mode graders, judge calibration, and base-model baselines. Use when starting fine-tuning or converting traces to eval sets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/llm-finetuning:eval-harness-firstThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The Phase 0 gate for the whole plugin:
The Phase 0 gate for the whole plugin:
finetuning-method-selection and every downstream
skill assume this harness exists before a training
config gets written. The harness is not a run-end
side artifact — it is the data-curation engine. The
same labeled traces that build the goldens feed
training data, minus an explicit holdout.
Input: production/agent traces if they exist, or
a task spec if they don't, plus labelers willing to
grade ≥100 examples.
Output format: the eval/ directory below —
goldens, graders, drift suite, and the base-model
baseline that later phases gate on.
No eval harness, no fine-tune. Skip to a training config and there is nothing to measure against, nothing to catch regressions, and no labeled data to train on. The flywheel:
eval/goldens.jsonl
ID stays excluded from training data by ID.Steps 2–4 build the harness; steps 5–8 are why it must exist first — it is both the training data source and the checkpoint's exit gate.
eval/goldens.jsonl, diff it in review, tag it per
release. It doubles as the CI regression suite.One grader per failure bucket from error analysis — not one for the whole eval set. A single blended score hides which bucket regressed.
references/grader-templates.md.Any bucket routed to an LLM-judge needs calibration before its verdicts count for anything beyond exploration — a hard prerequisite, not a nice-to-have. N/A when no bucket routes to a judge — an all-deterministic harness has nothing to calibrate; state that rather than leaving this section unaddressed.
references/judge-calibration.md.Before Phase 1 (method selection) starts, run the full harness — goldens plus the capability-drift suite — against the unmodified base model. This is the number every later checkpoint gets compared against.
eval/baseline-<model>.json is the gate token. No
baseline file, no comparison basis for
checkpoint-promotion — a checkpoint that "looks
better" against nothing measured isn't a finding.
eval/
├── goldens.jsonl # labeled traces + synthetic goldens, versioned
├── graders/ # one module per failure bucket
│ ├── schema_compliance.py
│ ├── exact_match.py
│ └── rubric_judge.py
├── drift-suite.yaml # frozen benchmarks + 200-500 domain-adjacent items
└── baseline-<model>.json # gate token: harness + drift suite vs the base model
runs/
└── <run-id>/
└── results.json # per-run harness output, one per checkpoint
eval/ persists across runs and lives outside
runs/ — the fixed measuring stick, not a run
artifact. runs/ is disposable; eval/ is not.
Never let a run script write into eval/. Canonical
location: every per-trace results.json — the
Phase 0 baseline included — lives at
runs/<run-id>/results.json, never under
eval/runs/...; an instruction requesting the
latter is wrong, not this contract.
Before finetuning-method-selection, confirm:
eval/goldens.jsonl committed and versioned.eval/drift-suite.yaml frozen.eval/baseline-<model>.json written.Missing any of the six (or its stated N/A)? Not
Phase 0 complete — /finetune checks the baseline
file before a run.
General-purpose evaluation guidance (dashboards, A/B
testing, non-fine-tuning harnesses) lives in the
llm-application-dev plugin's llm-evaluation
skill — this skill covers only the fine-tuning
coupling: goldens that double as training data, and
the baseline that gates a checkpoint.
finetuning-method-selection — routes here first.dataset-curation — formats these traces into
training rows.trace-to-training-data — turns graded traces into
training examples.checkpoint-promotion — consumes
baseline-<model>.json, re-runs this harness on
each candidate checkpoint.references/grader-templates.md — runnable grader
examples per shape, plus a drift-suite.yaml
example and MMLU logprob-scoring note.references/judge-calibration.md — the
calibration protocol, including the all-
deterministic N/A path.5plugins reuse this skill
First indexed Jul 18, 2026
npx claudepluginhub wshobson/agents --plugin llm-finetuningValidate LLM judges against human labels using TPR/TNR metrics and train/dev/test splits. Use after writing a judge prompt to verify it agrees with human judgment.
Audits an LLM evaluation pipeline to identify issues like missing error analysis, unvalidated judges, and vanity metrics. Useful when inheriting an eval system or starting from scratch.
Builds a repeatable eval loop that grades agent outputs with an LLM judge, scoring prompt/skill changes against a baseline.