Supplements at CSCW serve a journal-style review: they let reviewers verify the methods section without bloating a paper already policed by the contribution-vs- length standard. Because Revise and Resubmit sends the paper back to the same reviewers, the supplement is also a versioned record — round-two reviewers can and do compare it against round one.
| Material | Main paper | Appendix | Separate supplement file |
|---|---|---|---|
| Method summary + key instrument excerpts | ✓ | ||
| Full interview guide / survey instrument | ✓ | ✓ if long | |
| Codebook (definitions + paraphrased exemplars) | ✓ | ✓ | |
| Trace-pipeline ledger and attrition table | summary | ✓ | code as archive |
| Analysis scripts | ✓ (archive) | ||
| Additional tables/robustness checks | ✓ | ✓ | |
| Consent forms / recruitment text | ✓ | ||
| Raw transcripts, identifiable data | never | never | never |
Decision rule: anything a reviewer needs to evaluate a claim belongs in the paper or appendix; anything a reviewer needs to trust the method belongs in the supplement; anything participants did not consent to share belongs nowhere.
The supplement is the classic identity leak at this venue, because it aggregates exactly the artifacts teams forget to scrub:
/home/username/), git history, package
lockfiles with private registry URLs, notebook execution metadata. Export clean
archives, never a cloned .git.Mechanical sweep before upload:
# strings that must not appear anywhere in the supplement tree
grep -ri -l -E "(surname|firstname|university-name|lab-name|grant-no|protocol-no)" supplement/
# metadata in every PDF
for f in supplement/**/*.pdf; do exiftool "$f" | grep -iE "author|creator|company"; done
# accidental git history or user paths in code archives
find supplement/ -name ".git" -o -path "*Users*" -o -path "*home*" | head
Adapt the string list per project; run it on the packed archive, since packing often reintroduces metadata.
supplement-r2.zip), never overwrite.[Inventory] every supplement file listed in the paper or response letter? y/n
[Consent] each artifact within participants' consent scope? y/n
[Sweep] mechanical anonymity sweep run on the packed archive? y/n
[Size/format] platform limits confirmed on the live submission system? 待核实 per
regime (PCS legacy vs Manuscript Central) — do not assume
[Round label] files named by round; prior rounds preserved? y/n
Platform-specific size and format caps were not verifiable at 2026-07-08; check the live Manuscript Central instructions for the rolling pathway before packaging.