Peer Review
A local-only, evidence-bounded workflow for drafting rigorous, structured peer reviews of manuscripts, protocols, preprints, and proposals.
EducationAdvanced★ 33,030⑂ 3,248AI score 8/10Last updated: Aug 9, 2026
What it does
Turns manuscript review into a structured, evidence-anchored process rather than impressionistic commentary.
- Safety boundary first: requires confirming reviewer authorization, checking the venue's confidentiality/AI/co-review policies, and recording conflicts and competence limits before any unpublished text is read. Explicitly forbids uploading confidential content to external models, plagiarism checkers, or citation services.
- Intake gate:
validate_review_intake.pyblocks progress until the declaration reachesREADY_FOR_LOCAL_REVIEW. - 10-step workflow: scope and available evidence → neutral orientation map → reporting-guideline selection (CONSORT, PRISMA, etc.) → claim-to-evidence mapping → methods and statistics → reproducibility and transparency → ethics and integrity → figures, tables, citations → actionable comments → author/editor channel separation → lint and finalize.
- Seven deterministic local CLIs: guideline selector with non-scoring coverage audit, claim–evidence matrix validator, statistics/reproducibility auditor, Pandoc citation auditor, private review scaffold generator, and a linter for tone, channel leakage, placeholders, and actionability fields. Reports emit IDs, counts, and line numbers — never manuscript text.
Who it's for
- Researchers and faculty who regularly accept review invitations
- PIs standardizing internal preprint review or training students in review craft
- Authors self-auditing a manuscript before submission or before a response letter
- Editorial board members managing review quality and confidential-channel hygiene
Example uses
- Handling an invited review: complete the intake template, run the validator to document authorization and conflicts, generate a CONSORT coverage table for an RCT, and draft major/minor comments in Location–Observation–Evidence–Why it matters–Requested action form.
- Claim–evidence alignment audit: catch abstract-level causal language that outruns the reported effect size, uncertainty, or timepoint by filling the claim-evidence CSV and running
validate_claim_evidence.py. - Pre-submission self-review: audit your own reproducibility checklist (seeds, package versions, accession IDs) and citation-key consistency to remove common desk-reject triggers.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/peer-review folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/peer-review/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git /tmp/scientific-agent-skills && mkdir -p ~/.claude/skills && cp -r /tmp/scientific-agent-skills/skills/peer-review ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal (macOS: Terminal; Windows: WSL or Git Bash).
- Verify Python:
python3 --version(3.11 or newer required). - Clone the repository:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r scientific-agent-skills/skills/peer-review ~/.claude/skills/ - Restart Claude Code and confirm
peer-reviewappears in your skill list. - For your first run, copy
assets/review_intake_template.json, fill it in, then runpython3 ~/.claude/skills/peer-review/scripts/validate_review_intake.py completed-intake.jsonand confirm theREADY_FOR_LOCAL_REVIEWstatus. - Important: read
references/ethical_review_practice.mdand check your target venue's confidentiality and AI-assistance policy before processing any unpublished manuscript.
View source on GitHub ↗License: MIT