Chinese Search Enhancement
by @jinp0830
Chinese search enhancement: search Baidu, Zhihu, and WeChat articles. Returns AI-optimized structured results in Chinese. Paid skill (0.001 USDT/call via Ski...
clawhub install zhsearch📖 About This Skill
name: zhsearch description: "Chinese search enhancement: search Baidu, Zhihu, and WeChat articles. Returns AI-optimized structured results in Chinese. Paid skill (0.001 USDT/call via SkillPay)." version: 1.0.0 metadata: {"openclaw":{"emoji":"🔍","requires":{"bins":["node"]}}}
Chinese Search Enhancement (中文搜索增强)
Search Chinese-language content across Baidu, Zhihu, and WeChat public accounts in a single command. Returns structured, AI-friendly JSON results.
This skill fills the gap left by English-centric search tools (Brave, Perplexity, etc.) that return poor results for Chinese queries.
Usage
Search all sources (default)
node {baseDir}/search.mjs "人工智能最新进展"
Search specific sources
node {baseDir}/search.mjs "新能源汽车" -s baidu
node {baseDir}/search.mjs "React性能优化" -s zhihu
node {baseDir}/search.mjs "大模型应用" -s wechat
node {baseDir}/search.mjs "量子计算" -s baidu,zhihu
Control result count
node {baseDir}/search.mjs "ChatGPT" -n 10
node {baseDir}/search.mjs "深度学习" -s baidu,zhihu -n 3
Options
-s, --sources : Comma-separated sources — baidu, zhihu, wechat (default: all three)-n, --limit : Results per source, 1-20 (default: 5)--no-billing: Skip billing check (local testing only, do not use in production)Sources
| Source | What it searches | Best for |
|--------|-----------------|----------|
| baidu | Baidu web search | General Chinese web content, news, tech articles |
| zhihu | Zhihu Q&A platform | Expert opinions, in-depth discussions, how-to guides |
| wechat | WeChat public account articles via Sogou | Original analysis, industry insights, opinion pieces |
Output Format
Returns JSON with results grouped by source:
{
"query": "人工智能",
"total": 15,
"sources": ["baidu", "zhihu", "wechat"],
"results": {
"baidu": [
{ "title": "...", "snippet": "...", "url": "..." }
],
"zhihu": [
{ "title": "...", "snippet": "...", "url": "..." }
],
"wechat": [
{ "title": "...", "snippet": "...", "url": "...", "account": "...", "date": "..." }
]
}
}
When to use this skill
web_search tool returns poor results for Chinese queriesBilling
This is a paid skill. Each search call costs 0.001 USDT (about 0.007 RMB). If the user's balance is insufficient, the skill returns a payment_url — show it to the user so they can top up.
Setup
No configuration needed. Billing is handled automatically by the skill publisher via SkillPay. Just install and use.
Security & Privacy
💡 Examples
Search all sources (default)
node {baseDir}/search.mjs "人工智能最新进展"
Search specific sources
node {baseDir}/search.mjs "新能源汽车" -s baidu
node {baseDir}/search.mjs "React性能优化" -s zhihu
node {baseDir}/search.mjs "大模型应用" -s wechat
node {baseDir}/search.mjs "量子计算" -s baidu,zhihu
Control result count
node {baseDir}/search.mjs "ChatGPT" -n 10
node {baseDir}/search.mjs "深度学习" -s baidu,zhihu -n 3
⚙️ Configuration
-s, --sources : Comma-separated sources — baidu, zhihu, wechat (default: all three)-n, --limit : Results per source, 1-20 (default: 5)--no-billing: Skip billing check (local testing only, do not use in production)