isca-camera-ready

GitHub

指导将ISCA录用论文转换为最终出版版本,包括去匿名化、处理ACM/IEEE不同出版商流程、整合Shepherd要求及检查链接等。

ISCA-Skills/skills/isca-camera-ready/SKILL.md brycewang-stanford/Awesome-Journal-Skills

Trigger Scenarios

准备ISCA会议最终版论文 执行论文去匿名化操作 确认出版商版权与模板流程

Install

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill isca-camera-ready -g -y
More Options

Non-standard path

npx skills add https://github.com/brycewang-stanford/Awesome-Journal-Skills/tree/main/ISCA-Skills/skills/isca-camera-ready -g -y

Use without installing

npx skills use brycewang-stanford/Awesome-Journal-Skills@isca-camera-ready

指定 Agent (Claude Code)

npx skills add brycewang-stanford/Awesome-Journal-Skills --skill isca-camera-ready -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": "isca-camera-ready",
    "description": "Use when converting an accepted ISCA paper into its published form — de-anonymizing authors, acknowledgments, and artifact links; satisfying the edition's publisher workflow under the alternating ACM\/IEEE arrangement; integrating shepherd requirements and badges; and preparing the June talk and attendance logistics."
}

ISCA Camera-Ready

Acceptance starts a second, administrative project with real failure modes: papers have appeared with anonymization stubs intact, dead artifact links, and acknowledgments naming the wrong grant. The 2026 edition maintained a dedicated camera-ready guidelines page (iscaconf.org/isca2026/submit/cameraready.php — its detailed contents were not directly fetchable at verification time, so the specific instructions below marked practice are community-standard rather than quoted rules; the page itself is the authority — 待核实 per edition).

The publisher variable unique to ISCA

ISCA's ACM SIGARCH + IEEE-CS TCCA co-sponsorship shows up concretely at camera-ready: the publishing arrangement varies by edition (the 52nd edition's proceedings were ACM-published; the 2026 edition carried IEEE branding and pointed LaTeX users at an IEEE template). Everything downstream — rights forms, copyright blocks, final template, DOI issuer, submission portal for finals — follows the edition's publisher. Rule one of ISCA camera-ready: identify this edition's publisher workflow before touching the LaTeX, and expect it to differ from the last ISCA you published at.

De-anonymization is a checklist, not a mood

Work from the submission's blinding actions and invert each one deliberately:

Was blinded at submission Camera-ready action
Author block absent Full names, affiliations, emails — order confirmed by all coauthors in writing before upload
PDF metadata scrubbed Regenerate with true metadata; verify with pdfinfo
Artifact links anonymized Swap in canonical repo + archival DOI (isca-artifact-evaluation); click every link from the final PDF
Third-person self-citations Recast where the prose reads absurdly; keep where fine
Acknowledgments omitted Add funders with exact grant numbers, contributors, and any disclosure the publisher's policy requires
Neutralized cluster/trace names Restore real names where licenses permit
# Final-PDF de-anonymization verification (inverse of the submission sweep)
pdfinfo final.pdf | grep -i author            # now SHOULD list authors
pdftotext final.pdf - | grep -ci 'anonym'     # expect 0
pdftotext final.pdf - | grep -nE 'blind review|under submission' # expect none
pdftotext final.pdf - | grep -oE 'https?://[^ )]+' | sort -u > links.txt
while read -r u; do curl -s -o /dev/null -w '%{http_code} %s\n' "$u" "$u"; \
  done < links.txt | grep -v '^200'           # every link in the paper resolves

Shepherds and required changes

If the acceptance carries a shepherd or a mandatory-revisions list, that list is a condition, not a suggestion. Practice that keeps this smooth: send the shepherd a change memo (item → what changed → where) with the revised draft, early enough for one round of disagreement; where you believe a requested change is wrong, negotiate in the memo — never silently skip an item and hope.

Content changes: repair, don't remodel

Camera-ready is for review-driven repairs and accuracy fixes. If numbers changed (a bug found post-acceptance, a rerun under the fixed seed), correct them and ensure abstract/intro claims still match the tables — publishing known- stale numbers because "it was accepted with them" is how errata happen. Do not add new contributions; the version of record should be the reviewed paper, healed. Any camera-ready page allowance beyond the submission's 11 text pages is edition-specific and was not verified — 待核实 before planning to grow.

Badges, statements, and the artifact block

Coordinate with the AE track (isca-artifact-evaluation): earned badges are applied to the published paper under the ACM badging framework, and the camera-ready typically carries an artifact-availability statement with the archival DOI. Get the DOI before the camera-ready deadline by depositing the evaluated snapshot early; retrofitting a DOI after the proceedings freeze is somewhere between painful and impossible.

The June obligations

The 2026 conference ran June 27 - July 1 in Raleigh. Between camera-ready and the conference, in rough order of deadline pressure:

  1. Registration — whether a specific author-registration category is mandatory per paper was not verified (待核实, and commonly true at flagship venues); resolve it the week of acceptance, with visa lead times in mind for international authors.
  2. Talk — the community's norm is mechanism-forward: motivate with your measured data, spend the middle on how the design works (the walk-through from isca-writing-style translates directly to slides), end on the honest limits. Rehearse against the session's time slot, not a guess at it.
  3. Poster/lightning collateral if the edition uses them — 待核实.
  4. Publicity — once the proceedings version exists: update the arXiv record if one exists, the lab page, and the repo README to cite the canonical DOI, so the version of record accretes the citations.

Sequence for the six-or-so weeks

Week 0   Read THIS edition's camera-ready page top to bottom; identify
         publisher, template, rights form, portal, true deadline (AoE?).
Week 1   Shepherd memo (if any) + content repairs; coauthor sign-off on
         author order and affiliations.
Week 2   De-anonymization checklist; acknowledgments with grant numbers;
         artifact DOI deposited.
Week 3   Publisher template pass; rights form executed by the authorized
         author; metadata (title case, abstract, keywords) entered exactly.
Week 4   Link check + verification script above on the actual final PDF;
         upload; download back and re-verify what the portal stored.
Buffer   Publisher back-and-forth (format rejections are routine, not
         emergencies) + registration + talk drafting.

Final gate before upload

  • Publisher, template, and rights form identified from THIS edition's pages
  • Author block, order, and affiliations signed off by every coauthor
  • De-anonymization checklist fully inverted; verification script clean
  • Shepherd/mandatory items all addressed with a change memo
  • Artifact DOI live; badge coordination confirmed with AE chairs
  • Acknowledgments carry exact grant numbers and required disclosures
  • Portal's stored PDF downloaded back and re-verified
  • Registration done; talk slot known; travel and visa in motion

Verified anchors (dates, sponsorship, AE arrangement, 2026 template flavor): ../../resources/official-source-map.md, checked 2026-07-08. The camera-ready page contents, page allowance, rights workflow, and attendance rules for the target edition are the controlling sources once posted.

Version History

  • 9f86f09 Current 2026-07-19 16:05

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
f3dc3fd8
Indexed
2026-07-19 16:05

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