parallel-deep-research by parallel-web/parallel-agent-skills
npx skills add https://github.com/parallel-web/parallel-agent-skills --skill parallel-deep-research研究主题:$ARGUMENTS
仅当用户明确请求深度/详尽研究时,才使用此技能。深度研究比 parallel-web-search 慢 10-100 倍,且成本更高。对于普通的“研究 X”请求、快速查找或事实核查,请使用 parallel-web-search。
parallel-cli research run "$ARGUMENTS" --processor pro-fast --no-wait --json
如果这是对先前研究或知识补充任务的后续跟进,并且您知道 interaction_id,请添加上下文链:
parallel-cli research run "$ARGUMENTS" --processor lite --no-wait --json --previous-interaction-id "$INTERACTION_ID"
通过在请求之间链式传递 interaction_id 值,每个后续问题都会自动拥有先前轮次的所有上下文——这样您就可以深入探讨某个主题,而无需重述已经研究过的内容。对于后续跟进,请使用 --processor lite,因为繁重的研究已在初始轮次完成,后续跟进只需在该上下文基础上进行。
此命令会立即返回。请勿省略 --no-wait——如果没有它,命令会阻塞数分钟并导致超时。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
处理器选项(根据用户请求选择):
| 处理器 | 预期延迟 | 使用场景 |
|---|---|---|
pro-fast | 30秒 – 5 分钟 | 默认选项——深度与速度的良好平衡 |
ultra-fast | 1 – 10 分钟 | 更深入的分析,更多来源(约 2 倍成本) |
ultra | 5 – 25 分钟 | 最大深度,仅在明确请求时使用(约 3 倍成本) |
解析 JSON 输出以提取 run_id、interaction_id 和监控 URL。立即告知用户:
告诉他们可以在运行期间将轮询步骤置于后台,继续其他工作。
根据主题选择一个描述性的文件名(例如 ai-chip-market-2026、react-vs-vue-comparison)。使用小写字母和连字符,不要有空格。
parallel-cli research poll "$RUN_ID" -o "$FILENAME" --timeout 540
重要事项:
--timeout 540(9 分钟)以保持在工具执行限制内--json——完整输出很大,会淹没上下文。-o 标志会将结果写入文件。-o 标志会生成两个输出文件:
$FILENAME.json —— 元数据和依据$FILENAME.md —— 格式化的 Markdown 报告更高层级的处理器可能需要超过 9 分钟。如果轮询退出但未完成:
parallel-cli research poll 命令以继续等待步骤 1 之后: 分享监控 URL(仅用于跟踪进度——它不是最终报告)。
步骤 2 之后:
$FILENAME.md —— 格式化的 Markdown 报告$FILENAME.json —— 元数据和依据interaction_id 并告知用户,他们可以提出基于此研究的后续问题(例如,“深入探讨 X”或“将其与 Y 进行比较”)完成后不要重新分享监控 URL——结果在文件中,而不是在那个链接里。
询问用户是否希望阅读文件以获取更多细节。除非用户要求,否则不要将文件内容读入上下文。
记住 interaction_id —— 如果用户提出与此研究相关的后续问题,请在下一个研究或知识补充命令中将其用作 --previous-interaction-id。
如果未找到 parallel-cli,请安装并进行身份验证:
curl -fsSL https://parallel.ai/install.sh | bash
如果无法通过上述方式安装,请改用 pipx 安装:
pipx install "parallel-web-tools[cli]"
pipx ensurepath
然后进行身份验证:
parallel-cli login
或者设置 API 密钥:export PARALLEL_API_KEY="your-key"
每周安装数
758
代码仓库
GitHub 星标数
35
首次出现
2026年2月7日
安全审计
已安装于
codex751
opencode751
gemini-cli750
github-copilot749
amp749
kimi-cli749
Research topic: $ARGUMENTS
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.
parallel-cli research run "$ARGUMENTS" --processor pro-fast --no-wait --json
If this is a follow-up to a previous research or enrichment task where you know the interaction_id, add context chaining:
parallel-cli research run "$ARGUMENTS" --processor lite --no-wait --json --previous-interaction-id "$INTERACTION_ID"
By chaining interaction_id values across requests, each follow-up question automatically has the full context of prior turns — so you can drill deeper into a topic without restating what was already researched. Use --processor lite for follow-ups since the heavy research was already done in the initial turn and the follow-up just needs to build on that context.
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, interaction_id, and monitoring URL. Immediately tell the user:
Tell them they can background the polling step to continue working while it runs.
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:
--timeout 540 (9 minutes) to stay within tool execution limits--json — the full output is large and will flood context. The -o flag writes results to files instead.-o flag generates two output files:
$FILENAME.json — metadata and basis$FILENAME.md — formatted markdown reportHigher processor tiers can take longer than 9 minutes. If the poll exits without completing:
parallel-cli research poll command to continue waitingAfter step 1: Share the monitoring URL (for tracking progress only — it is not the final report).
After step 2:
$FILENAME.md — formatted markdown report$FILENAME.json — metadata and basisinteraction_id and tell the user they can ask follow-up questions that build on this research (e.g., "drill deeper into X" or "compare that to Y")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.
Remember theinteraction_id — if the user asks a follow-up question that relates to this research, use it as --previous-interaction-id in the next research or enrichment command.
If parallel-cli is not found, install and authenticate:
curl -fsSL https://parallel.ai/install.sh | bash
If unable to install that way, install via pipx instead:
pipx install "parallel-web-tools[cli]"
pipx ensurepath
Then authenticate:
parallel-cli login
Or set an API key: export PARALLEL_API_KEY="your-key"
Weekly Installs
758
Repository
GitHub Stars
35
First Seen
Feb 7, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykFail
Installed on
codex751
opencode751
gemini-cli750
github-copilot749
amp749
kimi-cli749
专业SEO审计工具:全面网站诊断、技术SEO优化与页面分析指南
57,600 周安装