AI-powered web search via Parallel API. Returns ranked results with LLM-optimized excerpts. Use for up-to-date research, fact-checking, and domain-scoped searching.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install parallel-search或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install parallel-search⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/parallel-search/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: parallel-search description: "AI-powered web search via Parallel API. Returns ranked results with LLM-optimized excerpts. Use for up-to-date research, fact-checking, and domain-scoped searching." homepage: https://parallel.ai ---
High-accuracy web search built for AI agents. Returns ranked results with intelligent excerpts optimized for LLM consumption.
Trigger this skill when the user asks for:
parallel-cli search "your query" --json --max-results 5
parallel-cli search "<objective>" [options]
| Flag | Description | |------|-------------| | -q, --query " | Add keyword filter (repeatable, 3-8 recommended) | | --max-results N | Number of results (1-20, default: 10) | | --json | Output as JSON | | --after-date YYYY-MM-DD | Filter for recent content | | --include-domains domain.com | Limit to specific domains (repeatable, max 10) | | --exclude-domains domain.com | Exclude domains (repeatable, max 10) | | --excerpt-max-chars-total N | Limit total excerpt size (default: 8000) |
Basic search:
parallel-cli search "When was the United Nations founded?" --json --max-results 5
With keyword filters:
parallel-cli search "Latest developments in quantum computing" \
-q "quantum" -q "computing" -q "2026" \
--json --max-results 10
Domain-scoped search:
parallel-cli search "React hooks best practices" \
--include-domains react.dev --include-domains github.com \
--json --max-results 5
Recent news only:
parallel-cli search "AI regulation news" \
--after-date 2026-01-01 \
--json --max-results 10
Write 1-3 sentences describing:
Add 3-8 keyword queries including:
Returns structured JSON with:
search_id — unique identifierresults[] — array of results: - url — source URL - title — page title - excerpts[] — relevant text excerpts - publish_date — when available
When turning results into a user-facing answer:
For long conversations, save results and use sessions_spawn:
parallel-cli search "<query>" --json -o /tmp/search-<topic>.json
Then spawn a sub-agent:
{
"tool": "sessions_spawn",
"task": "Read /tmp/search-<topic>.json and synthesize a summary with sources.",
"label": "search-summary"
}
| Exit Code | Meaning | |-----------|---------| | 0 | Success | | 1 | Unexpected error (network, parse) | | 2 | Invalid arguments | | 3 | API error (non-2xx) |
curl -fsSL https://parallel.ai/install.sh | bash
export PARALLEL_API_KEY=your-key
安装 Parallel Search 后,可以对 AI 说这些话来触发它
Help me get started with Parallel Search
Explains what Parallel Search does, walks through the setup, and runs a quick demo based on your current project
Use Parallel Search to aI-powered web search via Parallel API
Invokes Parallel Search with the right parameters and returns the result directly in the conversation
What can I do with Parallel Search in my data & analytics workflow?
Lists the top use cases for Parallel Search, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/parallel-search/ 目录(个人级,所有项目可用),或 .claude/skills/parallel-search/(项目级)。重启 AI 客户端后,用 /parallel-search 主动调用,或让 AI 根据上下文自动发现并使用。
Parallel Search 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Parallel Search 可免费安装使用。请查阅仓库了解许可证信息。
AI-powered web search via Parallel API. Returns ranked results with LLM-optimized excerpts. Use for up-to-date research, fact-checking, and domain-scoped searching.
Parallel Search 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Parallel Search
Identifies repetitive steps in your workflow and sets up Parallel Search to handle them automatically