parallel-deep-research
Original:🇺🇸 English
Translated
ONLY use when user explicitly says 'deep research', 'exhaustive', 'comprehensive report', or 'thorough investigation'. Slower and more expensive than parallel-web-search. For normal research/lookup requests, use parallel-web-search instead.
9installs
Added on
NPX Install
npx skill4agent add parallel-web/agent-skills parallel-deep-researchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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
bash
parallel-cli research run "$ARGUMENTS" --processor pro-fast --no-wait --jsonThis returns instantly. Do NOT omit — without it the command blocks for minutes and will time out.
--no-waitProcessor options (choose based on user request):
| Processor | Expected latency | Use when |
|---|---|---|
| 30s – 5 min | Default — good balance of depth and speed |
| 1 – 10 min | Deeper analysis, more sources (~2x cost) |
| 5 – 25 min | Maximum depth, only when explicitly requested (~3x cost) |
Parse the JSON output to extract the and monitoring URL. Immediately tell the user:
run_id- 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., , ). Use lowercase with hyphens, no spaces.
ai-chip-market-2026react-vs-vue-comparisonbash
parallel-cli research poll "$RUN_ID" -o "$FILENAME" --timeout 540Important:
- Use (9 minutes) to stay within tool execution limits
--timeout 540 - Do NOT pass — the full output is large and will flood context. The
--jsonflag writes results to files instead.-o - The flag generates two output files:
-o- — metadata and basis
$FILENAME.json - — formatted markdown report
$FILENAME.md
If the poll times out
Higher processor tiers can take longer than 9 minutes. If the poll exits without completing:
- Tell the user the research is still running server-side
- Re-run the same command to continue waiting
parallel-cli research poll
Response format
After step 1: Share the monitoring URL (for tracking progress only — it is not the final report).
After step 2: Tell the user the two generated file paths:
- — formatted markdown report
$FILENAME.md - — metadata and basis
$FILENAME.json
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 now. Do NOT read the file contents into context unless the user asks.
Setup
If is not found, install and authenticate:
parallel-clibash
curl -fsSL https://parallel.ai/install.sh | bash
parallel-cli loginOr set an API key:
export PARALLEL_API_KEY="your-key"