Skill 详情

literature-review

Dedicated CS/ML literature-survey workflow with synthesis and landscape mapping.

匹配类型直接匹配已针对 文献综述 审核
来源zeguanxiao/oh-my-openidea外部来源
报告安装量1仅表示受欢迎程度

使用前先检查

自动化审核只检查相关性,不代表安全审查或推荐。使用前请阅读来源中的说明。

已保存的来源预览

SKILL.md

这段内容是审核时保存的快照。外部来源才是完整且最新的版本。

---
name: literature-review
description: Conduct a structured CS/ML literature survey — searches arXiv and Semantic Scholar, synthesizes findings, and produces an annotated bibliography with a research landscape map.
---

# Literature Review Skill

This skill orchestrates a **comprehensive literature survey** on a CS/ML topic by coordinating Surveyor and Synthesizer agents through a structured workflow.

## When to Use

Use this skill when:
- Starting research on a new topic and need an overview of the field
- Building a related work section for a paper
- Identifying research gaps before generating hypotheses
- Constructing an annotated bibliography on a specific concept

## Workflow

### Step 1: Define Scope

Ask the user (or infer from context):
- **Topic**: Specific research topic or keyword (e.g., "chain-of-thought prompting", "diffusion models for 3D generation")
- **Sub-fields**: Which arXiv categories to prioritize (e.g., cs.LG, cs.CL, cs.CV)
- **Time range**: Default to last 3 years; extend to 5+ for foundational topics
- **Depth**: Quick overview (10–15 papers) vs. deep survey (30–50 papers)

### Step 2: Initial Search (Surveyor)

Launch **@surveyor** with 3 parallel searches:
1. Primary query: exact topic keywords via AlphaXiv MCP (`search_arxiv_papers`)
2. Broad query: related concepts and parent topic via AlphaXiv MCP (`search_arxiv_papers` with broader terms)
3. Survey/review query: `"{topic} survey"` or `"{topic} review"` via AlphaXiv MCP for overview papers

Example delegation:
```
@surveyor: Search arXiv for "mechanistic interpretability transformers" using search_arxiv_papers with num_results=20.
Also search for highly-cited survey papers on the same topic.
For the 3 most relevant results, fetch their AlphaXiv overviews via the AlphaXiv MCP to extract key contributions.
```

### Step 3: Citation Expansion (Surveyor)

From the initial results, select 3–5 most relevant papers and use the AlphaXiv MCP to:
- Fetch full text of highly-cited papers to extract their key references (backward expansion to foundational work)
- Search for papers that build on core results (forward expansion)

### Step 4: Synthesis (Synthesizer)

Launch **@synthesizer** with the full paper corpus to produce:
- **Landscape map**: Main research threads and how they relate
- **Timeline**: How the field has evolved year by year
- **Recurring benchmarks**: Which datasets/tasks are standard
- **Open problems**: Explicitly mentioned limitations and future work

### Step 5: Output

Produce a structured literature review document with:

```markdown
# Literature Review: [Topic]

## Overview
[2–3 paragraph summary of the field]

## Paper Categories
### [Category 1]
- [arXiv:XXXX] **Title** — Authors (Year) [N citations]
  *Why relevant*: ...

### [Category 2]
...

## Research Landscape
[Synthesizer's landscape map]

## Open Problems
[Synthesizer's gap analysis]

## Recommended Starting Papers
[Top 5 papers for a newcomer, with reading order]
```

### Step 6: Save

Save the landscape map and paper list to the idea store using `idea_store` with action `save` (status: `draft`) for future reference when generating hypotheses.

## Quality Criteria

- Minimum 15 papers for any useful survey
- Must include at least one survey/review paper if one exists
- All paper IDs must be verified (arXiv IDs or Semantic Scholar IDs)
- Open problems must be grounded in specific papers (not assumed)
在 GitHub 阅读完整来源 (打开外部页面)
相关上下文

相关工作