Literature Review
What This Does
Conducts a structured review of academic papers, technical documentation, RFCs, and industry publications on a given topic. Evaluates source quality, identifies key themes and debates, and produces a synthesis document suitable for informing technical decisions or establishing prior art.
Instructions
Define the review scope. Clarify with the user:
- Topic and specific research questions
- Type of literature: academic papers, RFCs, technical blogs, whitepapers, or all
- Time range: recent only (last 2 years) or comprehensive
- Depth: survey (breadth-first) or focused (depth-first on a specific question)
Search for sources. Use available tools to find relevant literature:
- Web search for papers, articles, and technical posts
- GitHub for implementations, benchmarks, and discussions
- Official documentation and specifications
- Conference proceedings and talk transcripts
Screen and select sources. Apply inclusion/exclusion criteria:
- Relevance to the research question
- Source credibility (peer review, author expertise, publication venue)
- Recency and continued relevance
- Aim for 10-20 sources for a survey, 5-10 for a focused review
Extract key information. For each source, note:
- Core claim or contribution
- Methodology or approach
- Key findings or recommendations
- Limitations acknowledged by the authors
- How it relates to other sources in the review
Identify themes and patterns. Group findings into:
- Areas of consensus (what most sources agree on)
- Active debates (where sources disagree)
- Emerging trends (recent shifts in thinking)
- Gaps (questions that lack good coverage)
Synthesize into a review document. Write a coherent narrative that connects the sources rather than just listing them.
Output Format
# Literature Review: {Topic}
**Date:** {YYYY-MM-DD}
**Scope:** {survey/focused} | {time range} | {source types}
**Sources reviewed:** {count}
## Research Question(s)
1. {Primary question}
2. {Secondary question, if any}
## Summary of Findings
{3-5 sentence synthesis of the most important findings}
## Themes
### {Theme 1: Area of Consensus}
{Narrative synthesis with inline citations [Author, Year]}
### {Theme 2: Active Debate}
{Present competing perspectives with citations}
### {Theme 3: Emerging Trend}
{Describe the trend with evidence}
## Key Sources
| Source | Type | Year | Relevance | Key Contribution |
|--------|------|------|-----------|-----------------|
| {title} | {paper/RFC/blog/doc} | {year} | {H/M} | {one-line summary} |
## Gaps in the Literature
- {Gap 1: question that lacks good coverage}
- {Gap 2: area needing more research}
## Implications for {Project/Decision}
{How these findings should inform the user's work}
## References
1. {Author}. "{Title}." {Venue/URL}, {Year}.
2. ...
Tips
- A literature review synthesizes — it does not just list sources
- Group by theme, not by source. The narrative should flow logically.
- Always note limitations and biases in the sources
- For technology topics, prioritize recent sources — the field moves fast
- If a seminal older paper is foundational, include it regardless of age
- Distinguish between evidence (data, benchmarks) and opinion (blog posts, tweets)
- If you cannot find enough quality sources, say so — a gap finding is still a finding
1---2name: literature-review3description: Academic and technical literature review with source evaluation, structured synthesis, and citation management.4---56# Literature Review78## What This Does910Conducts a structured review of academic papers, technical documentation, RFCs, and industry publications on a given topic. Evaluates source quality, identifies key themes and debates, and produces a synthesis document suitable for informing technical decisions or establishing prior art.1112## Instructions13141. **Define the review scope.** Clarify with the user:15 - Topic and specific research questions16 - Type of literature: academic papers, RFCs, technical blogs, whitepapers, or all17 - Time range: recent only (last 2 years) or comprehensive18 - Depth: survey (breadth-first) or focused (depth-first on a specific question)19202. **Search for sources.** Use available tools to find relevant literature:21 - Web search for papers, articles, and technical posts22 - GitHub for implementations, benchmarks, and discussions23 - Official documentation and specifications24 - Conference proceedings and talk transcripts25263. **Screen and select sources.** Apply inclusion/exclusion criteria:27 - Relevance to the research question28 - Source credibility (peer review, author expertise, publication venue)29 - Recency and continued relevance30 - Aim for 10-20 sources for a survey, 5-10 for a focused review31324. **Extract key information.** For each source, note:33 - Core claim or contribution34 - Methodology or approach35 - Key findings or recommendations36 - Limitations acknowledged by the authors37 - How it relates to other sources in the review38395. **Identify themes and patterns.** Group findings into:40 - Areas of consensus (what most sources agree on)41 - Active debates (where sources disagree)42 - Emerging trends (recent shifts in thinking)43 - Gaps (questions that lack good coverage)44456. **Synthesize into a review document.** Write a coherent narrative that connects the sources rather than just listing them.4647## Output Format4849```markdown50# Literature Review: {Topic}51**Date:** {YYYY-MM-DD}52**Scope:** {survey/focused} | {time range} | {source types}53**Sources reviewed:** {count}5455## Research Question(s)561. {Primary question}572. {Secondary question, if any}5859## Summary of Findings60{3-5 sentence synthesis of the most important findings}6162## Themes6364### {Theme 1: Area of Consensus}65{Narrative synthesis with inline citations [Author, Year]}6667### {Theme 2: Active Debate}68{Present competing perspectives with citations}6970### {Theme 3: Emerging Trend}71{Describe the trend with evidence}7273## Key Sources7475| Source | Type | Year | Relevance | Key Contribution |76|--------|------|------|-----------|-----------------|77| {title} | {paper/RFC/blog/doc} | {year} | {H/M} | {one-line summary} |7879## Gaps in the Literature80- {Gap 1: question that lacks good coverage}81- {Gap 2: area needing more research}8283## Implications for {Project/Decision}84{How these findings should inform the user's work}8586## References871. {Author}. "{Title}." {Venue/URL}, {Year}.882. ...89```9091## Tips9293- A literature review synthesizes — it does not just list sources94- Group by theme, not by source. The narrative should flow logically.95- Always note limitations and biases in the sources96- For technology topics, prioritize recent sources — the field moves fast97- If a seminal older paper is foundational, include it regardless of age98- Distinguish between evidence (data, benchmarks) and opinion (blog posts, tweets)99- If you cannot find enough quality sources, say so — a gap finding is still a finding