soda-reproducibility

GitHub

针对SODA论文的可复现性审计技能,强调数学证明的完整性与可验证性。通过构建可验证性账本记录声明、模型及常数,并检查陈述-证明漂移、假设漏洞等常见错误,确保读者能独立重推所有结论。

SODA-Skills/skills/soda-reproducibility/SKILL.md brycewang-stanford/Awesome-Journal-Skills

Trigger Scenarios

需要增强SODA论文的可复现性 检查数学证明的完整性和一致性 准备SODA论文的提交或反驳材料

Install

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill soda-reproducibility -g -y
More Options

Non-standard path

npx skills add https://github.com/brycewang-stanford/Awesome-Journal-Skills/tree/main/SODA-Skills/skills/soda-reproducibility -g -y

Use without installing

npx skills use brycewang-stanford/Awesome-Journal-Skills@soda-reproducibility

指定 Agent (Claude Code)

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill soda-reproducibility -a claude-code -g -y

安装 repo 全部 skill

npx skills add brycewang-stanford/Awesome-Journal-Skills --all -g -y

预览 repo 内 skill

npx skills add brycewang-stanford/Awesome-Journal-Skills --list

SKILL.md

Frontmatter
{
    "name": "soda-reproducibility",
    "description": "Use when hardening the verifiability of a SODA (ACM-SIAM Symposium on Discrete Algorithms) paper, where reproducibility means checkable mathematics — complete proofs in the submitted full version, stable statement-proof correspondence, explicit constants and model assumptions, and certificates for any machine-checked step."
}

SODA Reproducibility

At SODA, "reproducibility" is not seeds and GPUs — it is whether a competent reader can re-derive every claim from the submitted document. Because SODA takes full versions with no page limit (2027 CFP, checked 2026-07-08), there is no "details omitted" escape hatch: the community's expectation is that the PDF on HotCRP contains a complete, checkable argument. This skill is the audit for that standard.

The verifiability ledger

Build a table with one row per claim before the July deadline. It doubles as the rebuttal-preparation ledger in September (soda-author-response).

Column What goes in it
Claim Theorem/lemma/corollary number and one-line statement
Model Computation model and input assumptions (RAM model? adversary? degree bounds?)
Proof location Section and page of the complete proof — "sketch only" is a red flag
External results used Exact citation with theorem number, plus where hypotheses are checked
Constants Hidden-constant status: explicit / bounded / genuinely unbounded
Checked by Coauthor who verified the proof without having written it

Every row must close before submission. The last column is the single most valuable ritual an algorithms group can institutionalize: author-blind proof checking catches the drift bugs that referees otherwise find in August.

Failure modes referees actually report

  • Statement-proof drift. The theorem says O(m log n), the proof delivers O(m log^2 n) after a late edit. Mechanically re-derive the final bound from the final proof, not from memory.
  • Imported-theorem hypothesis gaps. A cited result requires constant degree; your graph is merely sparse. Quote the hypothesis next to each use.
  • Model slippage. The lower bound is proved against oblivious adversaries; the abstract claims it for adaptive ones. State the model in the theorem, not only in the preliminaries.
  • Randomness accounting. "With high probability" needs a stated exponent and a union-bound budget that survives all invocations.
  • Case-analysis holes. For arguments with many cases, include the case inventory explicitly; referees count cases before reading any.

Worked micro-example: a probability budget

The randomness-accounting failure deserves its own drill because it compounds silently. Keep a single budget table in the source comments and make every "w.h.p." claim draw from it:

% Failure-probability budget for Theorem 2 (target: n^{-2} overall)
%   E1: sampling lemma (Lemma 3.1), invoked <= n times ... n * n^{-4}
%   E2: hash collision (Lemma 3.4), invoked once      ... n^{-3}
%   E3: concentration (Lemma 4.2), invoked <= log n   ... log n * n^{-4}
%   Union bound: n^{-3} + o(n^{-3}) <= n^{-2} for n >= n_0 (state n_0!)

Audit questions the table forces: does each lemma's stated exponent survive its actual invocation count in the final proof (invocation counts drift when algorithms get restructured)? Is the constant n_0 stated anywhere? Does the theorem statement promise the same exponent the budget delivers? A referee who finds one unbudgeted invocation will re-check every probabilistic step in the paper — the budget table is cheap insurance against that spiral.

Machine-checked steps

When part of the argument is computational (exhaustive search over configurations, extremal-object certificates, verified constants), the reproducibility bar is a rerunnable check, not a claim of one:

# The paper should let a referee do exactly this:
git clone <anonymous-archive-url> && cd verification
python3 check.py            # deterministic; prints per-case status
echo $?                     # 0 iff every case verified

State in the paper the case count, total runtime on commodity hardware, and the reduction proving that check.py succeeding implies the lemma. See soda-artifact-evaluation for packaging and anonymity.

Full version as the reproducibility instrument

The arXiv full version is the community's long-term verification record — SODA proceedings versions are often condensations (soda-camera-ready). Discipline:

  • The submitted HotCRP version, the arXiv version, and the proceedings version must agree on every theorem statement; keep a single source with build flags rather than three diverging files.
  • When a bug is found post-publication, fix the arXiv version with a dated erratum note; silent replacement erodes exactly the trust this skill protects.
  • Version the bibliography: a "personal communication" load-bearing citation is a reproducibility hole; get the statement into a citable preprint or prove it yourself in an appendix.

Pre-submission audit sequence

  1. Ledger complete: every claim has a proof location and a blind checker.
  2. Bound re-derivation pass: recompute each headline bound from its final proof.
  3. Import pass: every external theorem quoted with hypotheses verified in-text.
  4. Probability pass: failure probabilities summed and stated once, correctly.
  5. Computation pass: certificates rerun from a clean clone on a second machine.
  6. Cross-version pass: submission, arXiv, and any slides state identical bounds.

Output format

[Verifiability verdict] Checkable / Gaps found / Not checkable
[Ledger gaps] <claims lacking proof location, blind check, or model statement>
[Drift findings] <statement-proof or cross-version mismatches>
[Import findings] <external results with unverified hypotheses>
[Computation findings] <uncertified machine-checked steps>
[Fix order] <ranked repairs before the July deadline>

Version History

  • 9f86f09 Current 2026-07-19 17:38

Same Skill Collection

AAAI-Skills/skills/aaai-artifact-evaluation/SKILL.md
AAAI-Skills/skills/aaai-author-response/SKILL.md
AAAI-Skills/skills/aaai-camera-ready/SKILL.md
AAAI-Skills/skills/aaai-experiments/SKILL.md
AAAI-Skills/skills/aaai-related-work/SKILL.md
AAAI-Skills/skills/aaai-reproducibility/SKILL.md
AAAI-Skills/skills/aaai-review-process/SKILL.md
AAAI-Skills/skills/aaai-submission/SKILL.md
AAAI-Skills/skills/aaai-supplementary/SKILL.md
AAAI-Skills/skills/aaai-topic-selection/SKILL.md
AAAI-Skills/skills/aaai-workflow/SKILL.md
AAAI-Skills/skills/aaai-writing-style/SKILL.md
AAMAS-Skills/skills/aamas-artifact-evaluation/SKILL.md
AAMAS-Skills/skills/aamas-author-response/SKILL.md
AAMAS-Skills/skills/aamas-camera-ready/SKILL.md
AAMAS-Skills/skills/aamas-experiments/SKILL.md
AAMAS-Skills/skills/aamas-related-work/SKILL.md
AAMAS-Skills/skills/aamas-reproducibility/SKILL.md
AAMAS-Skills/skills/aamas-review-process/SKILL.md
AAMAS-Skills/skills/aamas-submission/SKILL.md
AAMAS-Skills/skills/aamas-supplementary/SKILL.md
AAMAS-Skills/skills/aamas-topic-selection/SKILL.md
AAMAS-Skills/skills/aamas-workflow/SKILL.md
AAMAS-Skills/skills/aamas-writing-style/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-editor-strategy/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-evidence-standards/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-literature-synthesis/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-organizing-framework/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-proposal-framing/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-review-process/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-revision/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-submission/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-tables-figures/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-topic-selection/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-workflow/SKILL.md
Academy-of-Management-Annals-Skills/skills/amann-writing-style/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-contribution-framing/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-data-analysis/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-literature-positioning/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-methods/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-rebuttal/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-review-process/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-submission/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-tables-figures/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-theory-development/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-topic-selection/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-workflow/SKILL.md
Academy-of-Management-Journal-Skills/skills/amj-writing-style/SKILL.md
Academy-of-Management-Review-Skills/skills/amr-contribution-framing/SKILL.md
Academy-of-Management-Review-Skills/skills/amr-data-analysis/SKILL.md

Metadata

Files
0
Version
9f86f09
Hash
00016846
Indexed
2026-07-19 17:38

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-30 11:47
浙ICP备14020137号-1 $Carte des visiteurs$