Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

parallel-ai-search并行 AI 搜索

Agent Skill

parallel-ai-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

57,271

周安装

2,435

GitHub Stars

1

下载量

20,064
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:parallel-ai-search(并行 AI 搜索)
来源仓库:https://github.com/tristanmanchester/parallel-ai-search
安装命令:
openclaw skills install parallel-ai-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install parallel-ai-search

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 Parallel 的 parallel-cli 实时网络搜索、URL 提取和深度研究报告生成。
  • 通过 clawhub 安装,结合来源仓库和原始 README 核验具体用法,支持批量数据处理。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前主要用于研究检索类任务,需配合具体数据需求使用。

SKILL.md

name
parallel-ai-search
description
Use Parallel's parallel-cli to do live web search, URL extraction (clean markdown), deep research reports, bulk data enrichment (CSV/JSON), FindAll entity discovery, and web monitoring. Use when the user asks to look something up online, needs current sources/citations, provides URLs to read or summarise, requests deep/exhaustive research, wants to enrich a dataset with web-sourced fields, wants a list of entities (companies/people/places), or wants to monitor the web for changes over time.
compatibility
Requires parallel-cli installed + authenticated (PARALLEL_API_KEY or parallel-cli login) and internet access.
metadata
author
openclaw
version
2.0.0
homepage
https://docs.parallel.ai/integrations/cli
openclaw
{"emoji":"🔎","primaryEnv":"PARALLEL_API_KEY","cli":"parallel-cli"}
allowed-tools
Bash(parallel-cli:*) Bash(curl:*) Bash(pipx:*) Read

Parallel AI Search (CLI Master)

This is a single “master” skill that replaces the earlier Node-script-based version of parallel-ai-search.

It routes to the right parallel-cli capability for the task:

  • Search: quick web lookup with citations (parallel-cli search)
  • Extract: turn URLs (including PDFs and JS-heavy pages) into clean, LLM-ready text (parallel-cli extract)
  • Deep research: multi-source reports with processor tiers (parallel-cli research ...)
  • Enrich: add web-sourced columns to CSV/JSON (parallel-cli enrich ...)
  • FindAll: discover entities from the web with optional enrichments (parallel-cli findall ...)
  • Monitor: track web changes on a cadence, optionally via webhook (parallel-cli monitor ...)

Routing rules (pick ONE)

Choose the smallest / cheapest action that solves the user’s request:

  1. Extract — if the user gives one or more URLs *or* says “read/summarise this page”, “extract”, “quote”, “pull the content”, “what does this page say”.
  2. Deep research — ONLY if the user explicitly asks for *deep*, *exhaustive*, *comprehensive*, *thorough investigation*, or a multi-source “report”.
  3. Enrich — if the user provides a list/table (CSV/JSON/inline objects) and wants new columns like CEO, revenue, funding, contact info, etc.
  4. FindAll — if the user wants you to discover many entities (companies/people/venues/etc.) that match criteria.
  5. Monitor — if the user wants ongoing tracking (“alert me”, “track changes”, “monitor this weekly”) rather than a one-off answer.
  6. Search — default for everything else that needs current web info or citations.

Optional manual prefixes if the user invoked this skill directly:

  • search: ...
  • extract: ...
  • research: ...
  • enrich: ...
  • findall: ...
  • monitor: ...

If a prefix is present, honour it.

Setup and authentication (only when needed)

Before running any Parallel command, ensure auth works:

parallel-cli auth

If parallel-cli is missing, install it:

curl -fsSL https://parallel.ai/install.sh | bash

If you cannot use the install script, use pipx:

pipx install "parallel-web-tools[cli]"
pipx ensurepath

Then authenticate (choose one):

# Interactive OAuth (opens browser)
parallel-cli login

# Headless / SSH / CI
parallel-cli login --device

# Or environment variable
export PARALLEL_API_KEY="your_api_key"

