literature-review

davila7/claude-code-templates · updated May 1, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/davila7/claude-code-templates --skill literature-review
0 commentsdiscussion
summary

Systematic literature reviews across multiple academic databases with verified citations and professional formatting.

  • Searches PubMed, bioRxiv, arXiv, Semantic Scholar, and specialized databases (ChEMBL, KEGG, UniProt) via integrated skills; aggregates and deduplicates results across sources
  • Structures reviews through seven phases: planning, multi-database search, screening, data extraction, thematic synthesis, citation verification, and PDF generation
  • Verifies all DOIs and citations
skill.md

Literature Review

Overview

Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats.

This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and document generation.

When to Use This Skill

Use this skill when:

  • Conducting a systematic literature review for research or publication
  • Synthesizing current knowledge on a specific topic across multiple sources
  • Performing meta-analysis or scoping reviews
  • Writing the literature review section of a research paper or thesis
  • Investigating the state of the art in a research domain
  • Identifying research gaps and future directions
  • Requiring verified citations and professional formatting

Visual Enhancement with Scientific Schematics

⚠️ MANDATORY: Every literature review MUST include at least 1-2 AI-generated figures using the scientific-schematics skill.

This is not optional. Literature reviews without visual elements are incomplete. Before finalizing any document:

  1. Generate at minimum ONE schematic or diagram (e.g., PRISMA flow diagram for systematic reviews)
  2. Prefer 2-3 figures for comprehensive reviews (search strategy flowchart, thematic synthesis diagram, conceptual framework)

How to generate figures:

  • Use the scientific-schematics skill to generate AI-powered publication-quality diagrams
  • Simply describe your desired diagram in natural language
  • Nano Banana Pro will automatically generate, review, and refine the schematic

How to generate schematics:

python scripts/generate_schematic.py "your diagram description" -o figures/output.png

The AI will automatically:

  • Create publication-quality images with proper formatting
  • Review and refine through multiple iterations
  • Ensure accessibility (colorblind-friendly, high contrast)
  • Save outputs in the figures/ directory

When to add schematics:

  • PRISMA flow diagrams for systematic reviews
  • Literature search strategy flowcharts
  • Thematic synthesis diagrams
  • Research gap visualization maps
  • Citation network diagrams
  • Conceptual framework illustrations
  • Any complex concept that benefits from visualization

For detailed guidance on creating schematics, refer to the scientific-schematics skill documentation.


Core Workflow

Literature reviews follow a structured, multi-phase workflow:

Phase 1: Planning and Scoping

  1. Define Research Question: Use PICO framework (Population, Intervention, Comparison, Outcome) for clinical/biomedical reviews

    • Example: "What is the efficacy of CRISPR-Cas9 (I) for treating sickle cell disease (P) compared to standard care (C)?"
  2. Establish Scope and Objectives:

    • Define clear, specific research questions
    • Determine review type (narrative, systematic, scoping, meta-analysis)
    • Set boundaries (time period, geographic scope, study types)
  3. Develop Search Strategy:

    • Identify 2-4 main concepts from research question
    • List synonyms, abbreviations, and related terms for each concept
    • Plan Boolean operators (AND, OR, NOT) to combine terms
    • Select minimum 3 complementary databases
  4. Set Inclusion/Exclusion Criteria:

    • Date range (e.g., last 10 years: 2015-2024)
    • Language (typically English, or specify multilingual)
    • Publication types (peer-reviewed, preprints, reviews)
    • Study designs (RCTs, observational, in vitro, etc.)
    • Document all criteria clearly

