Pre-submission paper review with a guilty-until-proven-safe filter
A Claude Code skill that runs research papers through a review-verdict-revise-verify loop, refusing to apply any edit until the AI proves it is safe.

What it does
PaperJury is a Claude Code skill that acts as a pre-submission mock reviewer for LaTeX and Markdown research drafts. It runs a closed loop of review, verdict, revision, and verification, sorting AI-generated feedback into safe fixes, author-required issues, or invalid complaints before any change reaches the manuscript. If a local LaTeX toolchain exists, it compiles the draft to flag formatting errors and undefined references; if not, it says so rather than pretending to have checked.
The interesting bit
Most AI writing tools rush to edit; PaperJury inserts a deliberation stage where the agent must argue with itself. It separates “this caption is unclear” from “this claim needs a new ablation study,” and it will not auto-apply the latter even in unattended mode. The repository includes a dogfood sample with before-and-after PDFs and human-checked run reports, which is more evidence than most tools in this space bother to provide.
Key highlights
- Three modes:
direct-editfor surgical text tweaks,reviewfor adversarial mock-review, andautofor multi-round unattended polishing with author override on risky items. - Feedback triage: every reviewer-style comment is tagged as safe fix, author-required, or invalid, so the tool does not hallucinate experiments into existence.
- LaTeX-aware: it can compile and check for overfull boxes, missing references, and desk-reject risks if the toolchain is present; otherwise it admits the gap.
- Ships with a real dogfood sample—original draft, revised draft, and a human-audited execution report—so you can inspect actual output before trusting it with your own paper.
- Also available as a Codex plugin, and the authors published an arXiv paper on the engine design.
Caveats
- Requires Node.js for deterministic checks, and a LaTeX toolchain for compilation-level validation; without them, some checks simply do not run.
- Auto mode must be explicitly enabled with
/goalormode: auto; a normal prompt runs a single round and stops, which is easy to miss if you expect continuous iteration. - The README notes it handles
.docxby converting to Markdown, but the fidelity of that conversion is unclear from the description.
Verdict
Academics writing in LaTeX who want a structured sanity check before submission will find this more disciplined than a raw chatbot. If you write in Word or expect the AI to invent missing experiments for you, this is explicitly not your tool.
Frequently asked
- What is u7079256/paperjury?
- A Claude Code skill that runs research papers through a review-verdict-revise-verify loop, refusing to apply any edit until the AI proves it is safe.
- Is paperjury open source?
- Yes — u7079256/paperjury is open source, released under the MIT license.
- What language is paperjury written in?
- u7079256/paperjury is primarily written in JavaScript.
- How popular is paperjury?
- u7079256/paperjury has 517 stars on GitHub.
- Where can I find paperjury?
- u7079256/paperjury is on GitHub at https://github.com/u7079256/paperjury.