/acl-artifact-evaluation
Use when packaging code, datasets, prompts, model outputs, or annotation materials for an ACL submission under ACL Rolling Review, covering anonymized supplement archives, scientific-artifact items of the Responsible NLP checklist, licensing and intended-use documentation, data
$ npx -y skills add brycewang-stanford/Awesome-Journal-Skills --skill acl-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
/acl-artifact-evaluation
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when packaging code, datasets, prompts, model outputs, or annotation materials for an ACL submission under ACL Rolling Review, covering anonymized supplement archives, scientific-artifact items of the Responsible NLP checklist, licensing and intended-use documentation, data
SKILL.md
acl-artifact-evaluation.SKILL.mdname: acl-artifact-evaluation
description: Use when packaging code, datasets, prompts, model outputs, or annotation materials for an ACL submission under ACL Rolling Review, covering anonymized supplement archives, scientific-artifact items of the Responsible NLP checklist, licensing and intended-use documentation, data statements, and post-acceptance public release.
ACL Artifact Evaluation
Use this to plan the evidence package around an ACL paper. ACL has no separate artifact-badge track; instead, artifact scrutiny is folded into review through the supplement archive and Section B ("scientific artifacts") of the Responsible NLP checklist, which reviewers cross-check against the PDF.
What counts as an artifact here
- Code: training/inference scripts, evaluation harnesses, prompt templates.
- Data: new corpora, annotations, filtered subsets of existing corpora, test
suites, adversarial sets.
- Model outputs: generations, ranked lists, logits used in analysis — often the
cheapest way to make an LLM paper checkable without GPUs.
- Human-subject materials: annotation guidelines, interface screenshots,
consent text, compensation description.
Submission-time packaging rules
- Supplements upload as .tgz/.zip through the OpenReview form; links to
tracked cloud storage are not acceptable, and any linked page must be anonymous.
- Scrub identity everywhere reviewers can look: file paths, git metadata,
notebook author fields, license headers, dataset hosting pages, README contact lines.
- Reviewers are not required to open supplements. The paper plus checklist
must stand alone; the archive is for verification, not for essential content.
Checklist items your artifact must satisfy
| Responsible NLP item (Section B) | Artifact implication | |---|---| | Cited creators + versions of used artifacts | Pin dataset/model versions in the README and bibliography | | License / terms of use stated | Include the license you release under *and* those you consumed under | | Use consistent with intended use | Justify research use of scraped or user-generated data | | PII and offensive content handled | Describe scanning/anonymization steps actually performed | | Documentation of domains, languages, demographics | Ship a data statement or datasheet, not just row counts | | Statistics on splits reported | Train/dev/test sizes in both paper and README |
Checklist answers contradicted by the archive read as misleading information — grounds for desk rejection under ARR policy, and a credibility wound even when not enforced.
What an ACL reviewer opens first
1. The README — it has roughly one minute to orient them. 2. Prompt files and evaluation scripts, for any LLM claim: exact prompts, decoding parameters, and scoring code are the reproduction spine. 3. Annotation guidelines, for any dataset or human-eval claim: reviewers judge whether the labels could possibly mean what the paper says. 4. A sample of the data itself — quality problems visible in twenty random examples have sunk otherwise strong resource papers.
Vignette: packaging a multilingual benchmark submission
A hypothetical paper releases a 7-language reading-comprehension test suite built from news text plus a baseline evaluation of five LLMs.
- Ship per-language provenance: source, license, collection window, and the
filtering pipeline as runnable code, since "web text" alone fails checklist item B on documentation.
- Include annotator guidelines, pay, recruitment channel, and agreement
statistics; multilingual annotation quality is the first attack surface.
- Provide the exact prompts and outputs for all five models so reviewers can
re-score without API keys.
- Keep a versioned, hash-stamped test file so post-publication contamination
can be audited later.
Release ladder after acceptance
anonymous supplement -> public repo + dataset page -> archived, versioned release
(review-time) (camera-ready links) (DOI/hub artifact, cited version)
Post-acceptance, register the artifact where your community actually looks (model/dataset hubs, a maintained repo), state the license explicitly, and put the citation-of-record (the Anthology entry) in the README.
Anonymization sweep, concretely
Run these before zipping, on a copy:
# authorship trails in code and docs
grep -ri "yourname\|yourlab\|university" . --include="*.py" --include="*.md"
# git history and remotes leak owners
rm -rf .git; # or re-init a fresh repo for the archive copy
# notebook metadata carries usernames and kernel paths
jupyter nbconvert --clear-output --inplace *.ipynb
# absolute paths in configs and logs
grep -r "/home/\|/Users/" . | head
Then check the parts tools miss: license headers naming the lab, dataset hosting pages with institutional branding, model cards listing maintainers, and README badges pointing at owner-named CI.
Sizing and format sanity
- Keep the archive lean: strip checkpoints reviewers cannot load anyway,
cached datasets, and virtualenvs; describe big assets and provide them at camera-ready instead.
- One top-level README, one environment file, one entry point per claimed
result — reviewers grant roughly a minute before giving up.
- Verify the .zip/.tgz opens on a machine that has never seen the project;
OpenReview upload limits and accepted fields vary by cycle, so check the live form rather than last cycle's.
Output format
[Artifact role] anonymous supplement / camera-ready release / public benchmark
[Contents] <code/data/prompts/outputs/guidelines>
[Checklist alignment] <Section B items satisfied vs missing>
[Anonymity findings] <paths/metadata/hosting leaks>
[Release plan] <post-acceptance registry, license, versioning>
Read more
name: acl-artifact-evaluation description: Use when packaging code, datasets, prompts, model outputs, or annotation materials for an ACL submission under ACL Rolling Review, covering anonymized supplement archives, scientific-artifact items of the Responsible NLP checklist, licensing and intended-use documentation, data statements, and post-acceptance public release.
ACL Artifact Evaluation
Use this to plan the evidence package around an ACL paper. ACL has no separate artifact-badge track; instead, artifact scrutiny is folded into review through the supplement archive and Section B ("scientific artifacts") of the Responsible NLP checklist, which reviewers cross-check against the PDF.
What counts as an artifact here
- Code: training/inference scripts, evaluation harnesses, prompt templates.
- Data: new corpora, annotations, filtered subsets of existing corpora, test
suites, adversarial sets.
- Model outputs: generations, ranked lists, logits used in analysis — often the
cheapest way to make an LLM paper checkable without GPUs.
- Human-subject materials: annotation guidelines, interface screenshots,
consent text, compensation description.
Submission-time packaging rules
- Supplements upload as .tgz/.zip through the OpenReview form; links to
tracked cloud storage are not acceptable, and any linked page must be anonymous.
- Scrub identity everywhere reviewers can look: file paths, git metadata,
notebook author fields, license headers, dataset hosting pages, README contact lines.
- Reviewers are not required to open supplements. The paper plus checklist
must stand alone; the archive is for verification, not for essential content.
Checklist items your artifact must satisfy
| Responsible NLP item (Section B) | Artifact implication | |---|---| | Cited creators + versions of used artifacts | Pin dataset/model versions in the README and bibliography | | License / terms of use stated | Include the license you release under *and* those you consumed under | | Use consistent with intended use | Justify research use of scraped or user-generated data | | PII and offensive content handled | Describe scanning/anonymization steps actually performed | | Documentation of domains, languages, demographics | Ship a data statement or datasheet, not just row counts | | Statistics on splits reported | Train/dev/test sizes in both paper and README |
Checklist answers contradicted by the archive read as misleading information — grounds for desk rejection under ARR policy, and a credibility wound even when not enforced.
What an ACL reviewer opens first
1. The README — it has roughly one minute to orient them. 2. Prompt files and evaluation scripts, for any LLM claim: exact prompts, decoding parameters, and scoring code are the reproduction spine. 3. Annotation guidelines, for any dataset or human-eval claim: reviewers judge whether the labels could possibly mean what the paper says. 4. A sample of the data itself — quality problems visible in twenty random examples have sunk otherwise strong resource papers.
Vignette: packaging a multilingual benchmark submission
A hypothetical paper releases a 7-language reading-comprehension test suite built from news text plus a baseline evaluation of five LLMs.
- Ship per-language provenance: source, license, collection window, and the
filtering pipeline as runnable code, since "web text" alone fails checklist item B on documentation.
- Include annotator guidelines, pay, recruitment channel, and agreement
statistics; multilingual annotation quality is the first attack surface.
- Provide the exact prompts and outputs for all five models so reviewers can
re-score without API keys.
- Keep a versioned, hash-stamped test file so post-publication contamination
can be audited later.
Release ladder after acceptance
anonymous supplement -> public repo + dataset page -> archived, versioned release (review-time) (camera-ready links) (DOI/hub artifact, cited version)
Post-acceptance, register the artifact where your community actually looks (model/dataset hubs, a maintained repo), state the license explicitly, and put the citation-of-record (the Anthology entry) in the README.
Anonymization sweep, concretely
Run these before zipping, on a copy:
# authorship trails in code and docs grep -ri "yourname\|yourlab\|university" . --include="*.py" --include="*.md" # git history and remotes leak owners rm -rf .git; # or re-init a fresh repo for the archive copy # notebook metadata carries usernames and kernel paths jupyter nbconvert --clear-output --inplace *.ipynb # absolute paths in configs and logs grep -r "/home/\|/Users/" . | head
Then check the parts tools miss: license headers naming the lab, dataset hosting pages with institutional branding, model cards listing maintainers, and README badges pointing at owner-named CI.
Sizing and format sanity
- Keep the archive lean: strip checkpoints reviewers cannot load anyway,
cached datasets, and virtualenvs; describe big assets and provide them at camera-ready instead.
- One top-level README, one environment file, one entry point per claimed
result — reviewers grant roughly a minute before giving up.
- Verify the .zip/.tgz opens on a machine that has never seen the project;
OpenReview upload limits and accepted fields vary by cycle, so check the live form rather than last cycle's.
Output format
[Artifact role] anonymous supplement / camera-ready release / public benchmark [Contents] <code/data/prompts/outputs/guidelines> [Checklist alignment] <Section B items satisfied vs missing> [Anonymity findings] <paths/metadata/hosting leaks> [Release plan] <post-acceptance registry, license, versioning>
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