Phase 2: Systematic Literature Search

  1. Multi-Database Search:

    Select databases appropriate for the domain:

    Biomedical & Life Sciences:

    • Use gget skill: gget search pubmed "search terms" for PubMed/PMC
    • Use gget skill: gget search biorxiv "search terms" for preprints
    • Use bioservices skill for ChEMBL, KEGG, UniProt, etc.

    General Scientific Literature:

    • Search arXiv via direct API (preprints in physics, math, CS, q-bio)
    • Search Semantic Scholar via API (200M+ papers, cross-disciplinary)
    • Use Google Scholar for comprehensive coverage (manual or careful scraping)

    Specialized Databases:

    • Use gget alphafold for protein structures
    • Use gget cosmic for cancer genomics
    • Use datacommons-client for demographic/statistical data
    • Use specialized databases as appropriate for the domain
  2. Document Search Parameters:

    ## Search Strategy
    
    ### Database: PubMed
    - **Date searched**: 2024-10-25
    - **Date range**: 2015-01-01 to 2024-10-25
    - **Search string**:
    

    ("CRISPR"[Title] OR "Cas9"[Title]) AND ("sickle cell"[MeSH] OR "SCD"[Title/Abstract]) AND 2015:2024[Publication Date]

    - **Results**: 247 articles
    

    Repeat for each database searched.

  3. Export and Aggregate Results:

    • Export results in JSON format from each database
    • Combine all results into a single file
    • Use scripts/search_databases.py for post-processing:
      python search_databases.py combined_results.json \
        --deduplicate \
        --format markdown \
        --output aggregated_results.md
      

Phase 3: Screening and Selection

  1. Deduplication:

    python search_databases.py results.json --deduplicate --output unique_results.json
    
    • Removes duplicates by DOI (primary) or title (fallback)
    • Document number of duplicates removed
  2. Title Screening:

    • Review all titles against inclusion/exclusion criteria
    • Exclude obviously irrelevant studies
    • Document number excluded at this stage
  3. Abstract Screening:

    • Read abstracts of remaining studies
    • Apply inclusion/exclusion criteria rigorously
    • Document reasons for exclusion
  4. Full-Text Screening:

    • Obtain full texts of remaining studies
    • Conduct detailed review against all criteria
    • Document specific reasons for exclusion
    • Record final number of included studies
  5. Create PRISMA Flow Diagram:

    Initial search: n = X
    ├─ After deduplication: n = Y
    ├─ After title screening: n = Z
    ├─ After abstract screening: n = A
    └─ Included in review: n = B
    

Phase 4: Data Extraction and Quality Assessment

  1. Extract Key Data from each included study:

    • Study metadata (authors, year, journal, DOI)
    • Study design and methods
    • Sample size and population characteristics
    • Key findings and results
    • Limitations noted by authors
    • Funding sources and conflicts of interest
  2. Assess Study Quality:

    • For RCTs: Use Cochrane Risk of Bias tool
    • For observational studies: Use Newcastle-Ottawa Scale
    • For systematic reviews: Use AMSTAR 2
    • Rate each study: High, Moderate, Low, or Very Low quality
    • Consider excluding very low-quality studies
  3. Organize by Themes:

    • Identify 3-5 major themes across studies
    • Group studies by theme (studies may appear in multiple themes)
    • Note patterns, consensus, and controversies

Phase 5: Synthesis and Analysis

  1. Create Review Document from template:

    cp assets/review_template.md my_literature_review.md
    
  2. Write Thematic Synthesis (NOT study-by-study summaries):

    • Organize Results section by themes or research questions
    • Synthesize findings across multiple studies within each theme
    • Compare and contrast different approaches and results
    • Identify consensus areas and points of controversy
    • Highlight the strongest evidence

    Example structure:

    #### 3.3.1 Theme: CRISPR Delivery Methods
    
    Multiple delivery approaches have been investigated for therapeutic
    gene editing. Viral vectors (AAV) were used in 15 studies^1-15^ and
    showed high transduction efficiency (65-85%) but raised immunogenicity
    concerns^3,7,12^. In contrast, lipid nanoparticles demonstrated lower
    efficiency (40-60%) but improved safety profiles^16-23^.
    
  3. Critical Analysis:

    • Evaluate methodological strengths and limitations across studies
    • Assess quality and consistency of evidence
    • Identify knowledge gaps and methodological gaps
    • Note areas requiring future research
  4. Write Discussion:

    • Interpret findings in broader context
    • Discuss clinical, practical, or research implications
    • Acknowledge limitations of the review itself
    • Compare with previous reviews if applicable
    • Propose specific future research directions

