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 で全文を読む (外部ページ)
関連情報

関連する仕事