← Back to Skills Marketplace
357
Downloads
1
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install zh-search-pro
Description
中文搜索增强工具,整合百度、必应、微信、知乎等中文搜索引擎,支持高级搜索语法和时间过滤。
README (SKILL.md)
中文搜索增强工具 v1.0.0
整合多个中文搜索引擎,无需 API 密钥即可进行中文内容搜索。
支持的搜索引擎
中文搜索引擎 (6)
- 百度:
https://www.baidu.com/s?wd={keyword} - 必应中国:
https://cn.bing.com/search?q={keyword} - 微信搜索:
https://weixin.sogou.com/weixin?type=2&query={keyword} - 知乎:
https://www.zhihu.com/search?q={keyword}&type=content - 今日头条:
https://so.toutiao.com/search?keyword={keyword} - 360 搜索:
https://www.so.com/s?q={keyword}
国际搜索引擎 (3)
- DuckDuckGo:
https://duckduckgo.com/html/?q={keyword} - Google HK:
https://www.google.com.hk/search?q={keyword} - Startpage:
https://www.startpage.com/sp/search?query={keyword}
快速使用示例
// 基础搜索
web_fetch({"url": "https://www.baidu.com/s?wd=Python 教程"})
// 站内搜索
web_fetch({"url": "https://www.baidu.com/s?wd=site:zhihu.com+AI 学习"})
// 时间过滤(最新内容)
web_fetch({"url": "https://cn.bing.com/search?q=AI 新闻&filters=ex1%3a%22last7%22"})
// 微信文章搜索
web_fetch({"url": "https://weixin.sogou.com/weixin?type=2&query=自媒体 运营"})
// 知乎内容搜索
web_fetch({"url": "https://www.zhihu.com/search?q=如何学习编程&type=content"})
高级搜索语法
百度高级语法
| 语法 | 示例 | 说明 |
|---|---|---|
site: |
site:zhihu.com AI |
站内搜索 |
intitle: |
intitle:教程 Python |
标题包含 |
inurl: |
inurl:blog |
URL 包含 |
filetype: |
filetype:pdf 报告 |
文件类型 |
"" |
"机器学习" |
精确匹配 |
- |
Python -snake |
排除关键词 |
必应高级语法
| 语法 | 示例 | 说明 |
|---|---|---|
site: |
site:github.com |
站内搜索 |
language: |
language:zh-CN |
语言过滤 |
loc: |
loc:CN |
地区过滤 |
hasfeed: |
hasfeed:新闻 |
包含 RSS |
时间过滤参数
必应时间过滤
- 过去 24 小时:
&filters=ex1%3a%22last24%22 - 过去 7 天:
&filters=ex1%3a%22last7%22 - 过去 30 天:
&filters=ex1%3a%22last30%22 - 过去一年:
&filters=ex1%3a%22lasty%22
百度时间过滤
- 一天内:
&cl=24 - 一周内:
&cl=7 - 一月内:
&cl=30 - 一年内:
&cl=365
使用场景
- 市场调研 - 搜索行业报告、竞品分析
- 内容创作 - 查找素材、热点话题
- 学术研究 - 搜索论文、专业资料
- 舆情监控 - 追踪品牌/产品讨论
- SEO 研究 - 分析关键词排名
注意事项
- 部分搜索引擎有反爬机制,可能需要重试
- 微信搜索需要处理验证码
- 建议配合
web_search工具使用(如果有 API 密钥)
相关文件
CHANGELOG.md- 版本历史examples/- 使用示例
许可证
MIT-0 - 自由使用、修改和分发
Usage Guidance
This skill is coherent and lightweight: it just builds search URLs and calls web_fetch. Before installing, verify what the web_fetch tool actually does (where requests are sent from, whether it proxies through a third party, its logging/retention policies). Avoid issuing queries containing sensitive personal or credential data (those will be sent to external search engines). Expect captchas/rate-limiting from some engines; consider rate limits and retry behavior. If you need more privacy or higher reliability, prefer an authenticated web_search API with explicit credentials and review its permissions. If you are unsure about web_fetch, test the skill in an isolated environment first.
Capability Analysis
Type: OpenClaw Skill
Name: zh-search-pro
Version: 1.0.0
The zh-search-pro skill bundle is a collection of search URL templates and instructions designed to help an AI agent perform searches across various Chinese platforms (Baidu, WeChat, Zhihu, etc.) using the web_fetch capability. The files (SKILL.md, config.json, and examples) contain no executable code, obfuscation, or instructions that suggest data exfiltration or malicious intent. The behavior is entirely consistent with the stated purpose of a search enhancement tool.
Capability Assessment
Purpose & Capability
Name/description claim to aggregate Chinese search engines and the skill only requires the web_fetch binary to construct and fetch search URLs — this is proportionate and expected.
Instruction Scope
SKILL.md contains only URL templates, usage examples, and web_fetch calls to public search endpoints; it does not instruct reading local files, environment secrets, or transmitting data to unexpected endpoints.
Install Mechanism
No install spec or downloaded code — instruction-only skill; nothing is written to disk and no external packages are pulled in by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The absence of secrets is consistent with the public-web-fetch use case.
Persistence & Privilege
always is false and there is no request to modify other skills or global agent settings. The skill can be invoked autonomously by the agent (platform default), which is expected for such utilities.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install zh-search-pro - After installation, invoke the skill by name or use
/zh-search-pro - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- 首次发布 zh-search-pro v1.0.0。
- 集成百度、必应中国、微信、知乎、今日头条、360搜索等六大中文搜索引擎及 Google HK、DuckDuckGo、Startpage 三大国际引擎。
- 支持高级搜索语法(如 site、intitle、filetype 等)与时间过滤参数。
- 无需 API 密钥即可搜索中文内容。
- 提供典型用法示例及常见使用场景说明。
Metadata
Frequently Asked Questions
What is 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。?
中文搜索增强工具,整合百度、必应、微信、知乎等中文搜索引擎,支持高级搜索语法和时间过滤。 It is an AI Agent Skill for Claude Code / OpenClaw, with 357 downloads so far.
How do I install 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。?
Run "/install zh-search-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。 free?
Yes, 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。 support?
中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 中文搜索增强工具,整合百度、必应、微信、知乎等 6 个中文搜索引擎,支持高级搜索语法和时间过滤,无需 API 密钥。?
It is built and maintained by careytian (@careytian-ai); the current version is v1.0.0.
More Skills