Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Literature Review

Runs a systematic, multi-database literature review (PubMed, arXiv, bioRxiv, Semantic Scholar) and outputs a formatted markdown/PDF review with verified citations.

EducationIntermediate33,0303,248AI score 7/10Last updated: Aug 9, 2026

What it does

Executes the full systematic-review methodology instead of a one-off search.

  • Seven-phase workflow: scoping and eligibility criteria → multi-database search → title/abstract then full-text screening → data extraction and quality appraisal → thematic synthesis → citation verification → document generation
  • Multi-source search: parallel-cli search as the primary engine, plus PubMed, arXiv, bioRxiv, Semantic Scholar and database skills (gget, bioservices, datacommons-client); minimum three sources
  • Citation verification: verify_citations.py checks DOIs and formats references in APA, Nature, Vancouver, Chicago or IEEE
  • Professional output: fills assets/review_template.md and renders publication-grade PDFs via generate_pdf.py (pandoc/LaTeX)
  • Mandatory figures: requires at least 1–2 generated diagrams (PRISMA flow, search-strategy flowchart, conceptual framework) through the scientific-schematics skill

Who it's for

  • Graduate students and researchers writing a literature review chapter or paper section
  • Anyone running a meta-analysis, scoping review, or state-of-the-art survey
  • Teams that must log every query and search date for reproducibility
  • Researchers hunting for gaps to define their next project

Examples

  1. "Systematically review GLP-1 receptor agonists and cardiovascular outcomes since 2020; output a Vancouver-style PDF with a PRISMA diagram" → search logs, screening counts, thematic synthesis and a verified bibliography
  2. "Survey batch-correction methods for single-cell RNA-seq and highlight research gaps" → synthesis including arXiv/bioRxiv preprints plus a gap-visualisation figure
  3. "Verify the 40 references in my draft against their DOIs and reformat them in Nature style" → flags nonexistent or mismatched citations and normalises formatting

· · · 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/literature-review folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/literature-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 && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/literature-review ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the skill repository:
    git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
    
  2. Create the Claude Code skills folder and copy this skill:
    mkdir -p ~/.claude/skills
    cp -r scientific-agent-skills/skills/literature-review ~/.claude/skills/
    
  3. Install and authenticate the search CLI:
    curl -fsSL https://parallel.ai/install.sh | bash
    parallel-cli auth
    
  4. Install the Python dependency used for citation checking:
    uv pip install requests   # or pip install requests
    
  5. For PDF output, install pandoc and LaTeX:
    brew install pandoc && brew install --cask mactex        # macOS
    sudo apt-get install pandoc texlive-xetex                # Linux
    
  6. (Optional) Export OPENROUTER_API_KEY if you want the LLM-assisted steps.
  7. Check dependencies, then restart Claude Code:
    python ~/.claude/skills/literature-review/scripts/generate_pdf.py --check-deps
    
  8. Ask Claude something like "Run a systematic literature review on topic X" and the skill will trigger automatically.