peer-review-guide
Conduct thorough, constructive peer reviews and evaluate research papers
Best use case
peer-review-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Conduct thorough, constructive peer reviews and evaluate research papers
Teams using peer-review-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/peer-review-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How peer-review-guide Compares
| Feature / Agent | peer-review-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Conduct thorough, constructive peer reviews and evaluate research papers
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# Peer Review Guide
A skill for conducting thorough, fair, and constructive peer reviews of academic manuscripts. Covers systematic evaluation frameworks, writing effective reviewer reports, and common evaluation criteria across disciplines.
## Review Process Overview
### Systematic Reading Strategy
```
First Pass (30 min): Skim for overall assessment
- Read title, abstract, introduction, conclusion
- Scan figures and tables
- Assess: Is this paper in scope? Is the question important?
Second Pass (60-90 min): Detailed critical reading
- Read the full paper carefully
- Annotate unclear points, potential errors, missing references
- Check methodology, statistical analyses, interpretation
Third Pass (30-60 min): Constructive feedback
- Formulate your major and minor comments
- Identify strengths to highlight
- Draft your review report
```
## Evaluation Framework
### Core Assessment Dimensions
```python
def evaluate_manuscript(assessments: dict) -> dict:
"""
Structured manuscript evaluation across key dimensions.
Args:
assessments: Dict mapping dimension to score (1-5) and comments
"""
dimensions = {
'novelty': {
'weight': 0.20,
'questions': [
'Does this paper present new findings, methods, or perspectives?',
'How does it advance beyond existing work?',
'Is the contribution incremental or substantial?'
]
},
'significance': {
'weight': 0.20,
'questions': [
'Is the research question important to the field?',
'Will this work influence future research or practice?',
'Is the scope appropriate for this journal?'
]
},
'methodology': {
'weight': 0.25,
'questions': [
'Is the study design appropriate for the research question?',
'Are methods described in sufficient detail to reproduce?',
'Are statistical analyses appropriate and correctly applied?',
'Are there threats to validity that are not addressed?'
]
},
'presentation': {
'weight': 0.15,
'questions': [
'Is the paper clearly written and well organized?',
'Are figures and tables informative and properly labeled?',
'Is the paper an appropriate length?'
]
},
'literature': {
'weight': 0.10,
'questions': [
'Is the related work section comprehensive?',
'Are key prior studies cited and discussed?',
'Is the paper properly positioned within the literature?'
]
},
'reproducibility': {
'weight': 0.10,
'questions': [
'Are data and code available or described sufficiently?',
'Could another researcher replicate this study?',
'Are all materials, procedures, and analyses documented?'
]
}
}
overall_score = 0
evaluation = {}
for dim, info in dimensions.items():
score = assessments.get(dim, {}).get('score', 3)
comment = assessments.get(dim, {}).get('comment', '')
overall_score += score * info['weight']
evaluation[dim] = {
'score': score,
'weight': info['weight'],
'weighted_score': score * info['weight'],
'comment': comment
}
evaluation['overall_score'] = round(overall_score, 2)
evaluation['recommendation'] = (
'Accept' if overall_score >= 4.0
else 'Minor Revision' if overall_score >= 3.5
else 'Major Revision' if overall_score >= 2.5
else 'Reject'
)
return evaluation
```
## Writing the Review Report
### Structure Template
```
SUMMARY (2-3 sentences)
Briefly describe what the paper does and its main contribution.
This shows the authors you read and understood their work.
STRENGTHS (3-5 bullet points)
- Specific positive aspects
- "The experimental design is rigorous, with appropriate controls..."
- "The visualization in Figure 3 effectively communicates..."
MAJOR COMMENTS (numbered, typically 2-5)
Issues that must be addressed before the paper can be accepted.
These concern correctness, validity, or significant gaps.
1. [Specific concern with reference to section/page]
"In Section 3.2, the assumption that X holds is questionable
because [reason]. The authors should either provide evidence
for this assumption or discuss what happens if it is relaxed."
2. [Another major concern]
MINOR COMMENTS (numbered, typically 3-10)
Suggestions for improvement that are not critical but would
strengthen the paper.
1. "On page 5, line 23: consider citing Smith et al. (2023)
who address a similar phenomenon."
TYPOS AND FORMATTING (optional, brief list)
- Page 3, line 14: "effect" should be "affect"
- Table 2: column headers are cut off
CONFIDENTIAL COMMENTS TO THE EDITOR (separate section)
Overall assessment, conflicts of interest, ethical concerns.
This is NOT shared with the authors.
```
### Writing Effective Comments
```python
def format_review_comment(comment_type: str, section: str,
issue: str, suggestion: str) -> str:
"""
Format a review comment following best practices.
Args:
comment_type: 'major' or 'minor'
section: Where in the paper (e.g., 'Section 3.2, page 7')
issue: What the problem is
suggestion: How to address it
"""
return (
f"[{comment_type.upper()}] {section}\n"
f"Issue: {issue}\n"
f"Suggestion: {suggestion}\n"
)
# Good review comment (specific, actionable, constructive):
print(format_review_comment(
'major',
'Section 4.1, Table 3',
'The comparison with baseline methods uses different evaluation metrics '
'(accuracy for the proposed method, F1 for baselines), making the '
'comparison unfair.',
'Please report the same set of metrics (precision, recall, F1, accuracy) '
'for all methods, including the proposed approach, to enable fair comparison.'
))
```
## Common Red Flags to Check
### Statistical Issues
- p-hacking: Multiple comparisons without correction
- Selective reporting: Only positive results shown
- Inappropriate tests: Parametric tests on non-normal data
- Missing effect sizes: Only p-values reported
- Small sample with large claims: Low power, inflated effects
### Methodological Issues
- Lack of control group or baseline
- Data leakage in ML (test data used during training/validation)
- Confounding variables not addressed
- Circular reasoning in analysis
### Writing Issues
- Claims not supported by the data presented
- Overclaiming in the title or abstract
- Missing limitations section
- Insufficient detail for reproducibility
## Ethical Responsibilities of Reviewers
- Declare conflicts of interest promptly
- Maintain confidentiality -- do not share the manuscript or discuss it
- Complete reviews within the agreed timeline (typically 2-4 weeks)
- Be constructive -- the goal is to improve the paper, not to display superiority
- Do not use ideas from the manuscript under review in your own work
- If you suspect misconduct (fabrication, falsification, plagiarism), report to the editor confidentiallyRelated Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style
grammar-checker-guide
Use grammar and style checking tools to polish academic manuscripts
conciseness-editing-guide
Eliminate wordiness and redundancy in academic prose for clarity
academic-translation-guide
Academic translation, post-editing, and Chinglish correction guide