Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Peer Review

A local-only, evidence-bounded workflow for drafting rigorous, structured peer reviews of manuscripts, protocols, preprints, and proposals.

EducationAdvanced33,0303,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.py blocks progress until the declaration reaches READY_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

  1. 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.
  2. 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.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal (macOS: Terminal; Windows: WSL or Git Bash).
  2. Verify Python: python3 --version (3.11 or newer required).
  3. Clone the repository: git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
  4. Create the skills directory: mkdir -p ~/.claude/skills
  5. Copy just this skill: cp -r scientific-agent-skills/skills/peer-review ~/.claude/skills/
  6. Restart Claude Code and confirm peer-review appears in your skill list.
  7. For your first run, copy assets/review_intake_template.json, fill it in, then run python3 ~/.claude/skills/peer-review/scripts/validate_review_intake.py completed-intake.json and confirm the READY_FOR_LOCAL_REVIEW status.
  8. Important: read references/ethical_review_practice.md and check your target venue's confidentiality and AI-assistance policy before processing any unpublished manuscript.