Agent skill

pldi-reproducibility

Use when hardening a PLDI paper's measurements against the SIGPLAN Empirical Evaluation Guidelines — warmup and steady-state discipline, variance and confidence reporting, principled benchmark choice, pinned toolchains, cross-platform validity, and a measurement log that survives artifact evaluation.

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeMIT
Install
npx skills add brycewang-stanford/Awesome-Journal-Skills --skill pldi-reproducibility --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: PLDI-Skills/skills/pldi-reproducibility/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 984 · +31 this week
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# PLDI Reproducibility PLDI's methodological yardstick is written down: the SIGPLAN Empirical Evaluation Guidelines and their one-page checklist (Blackburn, Hauswirth, Berger, Hicks, Krishnamurthi, 2018; sigplan.org/Resources/EmpiricalEvaluation/, read 2026-07-08). Reviewers and artifact evaluators both reach for it. This skill turns the checklist into compiler-bench practice; `pldi-experiments` covers what to measure, this covers whether anyone can trust and repeat the measurement. ## Checklist, translated to PL systems | Guideline item | What it means for a compiler/runtime paper | |---|---| | Clearly stated claims | "1.17x geomean on suite S vs baseline B at -O2" — never "significant speedups" | | Suitable comparison | The strongest sensible baseline configuration, tuned as its authors intend | | Principled benchmark choice | The suite is justified; exclusions are listed with reasons, not silently dropped | | Adequate data analysis | Repetitions, variance, and an aggregation rule (geomean for ratios) stated in the paper | ## The measurement sins PLDI reviewers hunt - **No warmup discipline.** JIT-compiled and cache-sensitive workloads need documented warmup iterations before tim

What's inside
Steps it walks through
  1. Checklist, translated to PL systems
  2. The measurement sins PLDI reviewers hunt
  3. A protocol worth writing down
  4. Compile-time and memory are claims too
  5. Tie-in to badges
  6. Output format
Commands it runs
protocol.sh — executed, not described
set -euo pipefail
lscpu > results/env/cpu.txt; uname -a > results/env/os.txt
cc --version > results/env/toolchain.txt
for b in $(cat benchmarks/suite.list); do
for i in $(seq 1 5);  do ./run.sh "$b" >/dev/null; done      # warmup
for i in $(seq 1 30); do ./run.sh "$b" >> "results/raw/$b.csv"; done
done
python3 scripts/aggregate.py --stat geomean --ci 95 results/raw/
More from Awesome-Journal-Skills
All skills →
About this skill
What does the pldi-reproducibility skill do?

Use when hardening a PLDI paper's measurements against the SIGPLAN Empirical Evaluation Guidelines — warmup and steady-state discipline, variance and confidence reporting, principled benchmark choice, pinned toolchains, cross-platform validity, and a measurement log that survives artifact evaluation.

How do I install it?

Run `npx skills add brycewang-stanford/Awesome-Journal-Skills --skill pldi-reproducibility --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Awesome-Journal-Skills, a repository with 984 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going