Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Design or audit the clinical-validation study for an engineer-built medical-imaging model (segmentation, classification, or detection) before the validation report or manuscript is written. Covers patient-level split disjointness and the data-leakage taxonomy, tuning-on-test, internal versus genuine external validation, comparator design, single-run versus multi-seed variance, task-correct metric selection, test-set sizing, and CLAIM 2024 / TRIPOD+AI / STARD-AI reporting fit. Ships a determinist
.claude/skills/aperivue-model-validation/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 30% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 132% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 106% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 113% | 0% |
This skill pressure-tests the validation study for an engineer-built medical-imaging model — the common case where a clinical team receives a trained segmentation / classification / detection model from an engineering collaborator and must validate it and write it up. It is the imaging-model specialization of /design-study: where design-study covers general validity and design-ai-benchmarking covers AI-versus-human-expert reader studies, this skill owns the partition, leakage, reproducibility, and metric-selection mechanics that decide whether a reported Dice / AUROC / sensitivity is trustworthy.
It is advisory and deterministic-audit only. It writes decision notes and runs a stdlib gate on the split table; it never builds, trains, or alters the model, and it never replaces MONAI / nnU-Net / TorchIO — those produce the model, this validates and publishes it.
or audited before submission.
/design-ai-benchmarking./mllm-eval (when available)./design-study./analyze-stats./check-reporting./self-review or /peer-review (which load the MD0–MD11reviewer-side probe).
The design/audit rationale behind Phases 2–7 — the full data-leakage taxonomy, the internal-vs-genuine-external validation ladder, comparator design, single-run vs multi-seed variance, test-set sizing, and the CLAIM 2024 / TRIPOD+AI / STARD-AI reporting map — is in ${CLAUDE_SKILL_DIR}/references/validation_design.md (load on demand). The patient-disjointness verdict itself is proven by scripts/check_split_leakage.py (Phase 2), not from that prose.
State the model's task (segmentation / classification / detection), its intended-use horizon (screening, triage, pre-procedure, post-hoc), the single headline metric the conclusion leans on, and the analysis unit the metric must respect (per-patient vs per-lesion vs per-image). Everything downstream is read against this.
The most metric-inflating defect is a split that is not disjoint at the patient level. Produce the emitted split-assignment table (patient_id,split) and run the gate:
bashpython3 ${CLAUDE_SKILL_DIR}/scripts/check_split_leakage.py \ --splits <split_assignment.csv> --out qc/split_leakage.json --strict
PATIENT_OVERLAP (a patient in ≥ 2 partitions) and MISSING_SEED (an unreproducible split) are proven by set arithmetic — not heuristics. Then walk the rest of the leakage taxonomy (Kapoor & Narayanan, Patterns 2023) that the table cannot show: preprocessing-before-split (normalisation, resampling, foundation-model embeddings, or ComBat harmonisation fit on the whole cohort before partitioning), site / scanner / burned-in-label shortcuts, and temporal leakage (a random split where future and past coexist). The decisive question: could any value used in training have been computed only with knowledge of a test case?
Classify the evidence honestly: apparent → internal random split → cross-validation → temporal → geographic / external (different site, scanner, vendor) → multi-site external. Cross-validation and bootstrap are development-time optimism corrections, not external validation. Flag a generalisability or deployment claim that outruns an internal-only design, and "developed with external validation" where the single external set was used for tuning. Also confirm the test set was touched once — no architecture search, hyperparameter sweep, early-stopping, or operating-point / threshold choice read the test set.
Decide what the model is compared against: clinical-only baseline, incremental value over an existing score, or reader comparison. For a reader comparison, hand the rubric / inter-rater design to /design-ai-benchmarking.
Match the metric to the task and the prevalence (Metrics Reloaded — Maier-Hein & Reinke et al., Nat Methods 2024): segmentation pairs an overlap metric (Dice / IoU) with a boundary metric (HD95 / Normalised Surface Distance), per-structure not only global; classification under imbalance reports AUROC and AUPRC with CIs plus sensitivity / specificity and prevalence-dependent PPV / NPV, never bare accuracy on a balanced set; detection reports FROC / mAP with the IoU match criterion stated. Require the headline metric as mean ± SD across ≥ 3 seeds / runs, or a fixed reported seed with the determinism caveat. The per-case metric computation + the deterministic metric-reporting gate live in /model-evaluation (which emits the per-case table for /analyze-stats). For interactive / promptable segmentation (SAM2 / MedSAM2 / nnInteractive) the metric set adds the interaction axis — number of clicks / interactions-to-threshold (NoC), initial-vs-converged Dice, and per-case interaction / inference time (/model-evaluation --task interactive). When the evaluation runs two arms (simulated prompting + human-operator validation), record protocol fidelity across arms — identical prompt types, stopping rule, target threshold, and seeds — as an explicit validity item: arm-to-arm comparability is the precondition for reading the human-operator arm as validating the simulated one, and the human-operator arm design is in /design-study.
Check the events per class in the test set, not the cohort total — a metric on a sparse positive set has a confidence interval spanning much of the usable range, and calibration needs roughly ≥ 100 events. Hand the formal sizing (diagnostic-accuracy / AUC precision / agreement) to /calc-sample-size.
Retrospective external validation shows accuracy transfers; it does not show the model is safe and useful in the clinical workflow. If the claim is clinical use — not just discrimination — design the higher tier explicitly: silent / shadow deployment (live cases, no care impact, prospective performance + calibration targets) → prospective comparative / impact study or RCT on a clinical endpoint → post-deployment monitoring for performance / dataset-shift / calibration drift with recalibration-or-withdrawal triggers and ongoing subgroup-performance audit. See references/validation_design.md §2b. Scope the claim to the tier reached — a retrospective external study must not claim deployment readiness or clinical-outcome benefit.
Map the study to its reporting standard via /check-reporting: CLAIM 2024 (diagnostic imaging AI), TRIPOD+AI (prediction model), STARD-AI (diagnostic accuracy), PROBAST+AI (risk of bias), and — for a prospective/live evaluation (Phase 6.5) — DECIDE-AI (early clinical evaluation of decision-support AI) or CONSORT-AI / SPIRIT-AI (full AI trials / protocols).
Carry the audited design into /write-paper (Methods), /calc-sample-size (sizing), /check-reporting (compliance), and — for the reviewer-side audit of the finished draft — /self-review, which loads the model_development.md (MD0–MD11) probe.
scripts/check_split_leakage.py — proves patient-level split disjointness + seed presence on the emitted split-assignment table (stdlib, network-free). Verdicts: PATIENT_OVERLAP (Major), MISSING_SEED (Major), SINGLE_PARTITION (Minor). Reproducible challenge: bash ${CLAUDE_SKILL_DIR}/scripts/check_split_leakage_challenge/verify.sh.
from the engineer's executed code, the supplied split table, or a re-run of the deterministic gate — never invented. A reported Dice / AUROC / overlap count with no underlying record is the failure mode this skill exists to prevent.
check_split_leakage.py. The patient-disjointnessverdict is proven by the script, not asserted from prose.
/search-lit (confirmed DOI / PMID); mark unverified ones [UNVERIFIED - NEEDS MANUAL CHECK]. If a CLAIM 2024 / TRIPOD+AI / Metrics-Reloaded item is uncertain, flag [VERIFY] and ask the user rather than guessing.
support — classify the validation tier honestly and let the evidence cap the claim.
design-study (general validity)
└─ model-validation (this skill: leakage, split, comparator, metric, sizing handoff)
├─ check_split_leakage.py (deterministic patient-disjointness gate)
├─ calc-sample-size (test-set / event sizing)
├─ design-ai-benchmarking (reader-comparison rubric / IRR)
├─ check-reporting (CLAIM 2024 / TRIPOD+AI / STARD-AI)
└─ write-paper -> self-review / peer-review (MD0–MD11 reviewer probe)It does not build the model (integrate MONAI / nnU-Net), compute publication statistics (/analyze-stats owns DeLong / ICC / calibration tables), or evaluate an LLM / MLLM (/mllm-eval).
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 30,108 | 35,307 | +17% | 1 | 1 | 0% | 5,515 | 7,172 | +30% | 0 | 0 | — |
case-02 | fail→fail | 36,360 | 5,528 | -85% | 1 | 1 | 0% | 6,263 | 3,059 | -51% | 0 | 0 | — |
case-14 | pass→pass | 10,785 | 10,666 | -1% | 1 | 1 | 0% | 1,736 | 4,196 | +142% | 0 | 0 | — |
case-03 | fail→pass | 34,509 | 25,893 | -25% | 1 | 1 | 0% | 6,241 | 6,670 | +7% | 0 | 0 | — |
case-04 | pass→pass | 13,585 | 12,276 | -10% | 1 | 1 | 0% | 2,211 | 4,468 | +102% | 0 | 0 | — |
case-05 | pass→pass | 11,448 | 11,248 | -2% | 1 | 1 | 0% | 1,770 | 4,303 | +143% | 0 | 0 | — |
case-06 | pass→pass | 18,237 | 17,344 | -5% | 1 | 1 | 0% | 2,862 | 5,282 | +85% | 0 | 0 | — |
case-07 | pass→pass | 16,283 | 16,249 | -0% | 1 | 1 | 0% | 2,704 | 5,104 | +89% | 0 | 0 | — |
case-08 | pass→pass | 13,303 | 13,926 | +5% | 1 | 1 | 0% | 2,141 | 4,816 | +125% | 0 | 0 | — |
case-09 | pass→pass | 11,564 | 11,393 | -1% | 1 | 1 | 0% | 1,743 | 4,410 | +153% | 0 | 0 | — |
case-10 | pass→pass | 14,478 | 16,628 | +15% | 1 | 1 | 0% | 2,510 | 5,360 | +114% | 0 | 0 | — |
case-11 | pass→pass | 15,102 | 10,733 | -29% | 1 | 1 | 0% | 2,145 | 4,239 | +98% | 0 | 0 | — |
case-12 | pass→pass | 16,261 | 16,804 | +3% | 1 | 1 | 0% | 2,589 | 5,211 | +101% | 0 | 0 | — |
case-13 | fail→pass | 7,870 | 3,884 | -51% | 1 | 1 | 0% | 1,405 | 3,258 | +132% | 0 | 0 | — |
case-15 | pass→pass | 12,418 | 10,828 | -13% | 1 | 1 | 0% | 1,873 | 4,138 | +121% | 0 | 0 | — |
case-16 | pass→pass | 11,670 | 10,055 | -14% | 1 | 1 | 0% | 1,839 | 4,073 | +121% | 0 | 0 | — |
case-17 | pass→pass | 17,584 | 17,725 | +1% | 1 | 1 | 0% | 2,963 | 5,271 | +78% | 0 | 0 | — |
case-18 | fail→pass | 16,989 | 3,320 | -80% | 1 | 1 | 0% | 1,525 | 3,138 | +106% | 0 | 0 | — |
case-19 | fail→pass | 8,962 | 5,642 | -37% | 1 | 1 | 0% | 1,657 | 3,529 | +113% | 0 | 0 | — |
case-20 | fail→pass | 25,966 | 11,040 | -57% | 1 | 1 | 0% | 5,412 | 4,435 | -18% | 0 | 0 | — |
case-21 | fail→fail | 11,698 | 9,914 | -15% | 1 | 1 | 0% | 2,075 | 4,208 | +103% | 0 | 0 | — |
case-22 | fail→pass | 12,063 | 7,839 | -35% | 1 | 1 | 0% | 2,036 | 3,823 | +88% | 0 | 0 | — |
case-23 | fail→pass | 26,972 | 8,144 | -70% | 1 | 1 | 0% | 5,228 | 3,780 | -28% | 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, and 22 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +35 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
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.
Other measured skills in the registry, with their headline benchmark lift.