@@ -41,6 +41,8 @@ pip install pypdfium2 # only if using vision mode (use_vision_for_pdf=True)
4141| Model name | No | Default: ` gpt-4o ` . Claude: ` claude-opus-4-5 ` , Qwen: ` qwen-plus ` |
4242| Discipline | No | If not given, uses general CS/ML-oriented prompts |
4343| Venue | No | e.g. ` "NeurIPS 2025" ` , ` "The Lancet" ` |
44+ | Instructions | No | Free-form reviewer guidance, e.g. ` "Focus on experimental design" ` |
45+ | Language | No | ` "en" ` (default) or ` "zh" ` for Simplified Chinese output |
4446| BibTeX file | No | Required only for reference verification |
4547| CrossRef email | No | Improves API rate limits for BibTeX verification |
4648
@@ -63,15 +65,75 @@ python skills/paper-review/scripts/review_paper.py paper.pdf
6365python skills/paper-review/scripts/review_paper.py paper.pdf \
6466 --discipline cs --venue " NeurIPS 2025"
6567
68+ # Chinese output
69+ python skills/paper-review/scripts/review_paper.py paper.pdf --language zh
70+
71+ # Custom reviewer instructions
72+ python skills/paper-review/scripts/review_paper.py paper.pdf \
73+ --instructions " Focus on experimental design and reproducibility"
74+
6675# PDF + BibTeX verification
6776python skills/paper-review/scripts/review_paper.py paper.pdf \
6877 --bib references.bib --email your@email.com
6978
79+ # Vision mode (for models that prefer images over text extraction)
80+ python skills/paper-review/scripts/review_paper.py paper.pdf \
81+ --vision --vision-max-pages 30 --format-vision-max-pages 10
82+
7083# TeX source package
7184python skills/paper-review/scripts/review_tex.py paper_source.tar.gz \
7285 --discipline biology --email your@email.com
86+
87+ # TeX source package with Chinese output and custom instructions
88+ python skills/paper-review/scripts/review_tex.py paper_source.tar.gz \
89+ --language zh --instructions " This is a short paper, be concise"
7390```
7491
92+ ## All options — review_paper.py
93+
94+ | Flag | Default | Description |
95+ | ------| ---------| -------------|
96+ | ` --model ` | ` gpt-4o ` | Model name |
97+ | ` --api-key ` | env var | API key |
98+ | ` --base-url ` | — | Custom API endpoint |
99+ | ` --discipline ` | — | Academic discipline |
100+ | ` --venue ` | — | Target conference/journal |
101+ | ` --instructions ` | — | Free-form reviewer guidance |
102+ | ` --language ` | ` en ` | Output language: ` en ` or ` zh ` |
103+ | ` --bib ` | — | Path to .bib file |
104+ | ` --email ` | — | CrossRef mailto for BibTeX check |
105+ | ` --paper-name ` | PDF stem | Paper title in report |
106+ | ` --output ` | auto | Output .md report path |
107+ | ` --no-safety ` | off | Skip safety checks |
108+ | ` --no-correctness ` | off | Skip correctness check |
109+ | ` --no-criticality ` | off | Skip criticality verification |
110+ | ` --no-bib ` | off | Skip BibTeX verification |
111+ | ` --vision ` | off | Use vision mode (requires pypdfium2) |
112+ | ` --vision-max-pages ` | ` 30 ` | Max pages in vision mode (0 = all) |
113+ | ` --format-vision-max-pages ` | ` 10 ` | Max pages for format check (0 = use ` --vision-max-pages ` ) |
114+ | ` --timeout ` | ` 7500 ` | API timeout in seconds |
115+
116+ ## All options — review_tex.py
117+
118+ | Flag | Default | Description |
119+ | ------| ---------| -------------|
120+ | ` --model ` | ` gpt-4o ` | Model name |
121+ | ` --api-key ` | env var | API key |
122+ | ` --base-url ` | — | Custom API endpoint |
123+ | ` --discipline ` | — | Academic discipline |
124+ | ` --venue ` | — | Target conference/journal |
125+ | ` --instructions ` | — | Free-form reviewer guidance |
126+ | ` --language ` | ` en ` | Output language: ` en ` or ` zh ` |
127+ | ` --email ` | — | CrossRef mailto for BibTeX check |
128+ | ` --paper-name ` | package stem | Paper title in report |
129+ | ` --output ` | auto | Output .md report path |
130+ | ` --no-safety ` | off | Skip safety checks |
131+ | ` --no-correctness ` | off | Skip correctness check |
132+ | ` --no-criticality ` | off | Skip criticality verification |
133+ | ` --no-bib ` | off | Skip BibTeX verification |
134+ | ` --bib-only ` | — | Verify a standalone .bib file only |
135+ | ` --timeout ` | ` 7500 ` | API timeout in seconds |
136+
75137## Interpreting results
76138
77139** Review score (1–6):**
0 commit comments