OpenClaw-hot-skills-zh multi-search-engine
多搜索引擎集成,支持 17 个搜索引擎(8 个国内 + 9 个国际)。支持高级搜索操作符、时间筛选、站内搜索、隐私搜索引擎和 WolframAlpha 知识查询。无需 API 密钥。
install
source · Clone the upstream repo
git clone https://github.com/L-LesterYu/OpenClaw-hot-skills-zh
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/L-LesterYu/OpenClaw-hot-skills-zh "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/multi-search-engine-zh" ~/.claude/skills/l-lesteryu-openclaw-hot-skills-zh-multi-search-engine && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/L-LesterYu/OpenClaw-hot-skills-zh "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/multi-search-engine-zh" ~/.openclaw/skills/l-lesteryu-openclaw-hot-skills-zh-multi-search-engine && rm -rf "$T"
manifest:
skills/multi-search-engine-zh/SKILL.mdsource content
多搜索引擎 v2.0.1
集成 17 个搜索引擎,无需 API 密钥即可进行网页搜索。
搜索引擎列表
国内搜索引擎(8 个)
- 百度:
https://www.baidu.com/s?wd={keyword} - 必应中国:
https://cn.bing.com/search?q={keyword}&ensearch=0 - 必应国际:
https://cn.bing.com/search?q={keyword}&ensearch=1 - 360搜索:
https://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}
国际搜索引擎(9 个)
- Google:
https://www.google.com/search?q={keyword} - Google 香港:
https://www.google.com.hk/search?q={keyword} - DuckDuckGo:
https://duckduckgo.com/html/?q={keyword} - Yahoo:
https://search.yahoo.com/search?p={keyword} - Startpage:
https://www.startpage.com/sp/search?query={keyword} - Brave:
https://search.brave.com/search?q={keyword} - Ecosia:
https://www.ecosia.org/search?q={keyword} - Qwant:
https://www.qwant.com/?q={keyword} - WolframAlpha:
https://www.wolframalpha.com/input?i={keyword}
快速示例
// 基础搜索 web_fetch({"url": "https://www.google.com/search?q=python+tutorial"}) // 站内搜索 web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"}) // 文件类型搜索 web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"}) // 时间筛选(过去一周) web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"}) // 隐私搜索 web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"}) // DuckDuckGo Bangs 快捷搜索 web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"}) // 知识计算 web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
高级搜索操作符
| 操作符 | 示例 | 说明 |
|---|---|---|
| | 站内搜索 |
| | 指定文件类型 |
| | 精确匹配 |
| | 排除关键词 |
| | 或运算 |
时间筛选参数
| 参数 | 说明 |
|---|---|
| 过去1小时 |
| 过去24小时 |
| 过去1周 |
| 过去1月 |
| 过去1年 |
隐私搜索引擎
- DuckDuckGo: 不追踪用户
- Startpage: Google 结果 + 隐私保护
- Brave: 独立索引
- Qwant: 符合欧盟 GDPR 标准
DuckDuckGo Bangs 快捷搜索
| Bang | 跳转目标 |
|---|---|
| |
| GitHub |
| Stack Overflow |
| Wikipedia |
| YouTube |
WolframAlpha 知识查询
- 数学计算:
integrate x^2 dx - 单位换算:
100 USD to CNY - 股票数据:
AAPL stock - 天气查询:
weather in Beijing
文档
- 国内搜索指南references/advanced-search.md
- 国际搜索指南references/international-search.md
- 版本历史CHANGELOG.md
许可证
MIT