deep-research
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDeep Research Skill
深度研究Skill
Trigger
触发条件
Activate this skill when the user wants to:
- "Research a topic", "literature review", "find papers about", "survey papers on"
- "Deep dive into [topic]", "what's the state of the art in [topic]"
- Uses slash command
/research <topic>
当用户有以下需求时激活该Skill:
- "研究某个主题"、"文献综述"、"查找关于...的论文"、"关于...的调研论文"
- "深入研究[主题]"、"[主题]的当前研究进展如何"
- 使用 斜杠命令
/research <topic>
Overview
概述
This skill conducts systematic academic literature reviews in 6 phases, producing structured notes, a curated paper database, and a synthesized final report. Output is organized by phase for clarity.
Installation: — scripts, references, and this skill definition.
Output: relative to the current working directory.
~/.claude/skills/deep-research/.//Users/lingzhi/Code/deep-research-output/{slug}/该Skill通过6个阶段开展系统化学术文献综述,生成结构化笔记、精选论文数据库以及综合最终报告。输出内容按阶段划分,清晰明了。
安装路径: —— 包含脚本、参考资料以及本Skill定义文件。
输出路径:(相对于当前工作目录)。
~/.claude/skills/deep-research/.//Users/lingzhi/Code/deep-research-output/{slug}/Paper Quality Policy
论文质量准则
Peer-reviewed conference papers take priority over arXiv preprints. Many arXiv papers have not undergone peer review and may contain unverified claims.
同行评审的会议论文优先级高于arXiv预印本。许多arXiv论文未经过同行评审,可能包含未经证实的结论。
Source Priority (highest to lowest)
来源优先级(从高到低)
- Top AI conferences: NeurIPS, ICLR, ICML, ACL, EMNLP, NAACL, AAAI, IJCAI, CVPR, KDD, CoRL
- Peer-reviewed journals: JMLR, TACL, Nature, Science, etc.
- Workshop papers: NeurIPS/ICML workshops (lower bar but still reviewed)
- arXiv preprints with high citations: Likely high-quality but unverified
- Recent arXiv preprints: Use cautiously, note "preprint" status explicitly
- 顶级AI会议:NeurIPS, ICLR, ICML, ACL, EMNLP, NAACL, AAAI, IJCAI, CVPR, KDD, CoRL
- 同行评审期刊:JMLR, TACL, 《自然》, 《科学》等
- 研讨会论文:NeurIPS/ICML研讨会(门槛较低但仍经过评审)
- 高引用量的arXiv预印本:可能质量较高但未经验证
- 近期arXiv预印本:谨慎使用,明确标注“预印本”状态
When to Use arXiv Papers
何时使用arXiv论文
- As supplementary evidence alongside peer-reviewed work
- For very recent results (< 3 months old) not yet at conferences
- When a peer-reviewed version doesn't exist yet — note in citations
(preprint) - For survey/review papers (these are useful even without peer review)
- 作为同行评审成果的补充证据
- 用于获取最新(发布时间<3个月)的、尚未在会议上发表的研究结果
- 当某研究暂无同行评审版本时——在引用中注明
(preprint) - 用于综述/调研论文(即使未经过同行评审也有参考价值)
Search Tools (by priority)
检索工具(按优先级排序)
1. paper_finder (primary — conference papers only)
1. paper_finder(主要工具——仅检索会议论文)
Location:
/Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.pySearches ai-paper-finder.info (HuggingFace Space) for published conference papers. Supports filtering by conference + year. Outputs JSONL with BibTeX.
bash
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --mode scrape --config <config.yaml>
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --mode download --jsonl <results.jsonl>
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --list-venuesConfig example:
yaml
searches:
- query: "long horizon reasoning agent"
num_results: 100
venues:
neurips: [2024, 2025]
iclr: [2024, 2025, 2026]
icml: [2024, 2025]
output:
root: /Users/lingzhi/Code/deep-research-output/{slug}/phase1_frontier/search_results
overwrite: true位置:
/Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py检索ai-paper-finder.info(HuggingFace Space)上已发表的会议论文,支持按会议+年份筛选,输出带BibTeX的JSONL文件。
bash
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --mode scrape --config <config.yaml>
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --mode download --jsonl <results.jsonl>
python /Users/lingzhi/Code/documents/tool/paper_finder/paper_finder.py --list-venues配置示例:
yaml
searches:
- query: "long horizon reasoning agent"
num_results: 100
venues:
neurips: [2024, 2025]
iclr: [2024, 2025, 2026]
icml: [2024, 2025]
output:
root: /Users/lingzhi/Code/deep-research-output/{slug}/phase1_frontier/search_results
overwrite: true2. search_semantic_scholar.py (supplementary — citation data + broader coverage)
2. search_semantic_scholar.py(补充工具——提供引用数据+更广泛的覆盖范围)
Location:
Supports and filters. API key: (field )
/Users/lingzhi/.claude/skills/deep-research/scripts/search_semantic_scholar.py--peer-reviewed-only--top-conferences/Users/lingzhi/Code/keys.mdS2_API_Key位置:
支持 和 筛选条件。API密钥路径:(字段 )
/Users/lingzhi/.claude/skills/deep-research/scripts/search_semantic_scholar.py--peer-reviewed-only--top-conferences/Users/lingzhi/Code/keys.mdS2_API_Key3. search_arxiv.py (supplementary — latest preprints)
3. search_arxiv.py(补充工具——检索最新预印本)
Location:
For searching recent papers not yet published at conferences. Mark citations with .
/Users/lingzhi/.claude/skills/deep-research/scripts/search_arxiv.py(preprint)位置:
用于检索尚未在会议上发表的近期论文。引用时需标注 。
/Users/lingzhi/.claude/skills/deep-research/scripts/search_arxiv.py(preprint)Other Scripts
其他脚本
| Script | Location | Key Flags |
|---|---|---|
| | |
| | |
| | subcommands: |
| | |
| | |
| 脚本 | 位置 | 关键参数 |
|---|---|---|
| | |
| | |
| | 子命令: |
| | |
| | |
WebFetch Mode (no Bash)
WebFetch模式(无需Bash)
- Paper discovery: +
WebSearchto query Semantic Scholar/arXiv APIsWebFetch - Paper reading: on ar5iv HTML or
WebFetchtool on downloaded PDFsRead - Writing: tool for JSONL, notes, report files
Write
- 论文发现:+
WebSearch查询Semantic Scholar/arXiv APIWebFetch - 论文阅读:对ar5iv HTML使用 ,或对已下载的PDF使用
WebFetch工具Read - 写作:使用 工具生成JSONL、笔记、报告文件
Write
6-Phase Workflow
6阶段工作流
Phase 1: Frontier
阶段1:前沿调研
Search the latest conference proceedings and preprints to understand current trends.
- Write targeting latest 1-2 years
phase1_frontier/paper_finder_config.yaml - Run paper_finder scrape
- WebSearch for latest accepted paper lists
- Identify trending directions, key breakthroughs
→ Output: ,
phase1_frontier/frontier.mdphase1_frontier/search_results/
检索最新会议论文集和预印本,了解当前研究趋势。
- 编写 ,目标为最近1-2年的成果
phase1_frontier/paper_finder_config.yaml - 运行paper_finder进行爬取
- 网页搜索最新的已接收论文列表
- 识别热门研究方向、关键突破成果
→ 输出:,
phase1_frontier/frontier.mdphase1_frontier/search_results/
Phase 2: Survey
阶段2:全面调研
Build a comprehensive landscape with broader time range. Target 35-80 papers after filtering.
- Write covering 2023-2025
phase2_survey/paper_finder_config.yaml - Run paper_finder + Semantic Scholar + arXiv
- Merge all results:
python /Users/lingzhi/.claude/skills/deep-research/scripts/paper_db.py merge - Filter to 35-80 most relevant:
python /Users/lingzhi/.claude/skills/deep-research/scripts/paper_db.py filter --min-score 0.80 --max-papers 70 - Cluster by theme, write survey notes
→ Output: ,
phase2_survey/survey.md,phase2_survey/search_results/paper_db.jsonl
扩大时间范围,构建全面的研究全景。筛选后目标为35-80篇论文。
- 编写 ,覆盖2023-2025年
phase2_survey/paper_finder_config.yaml - 运行paper_finder + Semantic Scholar + arXiv检索
- 合并所有结果:
python /Users/lingzhi/.claude/skills/deep-research/scripts/paper_db.py merge - 筛选出35-80篇最相关的论文:
python /Users/lingzhi/.claude/skills/deep-research/scripts/paper_db.py filter --min-score 0.80 --max-papers 70 - 按主题聚类,撰写调研笔记
→ 输出:,
phase2_survey/survey.md,phase2_survey/search_results/paper_db.jsonl
Phase 3: Deep Dive
阶段3:深度研读
Select 8-15 papers. Prefer peer-reviewed papers for deep reading.
Write selection rationale, then read fully and take structured notes.
→ Output: , ,
phase3_deep_dive/selection.mdphase3_deep_dive/deep_dive.mdphase3_deep_dive/papers/选择8-15篇论文。优先选择同行评审论文进行深度阅读。
撰写选择理由,然后完整阅读并记录结构化笔记。
→ 输出:, ,
phase3_deep_dive/selection.mdphase3_deep_dive/deep_dive.mdphase3_deep_dive/papers/Phase 4: Code & Tools
阶段4:代码与工具
Extract GitHub URLs, web search for implementations, benchmarks.
→ Output:
phase4_code/code_repos.md提取GitHub链接,网页搜索相关实现、基准测试。
→ 输出:
phase4_code/code_repos.mdPhase 5: Synthesis
阶段5:综合分析
Cross-paper analysis. Weight peer-reviewed findings higher.
Taxonomy, comparative tables, gap analysis.
→ Output: ,
phase5_synthesis/synthesis.mdphase5_synthesis/gaps.md跨论文分析。优先考虑同行评审研究成果的权重。
构建分类体系、对比表格、研究缺口分析。
→ 输出:,
phase5_synthesis/synthesis.mdphase5_synthesis/gaps.mdPhase 6: Compilation
阶段6:报告汇编
Assemble final report. Mark preprint citations with suffix.
→ Output: ,
(preprint)phase6_report/report.mdphase6_report/references.bib整合最终报告。引用预印本时需添加 后缀。
→ 输出:,
(preprint)phase6_report/report.mdphase6_report/references.bibOutput Directory
输出目录结构
output/{topic-slug}/
├── paper_db.jsonl # Master database (accumulated)
├── phase1_frontier/
│ ├── paper_finder_config.yaml
│ ├── search_results/
│ └── frontier.md
├── phase2_survey/
│ ├── paper_finder_config.yaml
│ ├── search_results/
│ └── survey.md
├── phase3_deep_dive/
│ ├── papers/
│ ├── selection.md
│ └── deep_dive.md
├── phase4_code/
│ └── code_repos.md
├── phase5_synthesis/
│ ├── synthesis.md
│ └── gaps.md
└── phase6_report/
├── report.md
└── references.biboutput/{topic-slug}/
├── paper_db.jsonl # 主数据库(逐步积累)
├── phase1_frontier/
│ ├── paper_finder_config.yaml
│ ├── search_results/
│ └── frontier.md
├── phase2_survey/
│ ├── paper_finder_config.yaml
│ ├── search_results/
│ └── survey.md
├── phase3_deep_dive/
│ ├── papers/
│ ├── selection.md
│ └── deep_dive.md
├── phase4_code/
│ └── code_repos.md
├── phase5_synthesis/
│ ├── synthesis.md
│ └── gaps.md
└── phase6_report/
├── report.md
└── references.bibKey Conventions
关键约定
- Paper IDs: Use when available, otherwise Semantic Scholar
arxiv_idpaperId - Citations: format, key = firstAuthorYearWord (e.g.,
[@key])[@vaswani2017attention] - JSONL schema: title, authors, abstract, year, venue, venue_normalized, peer_reviewed, citationCount, paperId, arxiv_id, pdf_url, tags, source
- Preprint marking: Always note when citing non-peer-reviewed work
(preprint) - Incremental saves: Each phase writes to disk immediately
- Paper count: Target 35-80 papers in final paper_db.jsonl (use )
paper_db.py filter
- 论文ID:优先使用 ,若无则使用Semantic Scholar的
arxiv_idpaperId - 引用格式:格式,key = 第一作者姓氏+年份+关键词(例如:
[@key])[@vaswani2017attention] - JSONL schema:title, authors, abstract, year, venue, venue_normalized, peer_reviewed, citationCount, paperId, arxiv_id, pdf_url, tags, source
- 预印本标注:引用非同行评审成果时必须注明
(preprint) - 增量保存:每个阶段的成果立即写入磁盘
- 论文数量:最终 中目标论文数量为35-80篇(使用
paper_db.jsonl工具筛选)paper_db.py filter
References
参考资料
- — Detailed 6-phase methodology
/Users/lingzhi/.claude/skills/deep-research/references/workflow-phases.md - — Note templates, BibTeX format, report structure
/Users/lingzhi/.claude/skills/deep-research/references/note-format.md - — arXiv, Semantic Scholar, ar5iv API guide
/Users/lingzhi/.claude/skills/deep-research/references/api-reference.md
- — 6阶段方法学详细说明
/Users/lingzhi/.claude/skills/deep-research/references/workflow-phases.md - — 笔记模板、BibTeX格式、报告结构
/Users/lingzhi/.claude/skills/deep-research/references/note-format.md - — arXiv、Semantic Scholar、ar5iv API指南
/Users/lingzhi/.claude/skills/deep-research/references/api-reference.md
Related Skills
相关Skill
- Downstream: literature-search, literature-review, citation-management
- See also: novelty-assessment, survey-generation
- 下游Skill:literature-search, literature-review, citation-management
- 其他相关Skill:novelty-assessment, survey-generation