作者:互联网 时间: 2026-08-10 15:15:01
从源直接安装技能的最快方式。
npx clawhub@latest install multi-search-engine
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
<project>/skills/
优先级:工作区 > 本地 > 内置
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 multi-search-engine。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
该插件赋予 AI 智能体在 17 个不同搜索引擎中进行全面网络研究的能力,涵盖国内平台(如百度、微信)和国际服务(如 Google、DuckDuckGo)。通过利用直接的 URL 结构而非受限的 API,它为实时信息检索、隐私保护浏览以及通过 WolframAlpha 进行专业知识查询提供了一种高性能、零成本的解决方案。使用 Openclaw Skills 可确保您的智能体在处理任何任务时拥有最广泛的背景信息,且无需承担管理个人 API 凭据的开销。
要将聚合搜索引擎集成到您的智能体环境中,请确保已激活 Openclaw Skills 框架。17 个引擎均不需要 API 密钥。
# 除标准环境外,不需要特定安装。
# 该插件利用 web_fetch 工具进行直接 URL 访问。
# 确保您的智能体环境具有访问目标搜索域的网络权限。
该插件按引擎类型和地区组织搜索,利用标准 URL 参数来促进轻松解析。
| 地区 | 支持的引擎 |
|---|---|
| 国内 (CN) | 百度, Bing CN, 360, 搜狗, 微信, 头条, 集思录 |
| 国际 | Google, Bing INT, DuckDuckGo, Yahoo, Startpage, Brave, Ecosia, Qwant |
| 知识库 | WolframAlpha |
高级搜索语法遵循标准引擎约定(例如,使用 tbs=qdr:w 进行每周过滤)。
name: "multi-search-engine"
description: "Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required."
Integration of 17 search engines for web crawling without API keys.
https://www.baidu.com/s?wd={keyword}https://cn.bing.com/search?q={keyword}&ensearch=0https://cn.bing.com/search?q={keyword}&ensearch=1https://www.so.com/s?q={keyword}https://sogou.com/web?query={keyword}https://wx.sogou.com/weixin?type=2&query={keyword}https://so.toutiao.com/search?keyword={keyword}https://www.jisilu.cn/explore/?keyword={keyword}https://www.google.com/search?q={keyword}https://www.google.com.hk/search?q={keyword}https://duckduckgo.com/html/?q={keyword}https://search.yahoo.com/search?p={keyword}https://www.startpage.com/sp/search?query={keyword}https://search.brave.com/search?q={keyword}https://www.ecosia.org/search?q={keyword}https://www.qwant.com/?q={keyword}https://www.wolframalpha.com/input?i={keyword}// Basic search
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})
// Site-specific
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})
// File type
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})
// Time filter (past week)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})
// Privacy search
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})
// Knowledge calculation
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+chy"})
| Operator | Example | Description |
|---|---|---|
site: |
site:github.com python |
Search within site |
filetype: |
filetype:pdf report |
Specific file type |
"" |
"machine learning" |
Exact match |
- |
python -snake |
Exclude term |
OR |
cat OR dog |
Either term |
| Parameter | Description |
|---|---|
tbs=qdr:h |
Past hour |
tbs=qdr:d |
Past day |
tbs=qdr:w |
Past week |
tbs=qdr:m |
Past month |
tbs=qdr:y |
Past year |
| Bang | Destination |
|---|---|
!g |
|
!gh |
GitHub |
!so |
Stack Overflow |
!w |
Wikipedia |
!yt |
YouTube |
integrate x^2 dx100 USD to chyAAPL stockweather in Beijingreferences/advanced-search.md - Domestic search guidereferences/international-search.md - International search guideCHANGELOG.md - Version historyMIT