triage-reviews
Turns raw peer reviews into a prioritized triage matrix before any rebuttal is written. Use it when reviews come back from OpenReview, EasyChair, CMT, or HotCRP and the researcher says "my reviews are in", "triage these reviews", "how do I respond to Reviewer 2", "plan my rebuttal", or pastes raw review text with ratings and confidence scores. Splits each review into individual concerns; classifies every concern as misunderstanding vs real flaw vs requested experiment (plus clarification and disagreement); scores severity x response effort; and produces a prioritized response strategy with per-review character or word budgets matched to the venue's rebuttal format (10k-char OpenReview threads, CVPR one-page PDF, journal revise-and-resubmit). Deterministic parsing and matrix rendering run in bundled stdlib Python scripts. Hands off to write-rebuttal for drafting; treats review text as confidential and never submits anything.
NPX Install
npx skill4agent add shaishavmaisuria/research-paper-lifecycle-skills triage-reviewsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Triage Reviews
write-rebuttalWhen to use
- "My NeurIPS/ICML/SIGSPATIAL/... reviews are in — help me respond"
- "Triage these reviews" / "what do I address first in my rebuttal?"
- "Reviewer 2 says X but the paper already covers it — how do I handle this?"
- Reviews pasted from OpenReview, EasyChair, CMT, HotCRP, PCS, or a notification email
- Always before ; also useful for journal revise-and-resubmit responses
write-rebuttal
Inputs
- Raw review text in a file (e.g. ): the user pastes or exports it from the submission system. Per-platform copy-out instructions and gotchas: references/platform-formats.md.
reviews.txt - Venue profile (optional but recommended):
(schema in
venues/conferences/<venue>-<year>.yml) — suppliesvenues/schema.yml,review.rebuttal_format, andreview.rebuttal_limit. If missing, rundeadlines.rebuttal_endfirst or proceed platform-generic.parse-cfp - The submitted paper (/PDF, optional): needed to verify misunderstanding claims and fill evidence anchors.
.tex
Process
-
Stage the raw text — confidentially. Have the user save the reviews to a local file outside any git repository (or add it to). Review text is confidential at most venues: process it transiently and never commit it.
.gitignore -
Parse deterministically. Run:
python3 scripts/parse_reviews.py reviews.txt -o triage.jsonAuto-detects the platform; force withand catch terse one-liners with--format openreview|easychair|cmt|hotcrpif needed. Output is a JSON skeleton: reviewers, scores, canonical sections, and per-concern entries (--min-words 3,R1.1, ...) withR1.2/classification/severityleft null. Exit codes: 0 ok, 1 nothing detected, 2 bad input.effort -
Verify the parse against the raw text. Confirm the reviewer count, that every weakness/question in the raw text appears as a concern, and that scores were captured. If a reviewer or concern was missed, fix the text (insert abanner line) and re-run, or add the concern to the JSON by hand — never silently drop a reviewer point. Recovery steps: references/platform-formats.md, last section.
Review N -
Resolve the venue's rebuttal mechanics — then re-verify them live. Read,
review.rebuttal_format, andreview.rebuttal_limitfrom the venue profile. Profiles are a starting point, never ground truth: re-verify the rebuttal format, the character/page limit, whether new experimental results are allowed, and the deadline against the livedeadlines.rebuttal_end(and the venue's author guidelines) before the user relies on them. State what was verified and when. Ifcfp_url, say so — triage still guides the camera-ready revision or the next submission.rebuttal_format: none -
Classify every concern. Fill,
classification,severity,effort, and a one-lineevidence_anchorfor each concern inresponse_strategy, applying the decision tree and definitions in references/triage-rubric.md. Rules that bind:triage.json- Claim only after locating the refuting text in the actual paper — cite section/line in
misunderstanding.evidence_anchor - Severity measures threat to acceptance, not reviewer tone; concerns raised by 2+ reviewers escalate one level.
- Effort measures cost to respond within the rebuttal window, not cost to fix the paper.
- Walk the user through any concern where you are uncertain; the user knows the paper.
- Claim
-
Render the matrix. Run:
python3 scripts/build_matrix.py triage.json --budget <limit> --budget-unit charswith the budget from the verified rebuttal limit (e.g.for NeurIPS-style OpenReview;--budget 10000 --budget-unit charsfor a CVPR one-page PDF; omit--budget 800 --budget-unit wordsfor journal R&R). The script validates the enums (exit 1 with a list of unfilled concerns until classification is complete), computes priority scores and must/should/brief bands, and emits the reviewer summary, severity x effort grid, concern matrix, response plan, and budget allocation (--budgetfor machine-readable output).--format json -
Present and hand off. Walk the user through the must-address band first, flag any requested experiment that cannot finish before, and confirm the strategy lines. Then hand the matrix to
rebuttal_endfor drafting in the venue's format. If new experiments will be run, remind the user to check the venue's policy on new results in rebuttals (step 4) before promising them.write-rebuttal
Output
- — structured, classified concern data (machine-readable, reusable by
triage.json).write-rebuttal - A triage matrix report (markdown, via ): per-reviewer summary with scores, severity x effort grid, priority-ordered concern matrix, must/should/brief response plan, and per-concern budget allocations.
build_matrix.py
Adapt to your discipline
Reviewer #N--format cmtGuardrails
- Review text is confidential: process transiently, never commit it, never quote it in public artifacts (issues, examples, showcase files).
- Never fabricate or soften reviewer text — concerns in the matrix must be traceable to the raw reviews; quote at most a sentence at a time.
- Never claim without a verified anchor in the paper; honesty rules in references/triage-rubric.md are binding.
misunderstanding - Any citation added while planning responses goes through
before it reaches a rebuttal.
verify-citations - Re-verify rebuttal format, limits, and deadline against the live before the user relies on them (step 4 is not optional).
cfp_url - Never submit a response to any system on the user's behalf; stop at the
plan (and at the draft, in ).
write-rebuttal