/asplos-artifact-evaluation
Use when preparing an ASPLOS artifact for the post-acceptance evaluation committee — writing the ae.tex Artifact Appendix with software/hardware/dataset dependencies, targeting the Available / Functional / Reproducible badges, archiving on a public repository, and planning the
$ npx -y skills add brycewang-stanford/Awesome-Journal-Skills --skill asplos-artifact-evaluation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/asplos-artifact-evaluation
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when preparing an ASPLOS artifact for the post-acceptance evaluation committee — writing the ae.tex Artifact Appendix with software/hardware/dataset dependencies, targeting the Available / Functional / Reproducible badges, archiving on a public repository, and planning the
SKILL.md
asplos-artifact-evaluation.SKILL.mdname: asplos-artifact-evaluation
description: Use when preparing an ASPLOS artifact for the post-acceptance evaluation committee — writing the ae.tex Artifact Appendix with software/hardware/dataset dependencies, targeting the Available / Functional / Reproducible badges, archiving on a public repository, and planning the collaborative back-and-forth with evaluators.
ASPLOS Artifact Evaluation
Artifact evaluation at ASPLOS is a post-acceptance, opt-in, **collaborative** process: an independent committee works with authors to validate the paper's key results, and successful artifacts carry badges on the published paper (AE pages, checked 2026-07-08). It is also a tradition the venue itself highlights — systems readers increasingly treat an unbadged systems paper as a weaker citation. Treat AE as part of the publication, budgeted like a small sixth section.
The three badges and what each actually demands
| Badge | 2027 criterion (paraphrased from the AE pages) | Practical bar | |---|---|---| | **Available** | Artifact placed on a **publicly accessible archival repository** | A DOI-issuing archive (institutional or Zenodo-class); a GitHub URL alone is not archival | | **Functional** | Evaluators can prepare and run the artifact; they document the steps they followed | Clean-machine install + a smoke experiment that completes in minutes, not hours | | **Reproducible** | Evaluators validate the paper's **key results** | Per-claim run scripts whose output maps visibly onto specific figures/tables |
Evaluators assign scores per requested badge and record what they could and could not reproduce — so the artifact's job is to make their success path short and their failure modes diagnosable.
The Artifact Appendix is the contract
ASPLOS 2027 expects an Artifact Appendix built from the provided `ae.tex` template (or equivalent sections) covering: all **software, hardware, and dataset dependencies**; the **key results** to be reproduced; and **how to prepare, run, and validate** the experiments. Write it as if the evaluator is competent, busy, and using different hardware than yours:
- Dependencies include the awkward ones: kernel versions, privileged access, BIOS
settings, board models, expander firmware — everything from the state ledger in `asplos-reproducibility`.
- "Key results" means a *selected subset*: pick the claims that define the paper,
not all 40 bars of every figure. Ambition here creates failure reports.
- Validation must be decidable: state the expected output and the tolerance within
which the claim holds ("ordering preserved; absolute times ±15%").
Package layout that evaluators can navigate blind
artifact/
README.md # 10-minute quick start + full map
APPENDIX.pdf # the ae.tex appendix as submitted
env/ # container/VM recipe OR exact install script
hardware.md # tiered requirements + what to do without them
run/
smoke.sh # minutes-scale end-to-end sanity check
claim1_fig6.sh # one script per key result, named for its figure
claim2_tab3.sh
expected/ # reference outputs + tolerance statement per claim
data/ or data.md # datasets, or archival pointers + checksumsHardware-dependent claims: give evaluators a path
The recurring ASPLOS AE failure is a paper whose headline number needs silicon the committee lacks. Acceptable mitigations, in descending order of strength:
1. Provide **remote access** to the platform for the evaluation window (with an anonymity-safe access route if the process requires it). 2. Ship the **simulator-backed subset** as the reproducible core, and mark the silicon results as demonstrably-run (logs + analysis pipeline included). 3. Offer a **scaled-down proxy** (smaller FPGA, reduced workload) with an explicit argument for why the proxy's behavior transfers.
Say which mitigation applies *in the appendix*, per claim — evaluators score against what you requested, so calibrated requests outperform hopeful ones.
Collaboration protocol
- Expect rounds: evaluators report blockers, authors fix and respond. Reserve
maintainer time in the weeks after camera-ready (exact 2027 AE dates: 待核实 — confirm at notification).
- Fix-forward, do not re-argue: an evaluator's confusion is a defect in the README.
- Keep the artifact frozen at a tagged version during evaluation; hotfixes go on a
branch the evaluators are told about.
Common evaluator blockers, pre-empted
Field experience across systems AE committees converges on a short list of first-hour failures, all preventable:
- **Undeclared credentials or licenses** — a workload, simulator model, or
dataset that needs a registration the evaluator lacks; declare it in the appendix and provide an alternative path.
- **Hidden network assumptions** — builds that fetch from internal mirrors or
rate-limited hosts; vendor the dependencies or provide the container image.
- **Root-only steps without warning** — kernel-module or BIOS-adjacent steps
must be flagged up front so the evaluator can pick a sacrificial machine.
- **Hour-scale first feedback** — if the smoke test takes an evening, the first
blocker report costs a full round trip; minutes-scale smoke tests keep the collaboration inside the calendar.
- **Output the evaluator must interpret** — raw logs with no comparator; every
claim script should end by printing PASS/FAIL against the tolerance.
Anonymity boundary
AE runs after acceptance, so evaluator-facing materials need not be anonymous — but any artifact *pointer placed in the submission itself* (an appendix teaser, a footnoted repository) falls under the double-blind rules and must be anonymized end to end: repository owner, commit author strings, container registry paths, and dataset hosting all leak identity. The clean pattern is to keep the submission's artifact story descriptive ("we will submit an artifact covering claims 1-3") an
Read more
name: asplos-artifact-evaluation description: Use when preparing an ASPLOS artifact for the post-acceptance evaluation committee — writing the ae.tex Artifact Appendix with software/hardware/dataset dependencies, targeting the Available / Functional / Reproducible badges, archiving on a public repository, and planning the collaborative back-and-forth with evaluators.
ASPLOS Artifact Evaluation
Artifact evaluation at ASPLOS is a post-acceptance, opt-in, **collaborative** process: an independent committee works with authors to validate the paper's key results, and successful artifacts carry badges on the published paper (AE pages, checked 2026-07-08). It is also a tradition the venue itself highlights — systems readers increasingly treat an unbadged systems paper as a weaker citation. Treat AE as part of the publication, budgeted like a small sixth section.
The three badges and what each actually demands
| Badge | 2027 criterion (paraphrased from the AE pages) | Practical bar | |---|---|---| | **Available** | Artifact placed on a **publicly accessible archival repository** | A DOI-issuing archive (institutional or Zenodo-class); a GitHub URL alone is not archival | | **Functional** | Evaluators can prepare and run the artifact; they document the steps they followed | Clean-machine install + a smoke experiment that completes in minutes, not hours | | **Reproducible** | Evaluators validate the paper's **key results** | Per-claim run scripts whose output maps visibly onto specific figures/tables |
Evaluators assign scores per requested badge and record what they could and could not reproduce — so the artifact's job is to make their success path short and their failure modes diagnosable.
The Artifact Appendix is the contract
ASPLOS 2027 expects an Artifact Appendix built from the provided `ae.tex` template (or equivalent sections) covering: all **software, hardware, and dataset dependencies**; the **key results** to be reproduced; and **how to prepare, run, and validate** the experiments. Write it as if the evaluator is competent, busy, and using different hardware than yours:
- Dependencies include the awkward ones: kernel versions, privileged access, BIOS
settings, board models, expander firmware — everything from the state ledger in `asplos-reproducibility`.
- "Key results" means a *selected subset*: pick the claims that define the paper,
not all 40 bars of every figure. Ambition here creates failure reports.
- Validation must be decidable: state the expected output and the tolerance within
which the claim holds ("ordering preserved; absolute times ±15%").
Package layout that evaluators can navigate blind
artifact/
README.md # 10-minute quick start + full map
APPENDIX.pdf # the ae.tex appendix as submitted
env/ # container/VM recipe OR exact install script
hardware.md # tiered requirements + what to do without them
run/
smoke.sh # minutes-scale end-to-end sanity check
claim1_fig6.sh # one script per key result, named for its figure
claim2_tab3.sh
expected/ # reference outputs + tolerance statement per claim
data/ or data.md # datasets, or archival pointers + checksumsHardware-dependent claims: give evaluators a path
The recurring ASPLOS AE failure is a paper whose headline number needs silicon the committee lacks. Acceptable mitigations, in descending order of strength:
1. Provide **remote access** to the platform for the evaluation window (with an anonymity-safe access route if the process requires it). 2. Ship the **simulator-backed subset** as the reproducible core, and mark the silicon results as demonstrably-run (logs + analysis pipeline included). 3. Offer a **scaled-down proxy** (smaller FPGA, reduced workload) with an explicit argument for why the proxy's behavior transfers.
Say which mitigation applies *in the appendix*, per claim — evaluators score against what you requested, so calibrated requests outperform hopeful ones.
Collaboration protocol
- Expect rounds: evaluators report blockers, authors fix and respond. Reserve
maintainer time in the weeks after camera-ready (exact 2027 AE dates: 待核实 — confirm at notification).
- Fix-forward, do not re-argue: an evaluator's confusion is a defect in the README.
- Keep the artifact frozen at a tagged version during evaluation; hotfixes go on a
branch the evaluators are told about.
Common evaluator blockers, pre-empted
Field experience across systems AE committees converges on a short list of first-hour failures, all preventable:
- **Undeclared credentials or licenses** — a workload, simulator model, or
dataset that needs a registration the evaluator lacks; declare it in the appendix and provide an alternative path.
- **Hidden network assumptions** — builds that fetch from internal mirrors or
rate-limited hosts; vendor the dependencies or provide the container image.
- **Root-only steps without warning** — kernel-module or BIOS-adjacent steps
must be flagged up front so the evaluator can pick a sacrificial machine.
- **Hour-scale first feedback** — if the smoke test takes an evening, the first
blocker report costs a full round trip; minutes-scale smoke tests keep the collaboration inside the calendar.
- **Output the evaluator must interpret** — raw logs with no comparator; every
claim script should end by printing PASS/FAIL against the tolerance.
Anonymity boundary
AE runs after acceptance, so evaluator-facing materials need not be anonymous — but any artifact *pointer placed in the submission itself* (an appendix teaser, a footnoted repository) falls under the double-blind rules and must be anonymized end to end: repository owner, commit author strings, container registry paths, and dataset hosting all leak identity. The clean pattern is to keep the submission's artifact story descriptive ("we will submit an artifact covering claims 1-3") an
Stanford REAP × CoPaper.AI · 由斯坦福实证方法论团队精选与维护 访问 copaper.ai 微信:CoPaper.AI 按 11 个主流学科板块覆盖 经管与商科 社会科学 人文学科 数学与物理科学 生命科学 医学与健康 工程与技术 计算机科学与 AI 体育科学 点击任一学科名可跳转到对应说明;每类下的代表子领域在正文总览中完整列出。下方封面墙按 venue 导航,完整分类见覆盖一览。 🧭 布局指南 · 📚 Skill Pack 一览 · ⚡ 如何使用 · 🧪 自动实证
Other skills on awesome-journal-skills.
- /aaai-artifact-evaluation
Use when packaging AAAI code, data, multimedia appendices, technical appendices, reproducibility evidence, and post-acceptance artifact releases without violating double-blind or immutable-supplement rules.
Open skill - /aaai-author-response
Use when drafting an AAAI author response (rebuttal) under the single short character-limited author-feedback window, the no-URL rule, no-new-results guidance, AI-generated-review handling, and the AAAI two-phase review process where Phase-2 papers receive one feedback round
Open skill - /aaai-camera-ready
Use when preparing an accepted AAAI paper for camera-ready source submission to AAAI Press, including proceedings page limits, two-column template compliance, copyright transfer, purchased extra technical pages, deanonymization, registration, oral or poster presentation, and
Open skill - /aaai-experiments
Use when designing or auditing AAAI experiments for the broad-AI program committee, including baselines, ablations, statistical significance, robustness, human evaluation, AI-for-Social-Impact and alignment/safety evidence, compute and cost reporting, and
Open skill - /aaai-related-work
Use when positioning an AAAI paper's novelty against archival work, contemporaneous arXiv or workshop papers, and AAAI/IJCAI/NeurIPS/ICML/ICLR neighbors across the broad AI scope, while staying inside AAAI's dual-submission and AI-as-source policy constraints and writing a
Open skill - /aaai-reproducibility
Use when strengthening an AAAI paper's reproducibility checklist (placed after references), experimental traceability, seed and hyperparameter reporting, compute and cost disclosure, dataset access and licensing, code/data ZIP readiness, and the claim-to-evidence map that
Open skill

