Literature Review
Overview
Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature sources, synthesize findings thematically, verify citations for accuracy, and generate professional output documents in markdown and PDF formats.
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
Core Workflow
Literature reviews follow a structured, multi-phase workflow:
Phase 1: Planning and Scoping
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)?"
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)
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
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
Multi-Database Search:
Select databases appropriate for the domain:
Biomedical & Life Sciences:
- Use PubMed/PMC for biomedical literature retrieval
- Include bioRxiv/medRxiv preprints when the review scope requires recent non-peer-reviewed evidence
- Use specialized biomedical databases for pathway, structure, variant, and target evidence when relevant
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:
- Include protein structure evidence when needed
- Include cancer genomics evidence when needed
- Include demographic, economic, or health statistics when needed
- Use specialized databases as appropriate for the domain
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.
Export and Aggregate Results:
Phase 3: Screening and Selection
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
Title Screening:
- Review all titles against inclusion/exclusion criteria
- Exclude obviously irrelevant studies
- Document number excluded at this stage
Abstract Screening:
- Read abstracts of remaining studies
- Apply inclusion/exclusion criteria rigorously
- Document reasons for exclusion
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
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
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
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
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
Create Review Document from template:
cp assets/review_template.md my_literature_review.md
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^.
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
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.
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
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
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
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
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
Quality Checklist:
Database-Specific Search Guidance
PubMed / PubMed Central
Access via PubMed, PMC, or Entrez-compatible APIs:
# Search PubMed
pubmed search "CRISPR gene editing" --limit 100
# Search with filters
# Use PubMed Advanced Search Builder to construct complex queries
# Then execute via PubMed/Entrez-compatible access
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
Use preprint servers as literature sources inside the review workflow:
search biorxiv "CRISPR sickle cell" --limit 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
Keep literature-review focused on paper search, screening, synthesis, and evidence extraction.
Biomedical database lookup is a separate problem surface; use this section only to record which
external evidence source a paper cites or which database a review protocol should query.
- ChEMBL: chemical bioactivity evidence cited by drug-discovery papers
- UniProt: protein annotations, accessions, and protein evidence cited by papers
- KEGG: pathway and gene annotations cited by biology papers
- COSMIC: cancer mutation evidence cited by oncology papers
- AlphaFold: predicted protein structures cited by structural-biology papers
- PDB: experimental structures cited by structural-biology papers
Citation Chaining
Expand search via citation networks:
Forward citations (papers citing key papers):
- Use Google Scholar "Cited by"
- Use Semantic Scholar or OpenAlex APIs
- Identifies newer research building on seminal work
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.
Prioritizing High-Impact Papers (CRITICAL)
Always prioritize influential, highly-cited papers from reputable authors and top venues. Quality matters more than quantity in literature reviews.
Citation Count Thresholds
Use citation counts to identify the most impactful papers:
| Paper Age |
Citation Threshold |
Classification |
| 0-3 years |
20+ citations |
Noteworthy |
| 0-3 years |
100+ citations |
Highly Influential |
| 3-7 years |
100+ citations |
Significant |
| 3-7 years |
500+ citations |
Landmark Paper |
| 7+ years |
500+ citations |
Seminal Work |
| 7+ years |
1000+ citations |
Foundational |
Journal and Venue Tiers
Prioritize papers from higher-tier venues:
- Tier 1 (Always Prefer): Nature, Science, Cell, NEJM, Lancet, JAMA, PNAS, Nature Medicine, Nature Biotechnology
- Tier 2 (Strong Preference): High-impact specialized journals (IF>10), top conferences (NeurIPS, ICML for ML/AI)
- Tier 3 (Include When Relevant): Respected specialized journals (IF 5-10)
- Tier 4 (Use Sparingly): Lower-impact peer-reviewed venues
Author Reputation Assessment
Prefer papers from:
- Senior researchers with high h-index (>40 in established fields)
- Leading research groups at recognized institutions (Harvard, Stanford, MIT, Oxford, etc.)
- Authors with multiple Tier-1 publications in the relevant field
- Researchers with recognized expertise (awards, editorial positions, society fellows)
Identifying Seminal Papers
For any topic, identify foundational work by:
- High citation count (typically 500+ for papers 5+ years old)
- Frequently cited by other included studies (appears in many reference lists)
- Published in Tier-1 venues (Nature, Science, Cell family)
- Written by field pioneers (often cited as establishing concepts)
Best Practices
Search Strategy
- Use multiple databases (minimum 3): Ensures comprehensive coverage
- Include preprint servers: Captures latest unpublished findings
- Document everything: Search strings, dates, result counts for reproducibility
- Test and refine: Run pilot searches, review results, adjust search terms
- Sort by citations: When available, sort search results by citation count to surface influential work first
Screening and Selection
- Use multiple databases (minimum 3): Ensures comprehensive coverage
- Include preprint servers: Captures latest unpublished findings
- Document everything: Search strings, dates, result counts for reproducibility
- Test and refine: Run pilot searches, review results, adjust search terms
Screening and Selection
- Use clear criteria: Document inclusion/exclusion criteria before screening
- Screen systematically: Title → Abstract → Full text
- Document exclusions: Record reasons for excluding studies
- Consider dual screening: For systematic reviews, have two reviewers screen independently
Synthesis
- Organize thematically: Group by themes, NOT by individual studies
- Synthesize across studies: Compare, contrast, identify patterns
- Be critical: Evaluate quality and consistency of evidence
- Identify gaps: Note what's missing or understudied
Quality and Reproducibility
- Assess study quality: Use appropriate quality assessment tools
- Verify all citations: Run verify_citations.py script
- Document methodology: Provide enough detail for others to reproduce
- Follow guidelines: Use PRISMA for systematic reviews
Writing
- Be objective: Present evidence fairly, acknowledge limitations
- Be systematic: Follow structured template
- Be specific: Include numbers, statistics, effect sizes where available
- Be clear: Use clear headings, logical flow, thematic organization
Common Pitfalls to Avoid
- Single database search: Misses relevant papers; always search multiple databases
- No search documentation: Makes review irreproducible; document all searches
- Study-by-study summary: Lacks synthesis; organize thematically instead
- Unverified citations: Leads to errors; always run verify_citations.py
- Too broad search: Yields thousands of irrelevant results; refine with specific terms
- Too narrow search: Misses relevant papers; include synonyms and related terms
- Ignoring preprints: Misses latest findings; include bioRxiv, medRxiv, arXiv
- No quality assessment: Treats all evidence equally; assess and report quality
- Publication bias: Only positive results published; note potential bias
- Outdated search: Field evolves rapidly; clearly state search date
Example Workflow
Complete workflow for a biomedical literature review:
# 1. Create review document from template
cp assets/review_template.md crispr_sickle_cell_review.md
# 2. Search multiple literature sources
# - Use PubMed for curated biomedical literature
# - Include bioRxiv/medRxiv preprints when recent non-peer-reviewed evidence matters
# - Use direct API access for arXiv, Semantic Scholar
# - Export results in JSON format
# 3. Aggregate and process results
python scripts/search_databases.py combined_results.json \
--deduplicate \
--rank citations \
--year-start 2015 \
--year-end 2024 \
--format markdown \
--output search_results.md \
--summary
# 4. Screen results and extract data
# - Manually screen titles, abstracts, full texts
# - Extract key data into the review document
# - Organize by themes
# 5. Write the review following template structure
# - Introduction with clear objectives
# - Detailed methodology section
# - Results organized thematically
# - Critical discussion
# - Clear conclusions
# 6. Verify all citations
python scripts/verify_citations.py crispr_sickle_cell_review.md
# Review the citation report
cat crispr_sickle_cell_review_citation_report.json
# Fix any failed citations and re-verify
python scripts/verify_citations.py crispr_sickle_cell_review.md
# 7. Generate professional PDF
python scripts/generate_pdf.py crispr_sickle_cell_review.md \
--citation-style nature \
--output crispr_sickle_cell_review.pdf
# 8. Review final PDF and markdown outputs
Resources
Bundled Resources
Scripts:
scripts/verify_citations.py: Verify DOIs and generate formatted citations
scripts/generate_pdf.py: Convert markdown to professional PDF
scripts/search_databases.py: Process, deduplicate, and format search results
References:
references/citation_styles.md: Detailed citation formatting guide (APA, Nature, Vancouver, Chicago, IEEE)
references/database_strategies.md: Comprehensive database search strategies
Assets:
assets/review_template.md: Complete literature review template with all sections
External Resources
Guidelines:
Tools:
Citation Styles:
Dependencies
Required Python Packages
pip install requests # For citation verification
Required System Tools
# For PDF generation
brew install pandoc # macOS
apt-get install pandoc # Linux
# For LaTeX (PDF generation)
brew install --cask mactex # macOS
apt-get install texlive-xetex # Linux
Check dependencies:
python scripts/generate_pdf.py --check-deps
Summary
This literature-review skill provides:
- Systematic methodology following academic best practices
- Multi-source literature coverage across domain-appropriate databases
- Citation verification ensuring accuracy and credibility
- Professional output in markdown and PDF formats
- Comprehensive guidance covering the entire review process
- Quality assurance with verification and validation tools
- Reproducibility through detailed documentation requirements
Conduct thorough, rigorous literature reviews that meet academic standards and provide comprehensive synthesis of current knowledge in any domain.
1---2name: literature-review-23description: Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.).4license: MIT license5---67# Literature Review89## Overview1011Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature sources, synthesize findings thematically, verify citations for accuracy, and generate professional output documents in markdown and PDF formats.1213## When to Use This Skill1415Use this skill when:16- Conducting a systematic literature review for research or publication17- Synthesizing current knowledge on a specific topic across multiple sources18- Performing meta-analysis or scoping reviews19- Writing the literature review section of a research paper or thesis20- Investigating the state of the art in a research domain21- Identifying research gaps and future directions22- Requiring verified citations and professional formatting2324## Core Workflow2526Literature reviews follow a structured, multi-phase workflow:2728### Phase 1: Planning and Scoping29301. **Define Research Question**: Use PICO framework (Population, Intervention, Comparison, Outcome) for clinical/biomedical reviews31 - Example: "What is the efficacy of CRISPR-Cas9 (I) for treating sickle cell disease (P) compared to standard care (C)?"32332. **Establish Scope and Objectives**:34 - Define clear, specific research questions35 - Determine review type (narrative, systematic, scoping, meta-analysis)36 - Set boundaries (time period, geographic scope, study types)37383. **Develop Search Strategy**:39 - Identify 2-4 main concepts from research question40 - List synonyms, abbreviations, and related terms for each concept41 - Plan Boolean operators (AND, OR, NOT) to combine terms42 - Select minimum 3 complementary databases43444. **Set Inclusion/Exclusion Criteria**:45 - Date range (e.g., last 10 years: 2015-2024)46 - Language (typically English, or specify multilingual)47 - Publication types (peer-reviewed, preprints, reviews)48 - Study designs (RCTs, observational, in vitro, etc.)49 - Document all criteria clearly5051### Phase 2: Systematic Literature Search52531. **Multi-Database Search**:5455 Select databases appropriate for the domain:5657 **Biomedical & Life Sciences:**58 - Use PubMed/PMC for biomedical literature retrieval59 - Include bioRxiv/medRxiv preprints when the review scope requires recent non-peer-reviewed evidence60 - Use specialized biomedical databases for pathway, structure, variant, and target evidence when relevant6162 **General Scientific Literature:**63 - Search arXiv via direct API (preprints in physics, math, CS, q-bio)64 - Search Semantic Scholar via API (200M+ papers, cross-disciplinary)65 - Use Google Scholar for comprehensive coverage (manual or careful scraping)6667 **Specialized Databases:**68 - Include protein structure evidence when needed69 - Include cancer genomics evidence when needed70 - Include demographic, economic, or health statistics when needed71 - Use specialized databases as appropriate for the domain72732. **Document Search Parameters**:74 ```markdown75 ## Search Strategy7677 ### Database: PubMed78 - **Date searched**: 2024-10-2579 - **Date range**: 2015-01-01 to 2024-10-2580 - **Search string**:81 ```82 ("CRISPR"[Title] OR "Cas9"[Title])83 AND ("sickle cell"[MeSH] OR "SCD"[Title/Abstract])84 AND 2015:2024[Publication Date]85 ```86 - **Results**: 247 articles87 ```8889 Repeat for each database searched.90913. **Export and Aggregate Results**:92 - Export results in JSON format from each database93 - Combine all results into a single file94 - Use `scripts/search_databases.py` for post-processing:95 ```bash96 python search_databases.py combined_results.json \97 --deduplicate \98 --format markdown \99 --output aggregated_results.md100 ```101102### Phase 3: Screening and Selection1031041. **Deduplication**:105 ```bash106 python search_databases.py results.json --deduplicate --output unique_results.json107 ```108 - Removes duplicates by DOI (primary) or title (fallback)109 - Document number of duplicates removed1101112. **Title Screening**:112 - Review all titles against inclusion/exclusion criteria113 - Exclude obviously irrelevant studies114 - Document number excluded at this stage1151163. **Abstract Screening**:117 - Read abstracts of remaining studies118 - Apply inclusion/exclusion criteria rigorously119 - Document reasons for exclusion1201214. **Full-Text Screening**:122 - Obtain full texts of remaining studies123 - Conduct detailed review against all criteria124 - Document specific reasons for exclusion125 - Record final number of included studies1261275. **Create PRISMA Flow Diagram**:128 ```129 Initial search: n = X130 ├─ After deduplication: n = Y131 ├─ After title screening: n = Z132 ├─ After abstract screening: n = A133 └─ Included in review: n = B134 ```135136### Phase 4: Data Extraction and Quality Assessment1371381. **Extract Key Data** from each included study:139 - Study metadata (authors, year, journal, DOI)140 - Study design and methods141 - Sample size and population characteristics142 - Key findings and results143 - Limitations noted by authors144 - Funding sources and conflicts of interest1451462. **Assess Study Quality**:147 - **For RCTs**: Use Cochrane Risk of Bias tool148 - **For observational studies**: Use Newcastle-Ottawa Scale149 - **For systematic reviews**: Use AMSTAR 2150 - Rate each study: High, Moderate, Low, or Very Low quality151 - Consider excluding very low-quality studies1521533. **Organize by Themes**:154 - Identify 3-5 major themes across studies155 - Group studies by theme (studies may appear in multiple themes)156 - Note patterns, consensus, and controversies157158### Phase 5: Synthesis and Analysis1591601. **Create Review Document** from template:161 ```bash162 cp assets/review_template.md my_literature_review.md163 ```1641652. **Write Thematic Synthesis** (NOT study-by-study summaries):166 - Organize Results section by themes or research questions167 - Synthesize findings across multiple studies within each theme168 - Compare and contrast different approaches and results169 - Identify consensus areas and points of controversy170 - Highlight the strongest evidence171172 Example structure:173 ```markdown174 #### 3.3.1 Theme: CRISPR Delivery Methods175176 Multiple delivery approaches have been investigated for therapeutic177 gene editing. Viral vectors (AAV) were used in 15 studies^1-15^ and178 showed high transduction efficiency (65-85%) but raised immunogenicity179 concerns^3,7,12^. In contrast, lipid nanoparticles demonstrated lower180 efficiency (40-60%) but improved safety profiles^16-23^.181 ```1821833. **Critical Analysis**:184 - Evaluate methodological strengths and limitations across studies185 - Assess quality and consistency of evidence186 - Identify knowledge gaps and methodological gaps187 - Note areas requiring future research1881894. **Write Discussion**:190 - Interpret findings in broader context191 - Discuss clinical, practical, or research implications192 - Acknowledge limitations of the review itself193 - Compare with previous reviews if applicable194 - Propose specific future research directions195196### Phase 6: Citation Verification197198**CRITICAL**: All citations must be verified for accuracy before final submission.1992001. **Verify All DOIs**:201 ```bash202 python scripts/verify_citations.py my_literature_review.md203 ```204205 This script:206 - Extracts all DOIs from the document207 - Verifies each DOI resolves correctly208 - Retrieves metadata from CrossRef209 - Generates verification report210 - Outputs properly formatted citations2112122. **Review Verification Report**:213 - Check for any failed DOIs214 - Verify author names, titles, and publication details match215 - Correct any errors in the original document216 - Re-run verification until all citations pass2172183. **Format Citations Consistently**:219 - Choose one citation style and use throughout (see `references/citation_styles.md`)220 - Common styles: APA, Nature, Vancouver, Chicago, IEEE221 - Use verification script output to format citations correctly222 - Ensure in-text citations match reference list format223224### Phase 7: Document Generation2252261. **Generate PDF**:227 ```bash228 python scripts/generate_pdf.py my_literature_review.md \229 --citation-style apa \230 --output my_review.pdf231 ```232233 Options:234 - `--citation-style`: apa, nature, chicago, vancouver, ieee235 - `--no-toc`: Disable table of contents236 - `--no-numbers`: Disable section numbering237 - `--check-deps`: Check if pandoc/xelatex are installed2382392. **Review Final Output**:240 - Check PDF formatting and layout241 - Verify all sections are present242 - Ensure citations render correctly243 - Check that figures/tables appear properly244 - Verify table of contents is accurate2452463. **Quality Checklist**:247 - [ ] All DOIs verified with verify_citations.py248 - [ ] Citations formatted consistently249 - [ ] PRISMA flow diagram included (for systematic reviews)250 - [ ] Search methodology fully documented251 - [ ] Inclusion/exclusion criteria clearly stated252 - [ ] Results organized thematically (not study-by-study)253 - [ ] Quality assessment completed254 - [ ] Limitations acknowledged255 - [ ] References complete and accurate256 - [ ] PDF generates without errors257258## Database-Specific Search Guidance259260### PubMed / PubMed Central261262Access via PubMed, PMC, or Entrez-compatible APIs:263```bash264# Search PubMed265pubmed search "CRISPR gene editing" --limit 100266267# Search with filters268# Use PubMed Advanced Search Builder to construct complex queries269# Then execute via PubMed/Entrez-compatible access270```271272**Search tips**:273- Use MeSH terms: `"sickle cell disease"[MeSH]`274- Field tags: `[Title]`, `[Title/Abstract]`, `[Author]`275- Date filters: `2020:2024[Publication Date]`276- Boolean operators: AND, OR, NOT277- See MeSH browser: https://meshb.nlm.nih.gov/search278279### bioRxiv / medRxiv280281Use preprint servers as literature sources inside the review workflow:282```bash283search biorxiv "CRISPR sickle cell" --limit 50284```285286**Important considerations**:287- Preprints are not peer-reviewed288- Verify findings with caution289- Check if preprint has been published (CrossRef)290- Note preprint version and date291292### arXiv293294Access via direct API or WebFetch:295```python296# Example search categories:297# q-bio.QM (Quantitative Methods)298# q-bio.GN (Genomics)299# q-bio.MN (Molecular Networks)300# cs.LG (Machine Learning)301# stat.ML (Machine Learning Statistics)302303# Search format: category AND terms304search_query = "cat:q-bio.QM AND ti:\"single cell sequencing\""305```306307### Semantic Scholar308309Access via direct API (requires API key, or use free tier):310- 200M+ papers across all fields311- Excellent for cross-disciplinary searches312- Provides citation graphs and paper recommendations313- Use for finding highly influential papers314315### Specialized Biomedical Databases316317Keep literature-review focused on paper search, screening, synthesis, and evidence extraction.318Biomedical database lookup is a separate problem surface; use this section only to record which319external evidence source a paper cites or which database a review protocol should query.320321- **ChEMBL**: chemical bioactivity evidence cited by drug-discovery papers322- **UniProt**: protein annotations, accessions, and protein evidence cited by papers323- **KEGG**: pathway and gene annotations cited by biology papers324- **COSMIC**: cancer mutation evidence cited by oncology papers325- **AlphaFold**: predicted protein structures cited by structural-biology papers326- **PDB**: experimental structures cited by structural-biology papers327328### Citation Chaining329330Expand search via citation networks:3313321. **Forward citations** (papers citing key papers):333 - Use Google Scholar "Cited by"334 - Use Semantic Scholar or OpenAlex APIs335 - Identifies newer research building on seminal work3363372. **Backward citations** (references from key papers):338 - Extract references from included papers339 - Identify highly cited foundational work340 - Find papers cited by multiple included studies341342## Citation Style Guide343344Detailed formatting guidelines are in `references/citation_styles.md`. Quick reference:345346### APA (7th Edition)347- In-text: (Smith et al., 2023)348- Reference: Smith, J. D., Johnson, M. L., & Williams, K. R. (2023). Title. *Journal*, *22*(4), 301-318. https://doi.org/10.xxx/yyy349350### Nature351- In-text: Superscript numbers^1,2^352- Reference: Smith, J. D., Johnson, M. L. & Williams, K. R. Title. *Nat. Rev. Drug Discov.* **22**, 301-318 (2023).353354### Vancouver355- In-text: Superscript numbers^1,2^356- Reference: Smith JD, Johnson ML, Williams KR. Title. Nat Rev Drug Discov. 2023;22(4):301-18.357358**Always verify citations** with verify_citations.py before finalizing.359360### Prioritizing High-Impact Papers (CRITICAL)361362**Always prioritize influential, highly-cited papers from reputable authors and top venues.** Quality matters more than quantity in literature reviews.363364#### Citation Count Thresholds365366Use citation counts to identify the most impactful papers:367368| Paper Age | Citation Threshold | Classification |369|-----------|-------------------|----------------|370| 0-3 years | 20+ citations | Noteworthy |371| 0-3 years | 100+ citations | Highly Influential |372| 3-7 years | 100+ citations | Significant |373| 3-7 years | 500+ citations | Landmark Paper |374| 7+ years | 500+ citations | Seminal Work |375| 7+ years | 1000+ citations | Foundational |376377#### Journal and Venue Tiers378379Prioritize papers from higher-tier venues:380381- **Tier 1 (Always Prefer):** Nature, Science, Cell, NEJM, Lancet, JAMA, PNAS, Nature Medicine, Nature Biotechnology382- **Tier 2 (Strong Preference):** High-impact specialized journals (IF>10), top conferences (NeurIPS, ICML for ML/AI)383- **Tier 3 (Include When Relevant):** Respected specialized journals (IF 5-10)384- **Tier 4 (Use Sparingly):** Lower-impact peer-reviewed venues385386#### Author Reputation Assessment387388Prefer papers from:389- **Senior researchers** with high h-index (>40 in established fields)390- **Leading research groups** at recognized institutions (Harvard, Stanford, MIT, Oxford, etc.)391- **Authors with multiple Tier-1 publications** in the relevant field392- **Researchers with recognized expertise** (awards, editorial positions, society fellows)393394#### Identifying Seminal Papers395396For any topic, identify foundational work by:3971. **High citation count** (typically 500+ for papers 5+ years old)3982. **Frequently cited by other included studies** (appears in many reference lists)3993. **Published in Tier-1 venues** (Nature, Science, Cell family)4004. **Written by field pioneers** (often cited as establishing concepts)401402## Best Practices403404### Search Strategy4051. **Use multiple databases** (minimum 3): Ensures comprehensive coverage4062. **Include preprint servers**: Captures latest unpublished findings4073. **Document everything**: Search strings, dates, result counts for reproducibility4084. **Test and refine**: Run pilot searches, review results, adjust search terms4095. **Sort by citations**: When available, sort search results by citation count to surface influential work first410411### Screening and Selection4121. **Use multiple databases** (minimum 3): Ensures comprehensive coverage4132. **Include preprint servers**: Captures latest unpublished findings4143. **Document everything**: Search strings, dates, result counts for reproducibility4154. **Test and refine**: Run pilot searches, review results, adjust search terms416417### Screening and Selection4181. **Use clear criteria**: Document inclusion/exclusion criteria before screening4192. **Screen systematically**: Title → Abstract → Full text4203. **Document exclusions**: Record reasons for excluding studies4214. **Consider dual screening**: For systematic reviews, have two reviewers screen independently422423### Synthesis4241. **Organize thematically**: Group by themes, NOT by individual studies4252. **Synthesize across studies**: Compare, contrast, identify patterns4263. **Be critical**: Evaluate quality and consistency of evidence4274. **Identify gaps**: Note what's missing or understudied428429### Quality and Reproducibility4301. **Assess study quality**: Use appropriate quality assessment tools4312. **Verify all citations**: Run verify_citations.py script4323. **Document methodology**: Provide enough detail for others to reproduce4334. **Follow guidelines**: Use PRISMA for systematic reviews434435### Writing4361. **Be objective**: Present evidence fairly, acknowledge limitations4372. **Be systematic**: Follow structured template4383. **Be specific**: Include numbers, statistics, effect sizes where available4394. **Be clear**: Use clear headings, logical flow, thematic organization440441## Common Pitfalls to Avoid4424431. **Single database search**: Misses relevant papers; always search multiple databases4442. **No search documentation**: Makes review irreproducible; document all searches4453. **Study-by-study summary**: Lacks synthesis; organize thematically instead4464. **Unverified citations**: Leads to errors; always run verify_citations.py4475. **Too broad search**: Yields thousands of irrelevant results; refine with specific terms4486. **Too narrow search**: Misses relevant papers; include synonyms and related terms4497. **Ignoring preprints**: Misses latest findings; include bioRxiv, medRxiv, arXiv4508. **No quality assessment**: Treats all evidence equally; assess and report quality4519. **Publication bias**: Only positive results published; note potential bias45210. **Outdated search**: Field evolves rapidly; clearly state search date453454## Example Workflow455456Complete workflow for a biomedical literature review:457458```bash459# 1. Create review document from template460cp assets/review_template.md crispr_sickle_cell_review.md461462# 2. Search multiple literature sources463# - Use PubMed for curated biomedical literature464# - Include bioRxiv/medRxiv preprints when recent non-peer-reviewed evidence matters465# - Use direct API access for arXiv, Semantic Scholar466# - Export results in JSON format467468# 3. Aggregate and process results469python scripts/search_databases.py combined_results.json \470 --deduplicate \471 --rank citations \472 --year-start 2015 \473 --year-end 2024 \474 --format markdown \475 --output search_results.md \476 --summary477478# 4. Screen results and extract data479# - Manually screen titles, abstracts, full texts480# - Extract key data into the review document481# - Organize by themes482483# 5. Write the review following template structure484# - Introduction with clear objectives485# - Detailed methodology section486# - Results organized thematically487# - Critical discussion488# - Clear conclusions489490# 6. Verify all citations491python scripts/verify_citations.py crispr_sickle_cell_review.md492493# Review the citation report494cat crispr_sickle_cell_review_citation_report.json495496# Fix any failed citations and re-verify497python scripts/verify_citations.py crispr_sickle_cell_review.md498499# 7. Generate professional PDF500python scripts/generate_pdf.py crispr_sickle_cell_review.md \501 --citation-style nature \502 --output crispr_sickle_cell_review.pdf503504# 8. Review final PDF and markdown outputs505```506507## Resources508509### Bundled Resources510511**Scripts:**512- `scripts/verify_citations.py`: Verify DOIs and generate formatted citations513- `scripts/generate_pdf.py`: Convert markdown to professional PDF514- `scripts/search_databases.py`: Process, deduplicate, and format search results515516**References:**517- `references/citation_styles.md`: Detailed citation formatting guide (APA, Nature, Vancouver, Chicago, IEEE)518- `references/database_strategies.md`: Comprehensive database search strategies519520**Assets:**521- `assets/review_template.md`: Complete literature review template with all sections522523### External Resources524525**Guidelines:**526- PRISMA (Systematic Reviews): http://www.prisma-statement.org/527- Cochrane Handbook: https://training.cochrane.org/handbook528- AMSTAR 2 (Review Quality): https://amstar.ca/529530**Tools:**531- MeSH Browser: https://meshb.nlm.nih.gov/search532- PubMed Advanced Search: https://pubmed.ncbi.nlm.nih.gov/advanced/533- Boolean Search Guide: https://www.ncbi.nlm.nih.gov/books/NBK3827/534535**Citation Styles:**536- APA Style: https://apastyle.apa.org/537- Nature Portfolio: https://www.nature.com/nature-portfolio/editorial-policies/reporting-standards538- NLM/Vancouver: https://www.nlm.nih.gov/bsd/uniform_requirements.html539540## Dependencies541542### Required Python Packages543```bash544pip install requests # For citation verification545```546547### Required System Tools548```bash549# For PDF generation550brew install pandoc # macOS551apt-get install pandoc # Linux552553# For LaTeX (PDF generation)554brew install --cask mactex # macOS555apt-get install texlive-xetex # Linux556```557558Check dependencies:559```bash560python scripts/generate_pdf.py --check-deps561```562563## Summary564565This literature-review skill provides:5665671. **Systematic methodology** following academic best practices5682. **Multi-source literature coverage** across domain-appropriate databases5693. **Citation verification** ensuring accuracy and credibility5704. **Professional output** in markdown and PDF formats5715. **Comprehensive guidance** covering the entire review process5726. **Quality assurance** with verification and validation tools5737. **Reproducibility** through detailed documentation requirements574575Conduct thorough, rigorous literature reviews that meet academic standards and provide comprehensive synthesis of current knowledge in any domain.