parallel-deep-research

📁 parallel-web/parallel-cursor-plugin 📅 Today
1
总安装量
1
周安装量
#76704
全站排名
安装命令
npx skills add https://github.com/parallel-web/parallel-cursor-plugin --skill parallel-deep-research

Agent 安装分布

amp 1
cline 1
opencode 1
cursor 1
continue 1
kimi-cli 1

Skill 文档

Deep Research

Research topic: $ARGUMENTS

When to use (vs parallel-web-search)

ONLY use this skill when the user explicitly requests deep/exhaustive research. Deep research is 10-100x slower and more expensive than parallel-web-search. For normal “research X” requests, quick lookups, or fact-checking, use parallel-web-search instead.

Step 1: Start the research

parallel-cli research run "$ARGUMENTS" --processor pro-fast --no-wait --json

This returns instantly. Do NOT omit --no-wait — without it the command blocks for minutes and will time out.

Processor options (choose based on user request):

Processor Expected latency Use when
pro-fast 30s – 5 min Default — good balance of depth and speed
ultra-fast 1 – 10 min Deeper analysis, more sources (~2x cost)
ultra 5 – 25 min Maximum depth, only when explicitly requested (~3x cost)

Parse the JSON output to extract the run_id and monitoring URL. Immediately tell the user:

  • Deep research has been kicked off
  • The expected latency for the processor tier chosen (from the table above)
  • The monitoring URL where they can track progress

Tell them they can background the polling step to continue working while it runs.

Step 2: Poll for results

Choose a descriptive filename based on the topic (e.g., ai-chip-market-2026, react-vs-vue-comparison). Use lowercase with hyphens, no spaces.

parallel-cli research poll "$RUN_ID" -o "$FILENAME" --timeout 540

Important:

  • Use --timeout 540 (9 minutes) to stay within tool execution limits
  • Do NOT pass --json — the full output is large and will flood context. The -o flag writes results to files instead.
  • The -o flag generates two output files:
    • $FILENAME.json — metadata and basis
    • $FILENAME.md — formatted markdown report
  • The poll command prints an executive summary to stdout when the research completes. Share this executive summary with the user — it gives them a quick overview without having to open the files.

If the poll times out

Higher processor tiers can take longer than 9 minutes. If the poll exits without completing:

  1. Tell the user the research is still running server-side
  2. Re-run the same parallel-cli research poll command to continue waiting

Response format

After step 1: Share the monitoring URL (for tracking progress only — it is not the final report).

After step 2:

  1. Share the executive summary that the poll command printed to stdout
  2. Tell the user the two generated file paths:
    • $FILENAME.md — formatted markdown report
    • $FILENAME.json — metadata and basis

Do NOT re-share the monitoring URL after completion — the results are in the files, not at that link.

Ask the user if they would like to read through the files for more detail. Do NOT read the file contents into context unless the user asks.

If parallel-cli is not found

If the command fails with “command not found”, stop immediately. Do NOT research the topic yourself, do NOT use any built-in search tools, and do NOT try to answer from your own knowledge. Instead, tell the user:

  1. parallel-cli is not installed
  2. Run /parallel-setup to install it
  3. Then retry their research