Phase 6: Citation Verification

CRITICAL: All citations must be verified for accuracy before final submission.

  1. Verify All DOIs:

    python scripts/verify_citations.py my_literature_review.md
    

    This script:

    • Extracts all DOIs from the document
    • Verifies each DOI resolves correctly
    • Retrieves metadata from CrossRef
    • Generates verification report
    • Outputs properly formatted citations
  2. Review Verification Report:

    • Check for any failed DOIs
    • Verify author names, titles, and publication details match
    • Correct any errors in the original document
    • Re-run verification until all citations pass
  3. Format Citations Consistently:

    • Choose one citation style and use throughout (see references/citation_styles.md)
    • Common styles: APA, Nature, Vancouver, Chicago, IEEE
    • Use verification script output to format citations correctly
    • Ensure in-text citations match reference list format

Phase 7: Document Generation

  1. Generate PDF:

    python scripts/generate_pdf.py my_literature_review.md \
      --citation-style apa \
      --output my_review.pdf
    

    Options:

    • --citation-style: apa, nature, chicago, vancouver, ieee
    • --no-toc: Disable table of contents
    • --no-numbers: Disable section numbering
    • --check-deps: Check if pandoc/xelatex are installed
  2. Review Final Output:

    • Check PDF formatting and layout
    • Verify all sections are present
    • Ensure citations render correctly
    • Check that figures/tables appear properly
    • Verify table of contents is accurate
  3. Quality Checklist:

    • All DOIs verified with verify_citations.py
    • Citations formatted consistently
    • PRISMA flow diagram included (for systematic reviews)
    • Search methodology fully documented
    • Inclusion/exclusion criteria clearly stated
    • Results organized thematically (not study-by-study)
    • Quality assessment completed
    • Limitations acknowledged
    • References complete and accurate
    • PDF generates without errors

Database-Specific Search Guidance

PubMed / PubMed Central

Access via gget skill:

# Search PubMed
gget search pubmed "CRISPR gene editing" -l 100

# Search with filters
# Use PubMed Advanced Search Builder to construct complex queries
# Then execute via gget or direct Entrez API

Search tips:

  • Use MeSH terms: "sickle cell disease"[MeSH]
  • Field tags: [Title], [Title/Abstract], [Author]
  • Date filters: 2020:2024[Publication Date]
  • Boolean operators: AND, OR, NOT
  • See MeSH browser: https://meshb.nlm.nih.gov/search

bioRxiv / medRxiv

Access via gget skill:

gget search biorxiv "CRISPR sickle cell" -l 50

Important considerations:

  • Preprints are not peer-reviewed
  • Verify findings with caution
  • Check if preprint has been published (CrossRef)
  • Note preprint version and date

arXiv

Access via direct API or WebFetch:

# Example search categories:
# q-bio.QM (Quantitative Methods)
# q-bio.GN (Genomics)
# q-bio.MN (Molecular Networks)
# cs.LG (Machine Learning)
# stat.ML (Machine Learning Statistics)

# Search format: category AND terms
search_query = "cat:q-bio.QM AND ti:\"single cell sequencing\""

Semantic Scholar

Access via direct API (requires API key, or use free tier):

  • 200M+ papers across all fields
  • Excellent for cross-disciplinary searches
  • Provides citation graphs and paper recommendations
  • Use for finding highly influential papers

Specialized Biomedical Databases

Use appropriate skills:

  • ChEMBL: bioservices skill for chemical bioactivity
  • UniProt: gget or bioservices skill for protein information
  • KEGG: bioservices skill for pathways and genes
  • COSMIC: gget skill for cancer mutations
  • AlphaFold: gget alphafold for protein structures
  • PDB: gget or direct API for experimental structures

