Install
openclaw skills install zhsearchChinese search enhancement: search Baidu, Zhihu, and WeChat articles. Returns AI-optimized structured results in Chinese. Paid skill (0.001 USDT/call via Ski...
openclaw skills install zhsearchSearch 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.
node {baseDir}/search.mjs "人工智能最新进展"
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
node {baseDir}/search.mjs "ChatGPT" -n 10
node {baseDir}/search.mjs "深度学习" -s baidu,zhihu -n 3
-s, --sources <sources>: Comma-separated sources — baidu, zhihu, wechat (default: all three)-n, --limit <count>: Results per source, 1-20 (default: 5)--no-billing: Skip billing check (local testing only, do not use in production)| 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 |
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": "..." }
]
}
}
web_search tool returns poor results for Chinese queriesThis 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.
No configuration needed. Billing is handled automatically by the skill publisher via SkillPay. Just install and use.