Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Diagnoses and fixes skills in the dotnet/skills repository that lose to their own baseline, fail to activate, time out, or return "no credible improvement". Use when an evaluation verdict is a regression or underpowered, when a skill regressed after a change, when /evaluate reports no results, or when deciding whether a weak skill should be strengthened or retired. Do not use for scaffolding a brand-new skill (use create-skill) or a brand-new eval (use create-skill-test).
.claude/skills/dotnet-improve-skill-quality/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 27% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 95% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 108% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 71% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 47% | 0% |
Turn a failing or unconvincing evaluation into a targeted fix. The single most common mistake in this repo is rewriting skill prose in response to a verdict whose real cause was the eval, the fixtures, or the harness. Classify first, then fix.
/evaluate reports "Evaluation ran but produced no results".create-skill.eval.yaml from scratch — use create-skill-test.eng/skill-validator, eng/vally-adapter, evaluation*.yml).| Input | Required | Description | |-------|----------|-------------| | Verdict evidence | Yes | The /evaluate PR comment, or results.json from the run artifacts | | Losing trial transcripts | Yes for content fixes | Baseline vs. skilled output plus the judge's stated reason | | Stimulus-vote W/T/L and repeated-run W/T/L | Yes | Separates cross-task evidence from reliability | | Activation status per arm | Yes | Isolated and plugin activation are different failures |
Read InvestigatingResults.md for how to download artifacts and read results.json. Extract, per failing stimulus:
Do not change skill content until you can quote a losing trial and the judge's reason for it. For the other cause classes the evidence is different: harness failures are diagnosed from the job log and the spec, and power problems from the trial record — neither has a losing trial to quote, and demanding one is what sends people rewriting prose instead.
Work down this table and stop at the first row that matches. Rows are ordered by how often the symptom has been misdiagnosed as a skill-content problem — the fixture row is first because a fixture failure also presents as a setup or reliability failure and gets misfiled as one.
| Symptom | Real cause class | Go to | |---------|------------------|-------| | A fixture does not build, is untracked by git, breaks for the wrong reason, or contradicts itself | Fixture | Step 4 | | No results.json, "produced no results", or the spec never loaded | Harness / spec-load | Step 3 | | Trials errored, timed out, or returned empty output | Reliability | Step 3 | | Trajectories unmatched, a trial errored, or the summary disagrees — verdict reported inconclusive | Reliability (not power) | Step 3 | | Positive record (e.g. 16W/8T/1L), comparison conclusive, verdict still not a pass | Statistical power | Step 5 | | Skilled arm equals baseline arm by construction | Eval design | Step 6 | | Activated and lost on quality, judge names a concrete defect | Skill content | Step 7 | | Activated in isolation, not in plugin | Activation / routing | Step 8 | | Not activated in either arm | Frontmatter description | Step 8 | | Wins but costs far more than baseline | Scope and cost | Step 7 |
A verdict is only a measured result when the comparison was conclusive: adapt.mjs requires zero errored trials, zero unmatched trajectories, and an agreeing summary before it will report a pass or a regression. Confirm that before reading a record as a power problem.
See references/eval-triage.md for the full catalogue. The recurring ones:
config: and defaults: is rejected by vally, the job still exits 0, andthe PR comment blames "transient infrastructure". Merge them into one defaults: block.
session.idlefailures look identical from the verdict and need harness fixes, not SDK pins.
expect_tools: [bash] on an advisory question forces a restore or build and turns an answer intoa timeout with no quality gain.
every grader and hides the real quality signal.
inconclusive: the remaining matched trials are biased, so the record is not a measured null and must not be read as a power or content problem.
Run python eng/eval-quality/check_eval_quality.py — it blocks eleven defect classes that can cost a real result here. Then confirm by hand:
meant to be broken fails for the exact reason the stimulus is about and no other;
git ls-files), not merely on disk — .gitignorehas silently swallowed committed coverage fixtures;
declared line-rate, summary totals and <line> elements differ is the canonical case — or the two arms legitimately read different truths.
The gate has two independent bars, and confusing them is the usual misdiagnosis:
underpowered — never a pass, never a regression.
discarded silently; they hold the discordant count down.
| discordant stimulus votes | records that pass | p | |---:|---|---:| | ≤ 4 | none, however good the skill | ≥ 0.0625 | | 5–7 | zero losses only (5W/0L) | 0.031 | | 8 | one loss survivable (7W/1L) | 0.035 |
So at exactly 5 stimuli a single tie is fatal — it leaves 4 discordant. At 6 stimuli one tie is survivable (5W/1T/0L); at 7, up to two are (5W/2T/0L). A loss is not.
So a positive record with a failing verdict is a power problem, not a content problem. Fix it by adding discriminating stimuli. Raising runs measures reliability for the same task and cannot clear the floor.
An eval that compares the skill against itself measures judge noise:
expect_activation: false) must not also set constraints.reject_skills.That makes the skilled arm skill-free, so the activation contract cannot observe a hijack. Schema version 4 retains the identical-arm comparison for diagnostics but excludes it from preference inference; unexpected isolated activation still blocks a pass.
disable-model-invocation: true is absent from the model-facing skilled arm, so itsdirect eval compares two identical arms regardless of whether graders inspect activation or answer content. Cover it through consumer outcomes instead; for example, filter-syntax is covered by run-tests and mtp-hot-reload.
config is missing its required key enforces nothing, so the stimulus has onefewer assertion than it appears to.
Only now change the skill. Apply the patterns in references/writing-for-baseline-delta.md; the ones that most often flip a loss:
answering more narrowly than the baseline did.
automatic loss.
references/ reads and size anyorchestration to the user's scope.
Activation failures are frontmatter and routing failures, not body failures. See references/eval-triage.md. Summary:
| Failure | Fix | |---------|-----| | Not activated in any arm | Put the user's own words in description: symptoms, error codes, artifact names, quoted requests | | A sibling skill wins the prompt | Claim the exact ambiguous words in description, and add matching exclusions on both siblings | | Model answers with no skill at all | Raise the stakes in the description, de-crowd the plugin menu, verify with the plugin arm | | Boundary excludes real scenarios | Re-read every "do not use for" clause against every eval prompt and real workflow phase | | Description at the 1,024-char ceiling | Cut restated body content, not trigger phrases; check the plugin menu budget too |
bashdotnet run --project eng/skill-validator/src/SkillValidator.csproj -- check --plugin ./plugins/<plugin> python eng/eval-quality/check_eval_quality.py ./eng/run-skill-evals.sh <plugin> <skill>
Then request the official run by submitting a PR review containing /evaluate (Files changed → Review changes), which binds the run to the reviewed commit. Before declaring a regression on the result, confirm the skill payload actually changed — reruns on byte-identical content have shifted 7W/2T/2L to 4W/5T/2L.
check_eval_quality.py and skill-validator check both pass.| Pitfall | Solution | |---------|----------| | Rewriting skill prose in response to an underpowered verdict | Underpowered means too few distinct stimuli; add discriminating stimuli instead | | Adding defaults: runs: to a spec that already has config: | Merge into a single defaults: block; vally rejects specs with both | | Padding runs to clear the stimulus floor | Repeats measure reliability for one task; add stimuli | | Treating an errored trial as fixture nondeterminism | Read the stderr first; judge-side auth failures need harness fixes | | Fixing a "wrong" answer that the fixture actually made wrong | Check fixture self-consistency before blaming the response | | Strengthening a skill nobody uses and nothing passes | Weak eval signal plus thin telemetry is a valid retirement case | | Landing a fix without re-running | Verify the invoked payload contains the fix; judge noise is real |
results.json. This is the current guide; the similarly-named eng/skill-validator/src/docs/InvestigatingResults.md documents the retired skill-validator evaluate schema and does not describe today's results.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-02 | fail→fail | 28,077 | 17,529 | -38% | 1 | 1 | 0% | 2,273 | 5,033 | +121% | 0 | 0 | — |
case-01 | fail→fail | 38,804 | 20,905 | -46% | 1 | 1 | 0% | 3,187 | 5,481 | +72% | 0 | 0 | — |
case-03 | fail→pass | 28,155 | 7,739 | -73% | 1 | 1 | 0% | 3,091 | 3,917 | +27% | 0 | 0 | — |
case-04 | fail→pass | 18,161 | 7,749 | -57% | 1 | 1 | 0% | 1,759 | 3,437 | +95% | 0 | 0 | — |
case-05 | pass→pass | 11,281 | 8,595 | -24% | 1 | 1 | 0% | 870 | 3,554 | +309% | 0 | 0 | — |
case-06 | pass→pass | 19,195 | 8,218 | -57% | 1 | 1 | 0% | 2,322 | 4,395 | +89% | 0 | 0 | — |
case-12 | fail→pass | 17,443 | 12,957 | -26% | 1 | 1 | 0% | 1,952 | 4,057 | +108% | 0 | 0 | — |
case-07 | pass→pass | 22,392 | 13,022 | -42% | 1 | 1 | 0% | 2,913 | 4,389 | +51% | 0 | 0 | — |
case-08 | pass→pass | 21,234 | 16,083 | -24% | 1 | 1 | 0% | 2,541 | 4,890 | +92% | 0 | 0 | — |
case-09 | fail→pass | 15,058 | 14,985 | -0% | 1 | 1 | 0% | 2,817 | 4,819 | +71% | 0 | 0 | — |
case-10 | fail→pass | 23,868 | 4,685 | -80% | 1 | 1 | 0% | 2,542 | 3,726 | +47% | 0 | 0 | — |
case-11 | pass→pass | 11,276 | 12,856 | +14% | 1 | 1 | 0% | 1,776 | 4,342 | +144% | 0 | 0 | — |
case-13 | fail→pass | 20,480 | 12,493 | -39% | 1 | 1 | 0% | 3,153 | 4,258 | +35% | 0 | 0 | — |
case-14 | pass→pass | 16,608 | 13,615 | -18% | 1 | 1 | 0% | 1,845 | 4,383 | +138% | 0 | 0 | — |
case-15 | pass→pass | 17,841 | 13,295 | -25% | 1 | 1 | 0% | 1,635 | 4,198 | +157% | 0 | 0 | — |
case-16 | pass→pass | 16,414 | 12,769 | -22% | 1 | 1 | 0% | 1,928 | 4,018 | +108% | 0 | 0 | — |
case-17 | pass→pass | 14,350 | 14,803 | +3% | 1 | 1 | 0% | 1,942 | 4,535 | +134% | 0 | 0 | — |
case-18 | fail→pass | 15,378 | 11,053 | -28% | 1 | 1 | 0% | 1,719 | 3,882 | +126% | 0 | 0 | — |
case-19 | fail→pass | 34,314 | 7,534 | -78% | 1 | 1 | 0% | 1,737 | 3,308 | +90% | 0 | 0 | — |
case-20 | pass→pass | 17,157 | 16,046 | -6% | 1 | 1 | 0% | 1,901 | 4,726 | +149% | 0 | 0 | — |
case-21 | fail→pass | 17,864 | 17,119 | -4% | 1 | 1 | 0% | 2,117 | 4,680 | +121% | 0 | 0 | — |
case-22 | fail→pass | 10,097 | 11,133 | +10% | 1 | 1 | 0% | 793 | 3,624 | +357% | 0 | 0 | — |
case-23 | fail→pass | 24,944 | 9,662 | -61% | 1 | 1 | 0% | 2,581 | 3,750 | +45% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +48 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/29/2026 | +59% |
Other measured skills in the registry, with their headline benchmark lift.