Output & citation rules

  • Always cite web-sourced facts with inline markdown links: [Source Title](https://...).
  • End with a Sources list whenever you used Search/Extract/Research output.
  • Prefer official/primary sources when available.
  • For long outputs, save to files in /tmp/ and summarise in-chat.

Search (default web lookup)

Use Search for fast, cost-effective answers with citations.

Command template

parallel-cli search "$OBJECTIVE"   --mode agentic   --max-results 10   --json

Add any of these only when relevant:

  • --after-date YYYY-MM-DD (freshness constraint)
  • --include-domains a.com b.org (restrict sources)
  • --exclude-domains spam.com (block sources)
  • one or more -q "keyword query" flags (extra keyword probes)
  • -o "/tmp/$SLUG.search.json" (save full JSON to a file)

Parse + respond

From the JSON results, extract title, url, and any publish_date / excerpt fields. Answer the user’s question, and cite each claim inline.

Extract (read one or more URLs)

Use Extract when you need the actual contents of specific URLs (webpages, PDFs, JS-heavy sites).

Command template

parallel-cli extract "$URL" --json

Add when relevant:

  • --objective "Focus area" (e.g., pricing, API usage, constraints)
  • --full-content (only if the user needs the whole page)
  • --no-excerpts (if you only want full content)
  • -o "/tmp/$SLUG.extract.json" (save full JSON to a file)

Respond

  • If the user asked for a summary, summarise with citations to the extracted URL.
  • If the user asked for the verbatim text, provide the extracted markdown *only if it is reasonably sized*; otherwise provide the key sections + offer to read more from the saved output.

Deep research (only when explicitly requested)

Deep research is slower and may cost more than Search. Use it only when the user explicitly wants depth.

Step 1 — start (always async)

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

Parse run_id (and any monitoring URL) from JSON and tell the user the run started.

Step 2 — poll (bounded timeout)

Choose a short slug filename (lowercase-hyphen), then:

parallel-cli research poll "$RUN_ID" -o "/tmp/$SLUG" --timeout 540
  • Share the executive summary printed by the poll command.
  • Mention the output files:

- /tmp/$SLUG.md - /tmp/$SLUG.json

If polling times out, re-run the same poll command — the run continues server-side.

Enrich (CSV/JSON or inline data)

Use Enrich to add web-sourced columns to structured data.

Step 1 — (optional) suggest columns

parallel-cli enrich suggest "$INTENT" --json

Use this when the user knows the goal but not the exact output schema.

Step 2 — run (always async for large jobs)

For CSV:

parallel-cli enrich run   --source-type csv   --source "input.csv"   --target "/tmp/enriched.csv"   --source-columns '[{"name":"company","description":"Company name"}]'   --intent "$INTENT"   --no-wait --json

For inline JSON rows:

parallel-cli enrich run   --data '[{"company":"Google"},{"company":"Apple"}]'   --target "/tmp/enriched.csv"   --intent "$INTENT"   --no-wait --json

Parse taskgroup_id from JSON.

Step 3 — poll

parallel-cli enrich poll "$TASKGROUP_ID" --timeout 540 --json

After completion:

  • Tell the user the output file path (the --target you chose).
  • Preview a few rows (using file read tools if available) and report row counts.

If poll times out, re-run it — the job continues server-side.

FindAll (entity discovery)

Use FindAll when the user wants you to discover a set of entities (e.g., “AI startups in healthcare”, “roofing companies in Charlotte”, “YC devtools companies”).

Step 1 — run

parallel-cli findall run "$OBJECTIVE" --generator core --match-limit 25 --no-wait --json

Useful options:

  • --dry-run --json to preview schema before spending money
  • --exclude '[{"name":"Example Corp","url":"example.com"}]' to avoid known entities
  • --generator preview|base|core|pro (core default; pro for hardest queries)

Parse run_id from JSON.

Step 2 — poll + fetch results

parallel-cli findall poll "$RUN_ID" --json
parallel-cli findall result "$RUN_ID" --json

Respond with:

  • total entities found
  • a clean list/table of the best matches (name + URL + key attributes)
  • any caveats about ambiguous matches

Monitor (web change tracking)

Use Monitor when the user wants ongoing tracking.

Create:

parallel-cli monitor create "$OBJECTIVE" --cadence daily --json

Optional:

  • --cadence hourly|daily|weekly|every_two_weeks
  • --webhook https://example.com/hook (deliver events externally)
  • --output-schema '<JSON schema string>' (structured events)

Manage:

parallel-cli monitor list --json
parallel-cli monitor get "$MONITOR_ID" --json
parallel-cli monitor update "$MONITOR_ID" --cadence weekly --json
parallel-cli monitor delete "$MONITOR_ID"
parallel-cli monitor events "$MONITOR_ID" --json
parallel-cli monitor simulate "$MONITOR_ID" --json

Respond with the monitor id and how to retrieve events (or confirm webhook delivery).

Reference material

  • Copy/paste command templates and patterns: references/command-templates.md
  • Troubleshooting common failures: references/troubleshooting.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.75%
按下载量换算15,399

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills