Research Paper Review
Assist researchers in reviewing, analyzing, and criticizing academic papers systematically and thoroughly.
When to Use
- User asks to review, summarize, or critique a research paper
- User shares a PDF or link to an academic paper
- User wants to assess methodology, contributions, or novelty
- User needs help writing a peer review
- User wants to compare multiple papers or do a literature survey
- User wants to improve a paper before submission (pre-submission review)
- User wants to check for numerical/statistical inconsistencies
- User wants venue-specific feedback (conference, journal, or preprint)
Inputs
- Paper content: PDF, LaTeX source, or plaint text
- Target Venue (optional but recommended): conference, journal, or preprint target
- Example: "Models 2026", "TOSEM", "Sosym", "arXiv preprint"
- Type of paper (optional but recommended): "full research" paper, "short" paper, "new ideas" paper, "tool demo", "poster",...
- Explicit reviewing guidelines (optinoal): if available provide a description or URL with the reviewing criteria.
Review Workflow
###Step 0: Pre-Processing / Venue Context
- If target venue and/or the type of paper are provided, include them as context for all subsequent steps:
“Review this paper as if it is intended for [TARGET VENUE] as a [TYPE PAPER] submission. Consider typical standards, expectations, page limits, scope, and audience for this venue and type of paper”
- Optional: Use the provided reviewing guidelines or try to find them on the venue website (if available) with standards for methodology, novelty, empirical rigor, validation and formatting.
Step 1: Read the Paper
Identify the format and read accordingly:
- PDF: Use the Read tool with the
pages parameter for large documents (max 20 pages per request).
- LaTeX source: Read the main
.tex file first. Look for \input{} or \include{} commands to find additional sections, figures, and bibliography files. Use Grep to search for key commands like \begin{abstract}, \section, \cite across all .tex files.
- Multiple files: Use Glob with
**/*.tex to find all source files, then read them in logical order (main file → sections → appendix).
In all cases, skim the abstract, introduction, and conclusion first to get the big picture before diving into details.
Step 2: Structured Summary
Show that you understand the paper by producing a summary covering:
- Problem Statement — What problem does the paper address? Why does it matter?
- Contributions — What are the claimed contributions? (list them)
- Approach/Methodology — How do the authors solve the problem?
- Key Results — What are the main findings/metrics?
- Limitations — What are the acknowledged (and unacknowledged) limitations?
Step 3: Numerical & Consistency Checks - most info from linkedin
This is where LLM-assisted review adds the most value, catching things humans easily miss during manual review. Run these checks systematically:
- Numbers across text, tables, and figures: Do values reported in the text match what's in the tables? Do figures reflect the data described?
- Statistical consistency: Do p-values, confidence intervals, and effect sizes align? Are sample sizes consistent throughout?
- Calculations: Verify percentages, averages, sums. Check that reported improvements (e.g., "30% improvement") match the actual numbers.
- Internal references: Do all \ref, \cite, figure/table references resolve? Are there dangling references or wrong numbering?
- Acronyms: Are all acronyms defined on first use?
- Terminology consistency: Is the same concept always referred to with the same term?
- Citations: Do all citations exist? Is citation style uniform (i.e. all conference papers are cited using the same fields, same for other venues)
Even minor errors (typos, broken references, wrong numbering) matter. reviewers often use these as signals that the paper was not carefully prepared.
Step 4: Critical Analysis
Evaluate the paper on these dimensions:
| Dimension |
Questions to Answer |
| Novelty |
Is this genuinely new? How does it differ from prior work? |
| Soundness |
Is the methodology rigorous? Are experiments well-designed? |
| Significance |
Does this advance the field meaningfully? |
| Clarity |
Is the paper well-written and well-structured? |
| Reproducibility |
Could someone replicate this work from the paper alone? |
| Related Work |
Is the positioning against prior work fair and complete? |
| Venue Alignment |
Does the paper meet expectations of the target venue (scope, depth, format, length, contribution type)? |
Step 5: Provide Actionable Feedback
Structure feedback as:
- Strengths — What the paper does well (be specific, cite sections)
- Weaknesses — What could be improved (be constructive, suggest fixes)
- Questions for Authors — Things that need clarification
- Minor Issues — Typos, formatting, citation issues, broken references
- Venue-Specific Recommendations — Highlight alignment issues, potential improvements to meet venue expectations
Step 6: Start here
Write down a list of the top 10 most immediate actions that the author should address.
These should be the ones that will bring the best "bang for the buck", i.e. actions that generate the most benefit relative to the cost of implementing them.
Output Format
Use this template for the review:
# Paper Review: [Title]
## Summary
[2-3 paragraph summary]
## Strengths
- S1: ...
- S2: ...
## Weaknesses
- W1: ...
- W2: ...
## Questions for Authors
- Q1: ...
## Minor Issues
- ...
## Venue-Specific Recommendations
- V1: ...
- V2: ...
## Overall Assessment
[1 paragraph verdict: accept/revise/reject with justification]
## Top actions . Start here
- T1: ...
- T2: ...
## Confidence
[Your confidence level in this review: low/medium/high, and why]
1---2name: research-paper-review3description: Review and analyze academic research papers. Use this skill when the user asks to review a paper, analyze a publication, summarize research, critique methodology, extract key findings, compare papers, check for numerical inconsistencies, or assess novelty and contributions of academic work. Also triggers when the user mentions reading a PDF of a paper, wants a literature review, asks about related work, or wants to improve a paper before submission.4---5
6# Research Paper Review
7
8Assist researchers in reviewing, analyzing, and criticizing academic papers systematically and thoroughly.
9
10## When to Use
11
12- User asks to review, summarize, or critique a research paper
13- User shares a PDF or link to an academic paper
14- User wants to assess methodology, contributions, or novelty
15- User needs help writing a peer review
16- User wants to compare multiple papers or do a literature survey
17- User wants to improve a paper before submission (pre-submission review)
18- User wants to check for numerical/statistical inconsistencies
19- User wants venue-specific feedback (conference, journal, or preprint)
20
21## Inputs
22
23- Paper content: PDF, LaTeX source, or plaint text
24- Target Venue (optional but recommended): conference, journal, or preprint target
25 - Example: "Models 2026", "TOSEM", "Sosym", "arXiv preprint"
26- Type of paper (optional but recommended): "full research" paper, "short" paper, "new ideas" paper, "tool demo", "poster",...
27- Explicit reviewing guidelines (optinoal): if available provide a description or URL with the reviewing criteria.
28
29## Review Workflow
30
31###Step 0: Pre-Processing / Venue Context
32
33- If target venue and/or the type of paper are provided, include them as context for all subsequent steps:
34
35> “Review this paper as if it is intended for [TARGET VENUE] as a [TYPE PAPER] submission. Consider typical standards, expectations, page limits, scope, and audience for this venue and type of paper”
36
37- Optional: Use the provided reviewing guidelines or try to find them on the venue website (if available) with standards for methodology, novelty, empirical rigor, validation and formatting.
38
39### Step 1: Read the Paper
40
41Identify the format and read accordingly:
42
43- **PDF**: Use the Read tool with the `pages` parameter for large documents (max 20 pages per request).
44- **LaTeX source**: Read the main `.tex` file first. Look for `\input{}` or `\include{}` commands to find additional sections, figures, and bibliography files. Use Grep to search for key commands like `\begin{abstract}`, `\section`, `\cite` across all `.tex` files.
45- **Multiple files**: Use Glob with `**/*.tex` to find all source files, then read them in logical order (main file → sections → appendix).
46
47In all cases, skim the abstract, introduction, and conclusion first to get the big picture before diving into details.
48
49### Step 2: Structured Summary
50
51Show that you understand the paper by producing a summary covering:
52
531. **Problem Statement** — What problem does the paper address? Why does it matter?
542. **Contributions** — What are the claimed contributions? (list them)
553. **Approach/Methodology** — How do the authors solve the problem?
564. **Key Results** — What are the main findings/metrics?
575. **Limitations** — What are the acknowledged (and unacknowledged) limitations?
58
59
60### Step 3: Numerical & Consistency Checks - most info from linkedin
61
62This is where LLM-assisted review adds the most value, catching things humans easily miss during manual review. Run these checks systematically:
63
64- **Numbers across text, tables, and figures**: Do values reported in the text match what's in the tables? Do figures reflect the data described?
65- **Statistical consistency**: Do p-values, confidence intervals, and effect sizes align? Are sample sizes consistent throughout?
66- **Calculations**: Verify percentages, averages, sums. Check that reported improvements (e.g., "30% improvement") match the actual numbers.
67- **Internal references**: Do all \ref, \cite, figure/table references resolve? Are there dangling references or wrong numbering?
68- **Acronyms**: Are all acronyms defined on first use?
69- **Terminology consistency**: Is the same concept always referred to with the same term?
70- **Citations**: Do all citations exist? Is citation style uniform (i.e. all conference papers are cited using the same fields, same for other venues)
71
72Even minor errors (typos, broken references, wrong numbering) matter. reviewers often use these as signals that the paper was not carefully prepared.
73
74### Step 4: Critical Analysis
75
76Evaluate the paper on these dimensions:
77
78| Dimension | Questions to Answer |
79|-----------|-------------------|
80| **Novelty** | Is this genuinely new? How does it differ from prior work? |
81| **Soundness** | Is the methodology rigorous? Are experiments well-designed? |
82| **Significance** | Does this advance the field meaningfully? |
83| **Clarity** | Is the paper well-written and well-structured? |
84| **Reproducibility** | Could someone replicate this work from the paper alone? |
85| **Related Work** | Is the positioning against prior work fair and complete? |
86| **Venue Alignment** | Does the paper meet expectations of the target venue (scope, depth, format, length, contribution type)? |
87
88
89### Step 5: Provide Actionable Feedback
90
91Structure feedback as:
92
93- **Strengths** — What the paper does well (be specific, cite sections)
94- **Weaknesses** — What could be improved (be constructive, suggest fixes)
95- **Questions for Authors** — Things that need clarification
96- **Minor Issues** — Typos, formatting, citation issues, broken references
97- **Venue-Specific Recommendations** — Highlight alignment issues, potential improvements to meet venue expectations
98
99### Step 6: Start here
100
101Write down a list of the top 10 most immediate actions that the author should address.
102
103These should be the ones that will bring the best "bang for the buck", i.e. actions that generate the most benefit relative to the cost of implementing them.
104
105
106## Output Format
107
108Use this template for the review:
109
110```markdown
111# Paper Review: [Title]
112
113## Summary
114[2-3 paragraph summary]
115
116## Strengths
117- S1: ...
118- S2: ...
119
120## Weaknesses
121- W1: ...
122- W2: ...
123
124## Questions for Authors
125- Q1: ...
126
127## Minor Issues
128- ...
129
130## Venue-Specific Recommendations
131- V1: ...
132- V2: ...
133
134## Overall Assessment
135[1 paragraph verdict: accept/revise/reject with justification]
136
137## Top actions . Start here
138- T1: ...
139- T2: ...
140
141
142## Confidence
143[Your confidence level in this review: low/medium/high, and why]
144```