AgentSkillsCN

parallel-deep-research

利用 Parallel AI 展开全面的深度研究。适用于深度分析、市场调研、竞争情报,或需要对复杂多维度问题进行彻底网络探索的情况。

SKILL.md
--- frontmatter
name: parallel-deep-research
description: Performs comprehensive deep research using Parallel AI. Use for in-depth analysis, market research, competitive intelligence, or complex multi-faceted questions requiring thorough web exploration.
allowed-tools: Bash, Read

Parallel Deep Research

Comprehensive intelligence reports from natural language queries using Parallel AI Task API.

When to Use

  • User needs thorough, multi-source research on a topic
  • User asks complex questions requiring synthesis of multiple sources
  • User needs market research or competitive analysis
  • User wants comprehensive reports with citations
  • Simple web search is insufficient for the depth needed

Requirements

Environment variable must be set:

  • PARALLEL_API_KEY - Parallel AI API key

Command

bash
./scripts/parallel_research.py research "query" [options]

Options

OptionDescription
-p, --processorModel: pro-fast (default), pro, ultra-fast, ultra
-t, --timeoutMax wait in seconds (default: 600)
-f, --formatOutput: json (default) or markdown

Processors

ProcessorSpeedQualityCost
pro-fast2-5x fasterGoodLower
proStandardBetterMedium
ultra-fast2-5x fasterBetterMedium
ultraStandardBestHigher

Output Format

Default JSON for LLM parsing:

json
{
  "query": "What are the latest developments in fusion energy?",
  "processor": "pro-fast",
  "run_id": "run_abc123",
  "content": {
    "summary": "...",
    "key_developments": [...],
    "companies": [...],
    "timeline": [...]
  },
  "basis": [
    {
      "field": "summary",
      "excerpts": [
        {"url": "https://...", "text": "..."}
      ]
    }
  ]
}

Examples

Basic research:

bash
./scripts/parallel_research.py research "What are the key players in the AI chip market and their competitive positions?"

Higher quality (slower):

bash
./scripts/parallel_research.py research "Comprehensive analysis of renewable energy trends 2024" -p ultra

Human-readable output:

bash
./scripts/parallel_research.py research "Electric vehicle battery technology advances" -f markdown

Extended timeout for complex research:

bash
./scripts/parallel_research.py research "Deep competitive analysis of cloud providers" -t 1800

Notes

  • Research can take 1-45 minutes depending on complexity
  • The pro model and ultra models are expensive and can take 10-45 minutes to complete
  • Query must be under 15,000 characters
  • Status updates print to stderr, results to stdout
  • basis field contains citations mapping content to sources