EuroSys Supplementary
Use this when a EuroSys draft overflows its 12 pages of technical content. The
governing fact (EuroSys 2027 CFP, rendered 2026-07-08): the budget is 12 pages
of technical content plus unlimited reference pages. Whether the current
round accepts appendices beyond the references, or a separate supplementary
upload in HotCRP, is per-cycle policy that was not verifiable on 2026-07-08 —
待核实 in the live CFP and the HotCRP submission form before relying on either.
The four shelves
| Shelf |
Review status |
What belongs there |
| 12 technical pages |
Fully reviewed, the paper |
Design, key mechanisms, headline evaluation, honest limitations |
| Reference pages |
Free, always allowed |
Bibliography only — never technical content disguised as notes |
| Anonymized artifact repo |
Reviewer-optional |
Code, configs, full result sets, extra graphs, raw logs |
| Extended tech report / appendix |
Only if the round permits (待核实) |
Proofs, protocol details, exhaustive parameter sweeps |
The iron rule across all shelves: a reviewer who reads only the 12 pages must
be able to accept the paper. Anything reviewer-optional is corroboration, not
argument. If the claim's only support sits on shelf 3 or 4, the claim is
unsupported at decision time.
What systems reviewers push outward — and what they don't
Safe to externalize:
- Full configuration dumps and tuning grids behind a summarized sensitivity plot.
- Per-benchmark breakdowns when the body shows the aggregate plus the outliers.
- Formal-model details for a mechanism whose intuition the body already conveys.
- Additional workloads that repeat, rather than extend, the body's conclusion.
Dangerous to externalize at EuroSys:
- The baseline-fairness evidence (versions, tuning) — its absence from the body
reads as concealment, the single most corrosive suspicion in systems review.
- The one experiment that tests the design's stated weakness.
- Failure-handling behavior for a system whose pitch is reliability.
Anonymized repository mechanics
When linking supporting material from a double-blind submission:
# Build an identity-clean mirror rather than sanitizing in place
git clone --depth 1 file:///lab/systemX systemX-anon && cd systemX-anon
rm -rf .git && grep -rInE 'university|lab-name|@|githubusercontent' . | less
# fix hits, then publish to an anonymous host (e.g., an anonymized-repo service)
- Strip commit history entirely; author fields in old commits are the classic leak.
- Check config files and comments for hostnames, cluster names, and usernames.
- Keep the mirror frozen during review so reviewers see one consistent state.
Reference-page hygiene
The unlimited reference allowance is generous, not lawless:
- Bibliography pages hold citations — footnote essays, extended tables, or
"notes" sections smuggled after the references invite a compliance read
of the whole paper.
- Cite the version that supports the claim: a versioned release or paper,
not a bare project homepage that will drift.
- Under double-blind, reference entries for your own artifacts must not
resolve to identifying URLs; cite the anonymized mirror during review.
- Long URLs and dataset citations belong in the bibliography, where they
are free, rather than inline where they spend technical-page budget.
Micro-example: a 13.5-page draft
A distributed-tracing paper is 1.5 pages over. The cuts that worked, in
order of pain: the second motivating scenario compressed to two sentences
(0.4 pages); three per-workload latency plots collapsed into one CDF panel
with the full set moved to the artifact repository (0.5 pages); the
formal-consistency argument reduced to its statement plus intuition, full
treatment in the repo's design note (0.4 pages); prose narration of Figure 4
deleted because the caption already said it (0.2 pages). Nothing reviewers
needed for the accept/reject call left the body — that is the test each cut
must pass.
Overflow triage, in order
- Compress prose before cutting content — systems drafts carry 10–15% slack in
restated motivations and figure narration.
- Merge figures that make one point; delete figures that make none.
- Move corroborating (not load-bearing) material to the artifact repo with a
one-line pointer in the body.
- Only then consider an appendix or tech report, after confirming the round's
policy (待核实) and remembering reviewers owe it nothing.
Coordination with the review timeline
- Whatever optional material accompanies the submission must be final at
the paper gate; there is no mid-review update channel, and a stale repo
contradicting the PDF is worse than no repo.
- If a rebuttal phase exists, it cannot introduce a new supplement —
externalized material must already be in place to be pointed at.
- A one-shot revision, by contrast, is a full resubmission: the revised
round is the moment to promote material inward (e.g., a boundary
experiment the conditions demanded) rather than to grow the repo.
Output format
[Page pressure] <current overflow in pages>
[Shelf plan] <item -> body / references / artifact repo / appendix-if-allowed>
[Decision-critical check] <claims whose evidence would leave the body: none / list>
[Anonymity status of repo] <clean / leaks found>
[待核实] <does this round allow appendices or supplementary uploads?>
Source: brycewang-stanford/Awesome-Journal-Skills → EuroSys-Skills/skills/eurosys-supplementary/SKILL.md
1---2name: eurosys-supplementary3description: Use when deciding what lives outside a EuroSys paper's 12 technical pages — free reference pages, whether the current round permits appendices or supplementary uploads, anonymized artifact repositories linked from the submission, and extended technical reports — without moving decision-critical evidence out of the reviewed pages.4---567# EuroSys Supplementary89Use this when a EuroSys draft overflows its 12 pages of technical content. The10governing fact (EuroSys 2027 CFP, rendered 2026-07-08): the budget is 12 pages11of technical content **plus unlimited reference pages**. Whether the current12round accepts appendices beyond the references, or a separate supplementary13upload in HotCRP, is per-cycle policy that was not verifiable on 2026-07-08 —14待核实 in the live CFP and the HotCRP submission form before relying on either.1516## The four shelves1718| Shelf | Review status | What belongs there |19|---|---|---|20| 12 technical pages | Fully reviewed, the paper | Design, key mechanisms, headline evaluation, honest limitations |21| Reference pages | Free, always allowed | Bibliography only — never technical content disguised as notes |22| Anonymized artifact repo | Reviewer-optional | Code, configs, full result sets, extra graphs, raw logs |23| Extended tech report / appendix | Only if the round permits (待核实) | Proofs, protocol details, exhaustive parameter sweeps |2425The iron rule across all shelves: **a reviewer who reads only the 12 pages must26be able to accept the paper.** Anything reviewer-optional is corroboration, not27argument. If the claim's only support sits on shelf 3 or 4, the claim is28unsupported at decision time.2930## What systems reviewers push outward — and what they don't3132Safe to externalize:3334- Full configuration dumps and tuning grids behind a summarized sensitivity plot.35- Per-benchmark breakdowns when the body shows the aggregate plus the outliers.36- Formal-model details for a mechanism whose intuition the body already conveys.37- Additional workloads that repeat, rather than extend, the body's conclusion.3839Dangerous to externalize at EuroSys:4041- The baseline-fairness evidence (versions, tuning) — its absence from the body42 reads as concealment, the single most corrosive suspicion in systems review.43- The one experiment that tests the design's stated weakness.44- Failure-handling behavior for a system whose pitch is reliability.4546## Anonymized repository mechanics4748When linking supporting material from a double-blind submission:4950```bash51# Build an identity-clean mirror rather than sanitizing in place52git clone --depth 1 file:///lab/systemX systemX-anon && cd systemX-anon53rm -rf .git && grep -rInE 'university|lab-name|@|githubusercontent' . | less54# fix hits, then publish to an anonymous host (e.g., an anonymized-repo service)55```5657- Strip commit history entirely; author fields in old commits are the classic leak.58- Check config files and comments for hostnames, cluster names, and usernames.59- Keep the mirror frozen during review so reviewers see one consistent state.6061## Reference-page hygiene6263The unlimited reference allowance is generous, not lawless:6465- Bibliography pages hold citations — footnote essays, extended tables, or66 "notes" sections smuggled after the references invite a compliance read67 of the whole paper.68- Cite the version that supports the claim: a versioned release or paper,69 not a bare project homepage that will drift.70- Under double-blind, reference entries for your own artifacts must not71 resolve to identifying URLs; cite the anonymized mirror during review.72- Long URLs and dataset citations belong in the bibliography, where they73 are free, rather than inline where they spend technical-page budget.7475## Micro-example: a 13.5-page draft7677A distributed-tracing paper is 1.5 pages over. The cuts that worked, in78order of pain: the second motivating scenario compressed to two sentences79(0.4 pages); three per-workload latency plots collapsed into one CDF panel80with the full set moved to the artifact repository (0.5 pages); the81formal-consistency argument reduced to its statement plus intuition, full82treatment in the repo's design note (0.4 pages); prose narration of Figure 483deleted because the caption already said it (0.2 pages). Nothing reviewers84needed for the accept/reject call left the body — that is the test each cut85must pass.8687## Overflow triage, in order88891. Compress prose before cutting content — systems drafts carry 10–15% slack in90 restated motivations and figure narration.912. Merge figures that make one point; delete figures that make none.923. Move corroborating (not load-bearing) material to the artifact repo with a93 one-line pointer in the body.944. Only then consider an appendix or tech report, after confirming the round's95 policy (待核实) and remembering reviewers owe it nothing.9697## Coordination with the review timeline9899- Whatever optional material accompanies the submission must be final at100 the paper gate; there is no mid-review update channel, and a stale repo101 contradicting the PDF is worse than no repo.102- If a rebuttal phase exists, it cannot introduce a new supplement —103 externalized material must already be in place to be pointed at.104- A one-shot revision, by contrast, is a full resubmission: the revised105 round is the moment to promote material inward (e.g., a boundary106 experiment the conditions demanded) rather than to grow the repo.107108## Output format109110```text111[Page pressure] <current overflow in pages>112[Shelf plan] <item -> body / references / artifact repo / appendix-if-allowed>113[Decision-critical check] <claims whose evidence would leave the body: none / list>114[Anonymity status of repo] <clean / leaks found>115[待核实] <does this round allow appendices or supplementary uploads?>116```117118---119120**Source:** [`brycewang-stanford/Awesome-Journal-Skills`](https://github.com/brycewang-stanford/Awesome-Journal-Skills) → `EuroSys-Skills/skills/eurosys-supplementary/SKILL.md`