experiment-forensics

experiment-forensics is a skill for Claude Code from wenhaochai/claude-plugins. It costs 237 tokens per session (13,765 once invoked), scanned A, a copy of experiment-forensics, MIT.

A review tool for checking whether a research paper's evaluation actually tests its claims and is reported clearly. It looks for problems such as training data appearing in the test set or an automated judge favoring certain answers.

In plain words
What is it for?
Use it to inspect a paper's evaluation setup and reporting against an evidence record. It checks data leakage, automated judging, missing details, and unsupported results.
Why use it?
It helps reveal when a reported score may not measure real-world performance or cannot be reproduced from the available evidence. It records concerns for later review rather than deciding the final verdict.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Codex.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the anti-autoresearch plugin — 12 skills shipped together

Good fit Use it to inspect a paper's evaluation setup and reporting against an evidence record. It checks data leakage, automated judging, missing details, and unsupported results.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add wenhaochai/claude-plugins
Claude Code
/plugin install anti-autoresearch

Made for: Claude Code.

Or install anti-autoresearch, the plugin that ships this one along with the rest of its 12 skills.

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 experiment-forensics

README.md
[![agentmods](https://agentmods.dev/badge/skills/wenhaochai/claude-plugins/experiment-forensics.svg)](https://agentmods.dev/skills/wenhaochai/claude-plugins/experiment-forensics)
Your own site
<a href="https://agentmods.dev/skills/wenhaochai/claude-plugins/experiment-forensics"><img src="https://agentmods.dev/badge/skills/wenhaochai/claude-plugins/experiment-forensics.svg" alt="Measured on agentmods" height="20"></a>
Per session 237 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 13,765 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 94% copy Near-identical to another mod 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.1 $0.00237 $0.13765
Opus 5 $0.00118 $0.06882
Sonnet 5 $0.00047 $0.02753
Haiku 4.5 $0.00024 $0.01376

Measured 8d ago against content hash d23ff603243f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

experiment-forensics scanned grade A with 1 finding 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 8d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

hits = subprocess.run(["grep", "-rIn", "--", tok, f"{t}/results", f"{t}/outputs", f"{t}/logs"],
Origin

This is a copy

94% identical to experiment-forensics — 52 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

anti-autoresearch/skills/experiment-forensics/SKILL.md · 789 lines

How it starts

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

Experiment Forensics — are the reported results what the code computes?

Audit experiment integrity for: $ARGUMENTS (a paper-dir or repo-dir; use an ABSOLUTE path — it is referred to as TARGET below). Emit span-anchored experiment-forensics.findings.json.

🔒 Do not wrap this skill in /loop, /schedule, or CronCreate. It is verdict-bearing input — it proposes the findings the deterministic adjudicator turns into the report. Re-firing it on a wall-clock timer adds no signal: what unlocks new conclusions is a higher observability level (a repo / result files arriving → L2), not elapsed time. Schedule the external wait that precedes it — artifacts released → run once at the new level. (Mirrors ARIS's external-cadence doctrine.)

Adapted from ARIS experiment-audit (#57/#131), reframed for the reviewer side. The original audits your own experiment before you claim results; this audits a third party's submission. The crucial reframe: at L0/L1 (no code) these patterns are not decidable — they appear only as info-level "could-not-verify" signals. Code-level fraud requires L2. A PDF can never produce a fraud verdict.

Why this exists

LLM-driven research pipelines (and rushed human work) produce results that look computed but are not what the paper claims. The repeatable failure modes — ported from ARIS's experiment-integrity audit — are:

  1. Fake ground truth — the eval "reference/target" is derived from model outputs and reported as performance, not as a labeled proxy. HP-FAKE-GT
  2. Score self-normalization — a metric divided by the model's own max/min/ mean to approach 1.0; no raw score shown. HP-SELF-NORM
  3. Phantom results — a paper number maps to a result file or metric key that does not exist (or a function never called). HP-PHANTOM-RESULT
  4. Dead metric code — a metric defined in eval code, discussed in the paper, but never called / never present in any result file. HP-DEAD-METRIC
  5. Scope inflation (verified) — "comprehensive/robust/SOTA" while the repo actually ran 1–2 datasets/seeds/configs. HP-SCOPE-INFLATE
  6. Method drift (confirmed) — the method described differs from the method evaluated (A-lite, A+oracle, extra data, different backbone, test-time labels the method claims not to use). HP-METHOD-DRIFT
  7. Synthesized-looking results — numbers across configs related by a too-clean arithmetic pattern ("不像跑出来的"). HP-SUSPICIOUS-REGULARITY
  8. Placeholder / fake data in released code — the released code still ships placeholder/dummy/fake data (e.g. a # fake data for plotting annotation, a TODO: replace with real data, a hard-coded np.random.* array) and a reported figure/number is drawn from it rather than from a real run. HP-PLACEHOLDER-DATA (flag the checkable code marker; do not infer who wrote it)
  9. Result ≠ artifact — the code / result artifacts, read or run as released, produce numbers different from the paper's reported values for the same experiment. HP-RESULT-ARTIFACT-MISMATCH (an implementation that computes a different loss/normalization/architecture than the equations state is HP-METHOD-DRIFT, not this)
  10. Missing reproducibility artifacts — an empirical / agent / LLM paper ships neither code nor the prompts/configs/hyperparameters its results depend on, so the claim cannot be reproduced even in principle (the absence is L0-stated; what its results specifically need is L2-verified). HP-MISSING-REPRO-ARTIFACT

Read the full file on GitHub · 789 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. 8d ago First seen · 789 lines · 237 tokens per session scan A d23ff603243f

Subscribe to this mod's changes

experiment-forensics is a skill published in the GitHub repository wenhaochai/claude-plugins (16 stars, last pushed 8d ago), licensed MIT. It adds 237 tokens to every session and 13,765 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). It is 94% identical to experiment-forensics, differing in 52 lines, and is treated as a copy.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AI/scientific-agent-skills · 68 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

mapping-to-snomed

Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…

maziyarpanahi/openmed · 205 tokens