From phd-skills
Walks through 7-stage reproduction of ML papers from arxiv URL: structured extraction, code inventory, gap analysis, implementation, dataset acquisition, smoke tests, and replication runs with metric comparison.
How this skill is triggered — by the user, by Claude, or both
Slash command
/phd-skills:reproduceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reproducing an ML paper often means filling gaps the authors didn't ship, training scripts, hyperparameter tables, augmentation specifics, exact dataset splits. This skill walks seven stages from "I have an arxiv link" to "I have a replication run with measurable delta vs the paper's number."
Reproducing an ML paper often means filling gaps the authors didn't ship, training scripts, hyperparameter tables, augmentation specifics, exact dataset splits. This skill walks seven stages from "I have an arxiv link" to "I have a replication run with measurable delta vs the paper's number."
Each stage has a separate reference file under references/ so this overview stays scannable.
The user just said any of:
| Stage | What | Reference |
|---|---|---|
| 1 | Paper acquisition (arxiv HTML → structured extract) | references/01-paper-fetch.md |
| 2 | Existing code discovery + inventory | references/02-code-clone.md |
| 3 | Gap analysis (extract every missing hyperparam from the prose) | references/03-gap-analysis.md |
| 4 | Implementation (uv venv, fill gaps, commit per gap) | references/04-implement.md |
| 5 | Dataset acquisition (HF datasets first; substitute if private) | references/05-dataset.md |
| 6 | Smoke runs (forward pass → 1 step → 20 iters) | references/06-smoke.md |
| 7 | Replication runs + comparison at paper's reported epochs | references/07-replicate.md |
Walk them in order. Each stage has its own success criteria; do not advance to the next until the current one passes.
For each paper reproduction, set up a dedicated workspace:
repro/<paper-arxiv-id>/
├── paper.md # structured extract from stage 1
├── inventory.md # what exists / missing from stage 2
├── gaps_filled.md # hyperparam table with provenance from stage 3
├── code/ # implementation from stage 4 (or cloned + extended)
├── data/ # dataset symlinks or actual data from stage 5
├── dataset_substitution.md # if a public dataset stood in for a private one
├── smoke_logs/ # outputs from stage 6
└── results.md # replication outcomes from stage 7
This keeps reproductions self-contained and easy to revisit later.
paper-verification skill for a round-trip check ("did I really capture every hyperparam the paper mentions")./phd-skills:debug skill, not to ad-hoc fixes./phd-skills:launch checklist before any multi-hour run./phd-skills:compare skill at the paper's reported epochs (never current-vs-final).For each reproduction, the final artifact is results.md with absolute deltas (not just %) and one of three labels per metric:
[matched within 0.X pp]: within the paper's reported variance[gap, hypothesis: ...]: measurable underperformance, with a stated hypothesis for the cause[fundamental disagreement, see X]: the result and the paper's claim are inconsistent in a way that needs investigation, not just more computeIf the workspace is on a public repo, link the workspace README from the project's main reproduction-tracking doc.
npx claudepluginhub fcakyon/phd-skills --plugin phd-skillsConverts any arxiv paper URL into a citation-anchored Python implementation with ambiguity auditing. Every code decision references the exact paper section and equation, and gaps are explicitly flagged.
Converts research papers (PDF/arXiv URLs) to executable code via YAML intermediates, implementing one file at a time with tests. Activates for replication or 'paper2code' requests.
Strengthens ICML reproducibility evidence: code/data availability, random seeds, compute disclosure, appendix evidence, and reviewer-facing claims.