Citation Chaining

Expand search via citation networks:

  1. Forward citations (papers citing key papers):

    • Use Google Scholar "Cited by"
    • Use Semantic Scholar or OpenAlex APIs
    • Identifies newer research building on seminal work
  2. Backward citations (references from key papers):

    • Extract references from included papers
    • Identify highly cited foundational work
    • Find papers cited by multiple included studies

Citation Style Guide

Detailed formatting guidelines are in references/citation_styles.md. Quick reference:

APA (7th Edition)

  • In-text: (Smith et al., 2023)
  • Reference: Smith, J. D., Johnson, M. L., & Williams, K. R. (2023). Title. Journal, 22(4), 301-318. https://doi.org/10.xxx/yyy

Nature

  • In-text: Superscript numbers^1,2^
  • Reference: Smith, J. D., Johnson, M. L. & Williams, K. R. Title. Nat. Rev. Drug Discov. 22, 301-318 (2023).

Vancouver

  • In-text: Superscript numbers^1,2^
  • Reference: Smith JD, Johnson ML, Williams KR. Title. Nat Rev Drug Discov. 2023;22(4):301-18.

Always verify citations with verify_citations.py before finalizing.

Best Practices

Search Strategy

  1. Use multiple databases (minimum 3): Ensures comprehensive coverage
  2. Include preprint servers: Captures latest unpublished findings
  3. Document everything: Search strings, dates, result counts for reproducibility
  4. Test and refine: Run pilot searches, review results, adjust search terms

Screening and Selection

  1. Use clear criteria: Document inclusion/exclusion criteria before screening
  2. Screen systematically: Title → Abstract → Full text
  3. Document exclusions: Record reasons for excluding studies
  4. Consider dual screening: For systematic reviews, have two reviewers screen independently

Synthesis

  1. Organize thematically: Group by themes, NOT by individual studies
  2. Synthesize across studies: Compare, contrast, identify patterns
  3. Be critical: Evaluate quality and consistency of evidence
  4. Identify gaps: Note what's missing or understudied

Quality and Reproducibility

  1. Assess study quality: Use appropriate quality assessment tools
  2. Verify all citations: Run verify_citations.py script
  3. Document methodology: Provide enough detail for others to reproduce
  4. Follow guidelines: Use PRISMA for systematic reviews

Writing

  1. Be objective: Present evidence fairly, acknowledge limitations
  2. Be systematic: Follow structured template
  3. Be specific: Include numbers, statistics, effect sizes where available
  4. Be clear: Use clear headings, logical flow, thematic organization

Common Pitfalls to Avoid

  1. Single database search: Misses relevant papers; always search multiple databases
  2. No search documentation: Makes review irreproducible; document all searches
how to use literature-review

How to use literature-review on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add literature-review
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/davila7/claude-code-templates --skill literature-review

The skills CLI fetches literature-review from GitHub repository davila7/claude-code-templates and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/literature-review

Reload or restart Cursor to activate literature-review. Access the skill through slash commands (e.g., /literature-review) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.557 reviews
  • Shikha Mishra· Dec 24, 2024

    Solid pick for teams standardizing on skills: literature-review is focused, and the summary matches what you get after install.

  • Fatima Abbas· Dec 20, 2024

    Solid pick for teams standardizing on skills: literature-review is focused, and the summary matches what you get after install.

  • Ishan Farah· Dec 8, 2024

    literature-review fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Fatima Anderson· Dec 4, 2024

    literature-review is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Sofia Brown· Nov 27, 2024

    literature-review has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Noah Chen· Nov 23, 2024

    literature-review reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Yash Thakker· Nov 15, 2024

    We added literature-review from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Sakshi Patil· Nov 11, 2024

    I recommend literature-review for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Fatima Thomas· Nov 11, 2024

    We added literature-review from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Charlotte Brown· Nov 7, 2024

    I recommend literature-review for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

showing 1-10 of 57

1 / 6