china-search

Queries Baidu, Sogou, and Bing China search engines via curl for Chinese web content.

10|10|Updated May 13, 2026
One-click install
npx skills add https://github.com/yuluyangguang1/openclaw-portable --skill china-search-yuluyangguang1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: china-search
Source: https://github.com/yuluyangguang1/openclaw-portable/tree/main/skills-cn/china-search
Command: npx skills add https://github.com/yuluyangguang1/openclaw-portable --skill china-search-yuluyangguang1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When Google is unreachable, you still need a way to search the Chinese internet. This Skill lets the assistant query Baidu, Sogou, and Bing China directly with curl, so you can retrieve Chinese-language information and WeChat official-account articles without leaving your environment. ## Core Features & Use Cases - Multi-engine search: Run queries against Baidu for general Chinese content, Sogou for web and WeChat official-account articles, and Bing China for mixed international and domestic results. - Search syntax guidance: Apply operators like quotes for exact match, site:, filetype:, intitle:, and minus exclusion to build precise queries. - Result structuring: Parse the returned HTML and organize findings into structured, readable summaries. - Use Case: Ask the assistant to search Sogou's Weixin index for recent WeChat articles about "AI Agent", then compare Baidu and Bing China results for a topic like China's 2024 GDP. ## Quick Start Ask the assistant to search Baidu and Bing China for a topic such as "DeepSeek V3 release date and new features" and summarize the results.

Frequently Asked Questions about china-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Baidu from the command line with curl?

Send a GET request to https://www.baidu.com/s?wd=your-keyword with a browser User-Agent header such as Mozilla/5.0. The response is raw HTML, so you need to parse it to extract titles, snippets, and links from the results.

How to search WeChat official account articles online?

Use Sogou's Weixin search at weixin.sogou.com/weixin?query=keyword with a browser User-Agent header. Sogou is the primary channel for indexing WeChat official-account articles, which Baidu and Bing do not cover well.

Baidu vs Bing China vs Sogou for Chinese search?

Baidu has the most comprehensive Chinese web index, Sogou is best for WeChat official-account articles, and Bing China offers looser content filtering plus some international coverage. Comparing results across engines gives a fuller picture.

Why does Baidu block my curl search requests?

Baidu has anti-scraping mechanisms that intercept frequent or bot-like requests. Always include a realistic User-Agent header, space out requests, and avoid high-volume crawling, which can trigger rate limits or CAPTCHAs.

What are the limitations of curl-based search engine scraping?

Curl returns raw HTML that must be parsed manually, result links often require a second redirect to reach the real URL, and engines impose anti-bot limits. It is unsuitable for real-time trending data or large-scale result harvesting.