AgentSkillsCN

skill-deepresearch

借助 Exa.ai 进行并行语义搜索,再由 Claude 或 OpenAI 进行综合分析,对任意主题展开深度研究。适用于需要撰写包含引用文献的全面研究报告、从多个角度剖析主题,或对技术性议题进行深入探究时使用。

SKILL.md
--- frontmatter
name: skill-deepresearch
description: Perform deep research on any topic using Exa.ai for parallel semantic search and Claude/OpenAI for synthesis. Use when you need comprehensive research reports with citations, analysis of topics from multiple angles, or thorough investigation of technical subjects.

Deep Research

Agentic deep research skill using Exa.ai for search and Claude/OpenAI for synthesis.

Invocation

code
/deepresearch <topic>

Options

OptionDescriptionDefault
--depth <level>Research depth: quick (6 queries), normal (15), deep (30)normal
--model <provider>LLM: claude or openaiclaude
--output <path>Custom output path~/.skills/skill-deepresearch/exports/
--jsonAlso save sources as JSONfalse
--no-firecrawlSkip deep scrapingfalse

Examples

bash
# Quick overview of a topic
/deepresearch "What is RAG?" --depth quick

# Standard research with Claude
/deepresearch "Best practices for building production ML systems"

# Deep research with OpenAI, custom output
/deepresearch "Compare Next.js vs Remix" --depth deep --model openai --output ./research.md

Requirements

  • EXA_API_KEY - Required for search
  • ANTHROPIC_API_KEY - Required for Claude synthesis
  • OPENAI_API_KEY - Required for OpenAI synthesis
  • FIRECRAWL_API_KEY - Optional for deep scraping

Output

Reports are saved to ~/.skills/skill-deepresearch/exports/ with format:

  • report-{topic-slug}-{timestamp}.md - Full research report
  • sources-{topic-slug}-{timestamp}.json - Raw sources (if --json)