Overview
- Skill Key
- coder-knock/unified-search
- Author
- coder-knock
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/coder-knock/unified-search
- Latest Commit SHA
- 162ebf3b75a5a4cb101ba4d5d78c08066635a6fa
统一搜索技能!中文用百度,英文用 DuckDuckGo,加密货币用 CoinGecko
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 unified-search 技能。 若已安装,则直接安装 unified-search 技能。
# 🔍 Unified Search - 统一搜索技能
**智能融合多种搜索引擎,一个脚本搞定所有搜索!**
- 🇨🇳 中文查询 → 自动用百度
- 🇺🇸 英文查询 → 自动用 DuckDuckGo
- 💰 加密货币 → 自动用 CoinGecko 实时价格
---
## 🚀 快速开始
### 方式1:使用统一智能搜索脚本(最推荐 ⭐⭐⭐⭐⭐⭐)
**自动选择最佳搜索引擎!** 一行命令,智能搞定!
```bash
cd skills/baidu-search
# 中文搜索 → 自动用百度
python scripts/unified_search.py "Python 教程" --format
# 英文搜索 → 自动用 DuckDuckGo
python scripts/unified_search.py "Python tutorial" --format
# 加密货币 → 自动用 CoinGecko
python scripts/unified_search.py "btc价格" --format
```
### 方式2:使用 Playwright 浏览器搜索(推荐 ⭐⭐⭐⭐⭐)
最稳定、最可靠的方式,使用 ClawX 内置的 browser 工具:
```javascript
// 1. 启动浏览器
browser(action="start")
// 2. 打开百度或 Bing
browser(action="open", targetUrl="https://www.baidu.com")
// 或 browser(action="open", targetUrl="https://www.bing.com")
// 3. 获取页面快照
browser(action="snapshot")
// 4. 在搜索框输入关键词(找到搜索框的 ref,如 e12)
browser(action="act", request={
kind: "type",
ref: "e12",
text: "搜索词"
})
// 5. 按回车搜索
browser(action="act", request={
kind: "press",
ref: "e12",
key: "Enter"
})
// 6. 获取搜索结果
browser(action="snapshot")
```
### 方式3:使用智能 Python 脚本搜索(备选)
```bash
cd skills/baidu-search
python scripts/smart_search.py "你的搜索词" --format
```
### 方式4:使用原始百度 Python 脚本
```bash
cd skills/baidu-search
python scripts/baidu_search.py "你的搜索词" --format
```
---
## 📋 功能对比
| 功能 | 统一智能搜索 | Playwright 浏览器 | 智能脚本 | 原始百度 |
|------|------------|-----------------|---------|---------|
| 中文自动用百度 | ✅ | ⭐⭐⭐⭐⭐ 手动 | ✅ | ✅ |
| 英文自动用 DDG | ✅ | ⭐⭐⭐⭐⭐ 手动 | ❌ | ❌ |
| 加密货币实时价 | ✅ | ❌ 需手动 | ✅ | ❌ |
| 多数据源集成 | ✅ 百度+DDG+API | ❌ 单一引擎 | ✅ 百度+Bing+API | ❌ 仅百度 |
| 易用性 | ⭐⭐⭐⭐⭐ 一行命令 | ⭐⭐⭐⭐ 需多步 | ⭐⭐⭐⭐⭐ 一行 | ⭐⭐⭐⭐⭐ 一行 |
| 推荐度 | ⭐⭐⭐⭐⭐...
# 🔍 Unified Search - 统一智能搜索! > 中文用百度,英文用 DuckDuckGo,加密货币用 CoinGecko —— 一个技能,搞定所有搜索! --- ## 🚀 这是什么? 这是 OpenClaw 的**统一智能搜索神器**,自动识别查询类型,调用最合适的搜索引擎! **小白直接用,零门槛!** 说句话就搞定,剩下的交给它! --- ## ✨ 为什么你一定要装? ### 🎯 三种智能搜索模式,总有一款适合你 | 方式 | 特点 | 推荐度 | |------|------|--------| | **统一智能搜索** | 自动语言检测 + 智能选择引擎 | ⭐⭐⭐⭐⭐⭐ 首选首选! | | **智能 Python 脚本** | 百度 + Bing + CoinGecko 三保险 | ⭐⭐⭐⭐ 备选 | | **Playwright 浏览器搜索** | 最稳定、能处理验证码 | ⭐⭐⭐⭐ 备选 | ### 💪 强大功能 - ✅ **中文自动用百度** - 中文搜索最懂 - ✅ **英文自动用 DuckDuckGo** - 隐私保护 + 英文内容 - ✅ **加密货币自动用 CoinGecko** - 实时价格,精准可靠 - ✅ **自动 Fallback** - 百度失败用 DDG,DDG 失败用百度 - ✅ **张嘴就来** - 自然语言触发,零技术门槛 - ✅ **结构化结果** - 标题、链接、摘要,一目了然 - ✅ **来源标记** - 清楚知道结果来自哪个引擎 --- ## 🎯 怎么用?(首选方式,零门槛!) ### ✨ 方式1:统一智能搜索(最推荐!⭐⭐⭐⭐⭐⭐) 自动识别查询语言,智能选择搜索引擎! ```bash # 进入技能目录 cd skills/baidu-search # 中文查询 → 自动用百度 python scripts/unified_search.py "Python 教程" --format # 英文查询 → 自动用 DuckDuckGo python scripts/unified_search.py "Python tutorial" --format # 加密货币 → 自动用 CoinGecko python scripts/unified_search.py "btc价格" --format python scripts/unified_search.py "ETH 价格" --format ``` **一个脚本,搞定所有搜索!** 🚀 --- ### 🧠 方式2:智能 Python 脚本(推荐!⭐⭐⭐⭐) 百度 + Bing + CoinGecko 三保险,还能自动识别加密货币! ```bash # 进入技能目录 cd skills/baidu-search # 普通搜索 python scripts/smart_search.py "Python 教程" --format # 加密货币搜索(自动识别!) python scripts/smart_search.py "btc价格" --format python scripts/smart_search.py "ETH 价格" --format ``` --- ### 🌐 方式3:Playwright 浏览器搜索(最稳定!⭐⭐⭐⭐) 使用 ClawX 内置的 browser 工具,稳定可靠: ```javascript // 1. 启动浏览...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.