paper-audit

paper-audit is a skill for Claude Code from kinhluan/skills. It costs 48 tokens per session (2,454 once invoked), scanned A, original, MIT.

A checklist for comparing the claims in a research paper with the code publicly provided to implement it.

In plain words
What is it for?
Use it when reviewing papers with code, deciding whether to build on a published method, checking conference or journal submissions, or teaching reproducibility.
Why use it?
It helps reveal when the implementation, reported results, or instructions do not match the paper, which can affect reproducibility.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the kinhluan-skills plugin — 61 skills shipped together

Good fit Use it when reviewing papers with code, deciding whether to build on a published method, checking conference or journal submissions, or teaching reproducibility.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kinhluan/skills/paper-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kinhluan/skills --skill paper-audit
Clone the repo
git clone --depth 1 https://github.com/kinhluan/skills

Made for: Claude Code.

Or install kinhluan-skills, the plugin that ships this one along with the rest of its 61 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 paper-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/kinhluan/skills/paper-audit/github.svg)](https://agentmods.dev/skills/kinhluan/skills/paper-audit)
Your own site
<a href="https://agentmods.dev/skills/kinhluan/skills/paper-audit"><img src="https://agentmods.dev/badge/skills/kinhluan/skills/paper-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for paper-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/kinhluan/skills/paper-audit"><img src="https://agentmods.dev/badge/skills/kinhluan/skills/paper-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,454 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00048 $0.02454
Opus 5 $0.00024 $0.01227
Sonnet 5 $0.00010 $0.00491
Haiku 4.5 $0.00005 $0.00245

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

Security

Grade A, and why

paper-audit scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agent-skills/paper-audit/SKILL.md · 283 lines

How it starts

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

Paper Audit

Claims in the paper must match code in the repository.

This skill audits research papers against their publicly available codebases to detect mismatches, missing implementations, and reproducibility issues. Inspired by Feynman's /audit workflow.

"Trust but verify." — Russian proverb


1. When to Audit

Audit when:

  • Reviewing a paper with an accompanying GitHub repository
  • Planning to build on someone's method (verify it works first)
  • Reviewing for a conference/journal (check reproducibility)
  • Teaching (show students what to look for)

Do NOT audit when:

  • No code is available (audit becomes impossible)
  • Paper is purely theoretical (no implementation to check)
  • You are the author (use internal-critique instead)

2. The Audit Protocol

Step 1 — Paper Claim Extraction

Extract all verifiable claims from the paper:

Claim ID Section Claim Verifiable?
C1 Method "We use Adam optimizer with lr=0.001" Yes
C2 Method "Batch size is 256" Yes
C3 Results "Achieves 95.2% accuracy on ImageNet" Yes
C4 Method "Our attention mechanism reduces complexity to O(n)" Partial (need to read code)
C5 Ablations "Removing component X drops performance by 3%" Yes

Claim types:

  • Hyperparameter: Learning rate, batch size, weight decay, architecture details
  • Architecture: Layer counts, dimensions, activation functions, connectivity
  • Data: Dataset version, preprocessing steps, augmentation pipeline
  • Metric: Reported numbers with confidence intervals
  • Ablations: Performance differences when components are removed

Step 2 — Code Mapping

For each verifiable claim, locate the corresponding code:

Paper Claim → Code Location → Verification Result

Example:
C1: "Adam optimizer, lr=0.001"
  → Code: train.py:45: optimizer = torch.optim.Adam(model.parameters(), lr=0.001)
  → Result: ✅ MATCH

C2: "Batch size is 256"
  → Code: config.yaml: batch_size: 128
  → Result: ❌ MISMATCH (paper says 256, code uses 128)

C3: "95.2% accuracy on ImageNet"
  → Code: README.md reports 94.8%
  → Result: ⚠️ DISCREPANCY (0.4% gap, possibly different eval protocol)

Read the full file on GitHub · 283 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 283 lines · 48 tokens per session scan A 148fbf2f8658

Subscribe to this mod's changes

paper-audit is a skill published in the GitHub repository kinhluan/skills (4 stars, last pushed 13d ago), licensed MIT. It adds 48 tokens to every session and 2,454 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

domain-driven-design

DDD tactical patterns for complex business modeling including entities, value objects, aggregates, domain services, repositories, specifications, and bounded contexts. Python dataclass implementations with TypeScript alternatives. Use when building rich domain models, enforcing invariants, or separating domain logic…

yonatangross/orchestkit · 57 tokens

arxiv-fetch

Fetch the latest arXiv papers and generate an on-demand digest. Use when the user asks to fetch/check today's (or the latest) arXiv papers, find new papers on a topic, or generate an ad-hoc arXiv digest. The agent judges relevance itself — no API keys needed.

yang3kc/daily_arxiv_digest · 66 tokens

cv-opencv

Computer vision on images + video with OpenCV (docs.opencv.org/4.x/): core (Mat / ndarray, linalg), imgproc (filtering, morphology, geometric transforms, color conv, histograms, contours), imgcodecs (imread/imwrite — PNG, JPEG, TIFF, WebP, EXR), videoio (VideoCapture / VideoWriter — FFMPEG, GStreamer, V4L2…

damionrashford/media-os · 303 tokens

certificate-audited-analysis

Treat every computed result as unverified until its certificate checks out, review what was omitted rather than only what was included, and digest-chain every published number back to a retained computation. Use when citing any compiled or pipeline output in a document, when reviewing an analysis that publishes…

AURORA-NEURO/aurora-agent · 85 tokens

discriminating-experiment-design

Recognize when a benchmark cannot discriminate between methods, construct experiment families that could, sweep structural knobs without sweeping the decision itself, and report a tie that survives as the headline result. Use when all methods score the same on your benchmark, when designing a new evaluation world or…

AURORA-NEURO/aurora-agent · 89 tokens

research-dossier-discipline

Scope what an autonomous research run may claim and what it must never claim, carry limitations verbatim through every summary layer, and treat negative findings as first-class results. Use when writing up results from an autonomous or agent-driven measurement run, when drafting a research summary, README section, or…

AURORA-NEURO/aurora-agent · 99 tokens