Free Baidu Search

v1.0.0

Free Baidu web search, no API key required, supports time range filtering

0· 86·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for guoxh/baidu-search-free.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Free Baidu Search" (guoxh/baidu-search-free) from ClawHub.
Skill page: https://clawhub.ai/guoxh/baidu-search-free
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install baidu-search-free

ClawHub CLI

Package manager switcher

npx clawhub@latest install baidu-search-free
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (free Baidu web search) aligns with the included Python script which scrapes baidu.com and supports time-range filtering and result count. Requiring python3 is appropriate. There are no unrelated credential or config requests.
Instruction Scope
SKILL.md tells the agent to run the provided Python script with a JSON arg; the script only performs HTTP requests to Baidu and resolves Baidu redirect links (may follow HEAD redirects to obtain the real URL). It does not read local files or environment variables. One operational note: resolving redirects can cause the agent to make additional network requests to third-party destinations (the real target URLs), which will expose the agent's network identity to those sites — expected behavior for a scrapper but worth being aware of.
Install Mechanism
No install spec (instruction-only) and no network downloads — low install risk. Minor inconsistency: package.json is present (Node metadata) while the tool is Python; also Python runtime dependencies (requests, bs4/beautifulsoup4) are used but not declared in SKILL.md or a requirements file.
Credentials
The skill requests no environment variables or credentials, which is appropriate. It does require network access to baidu.com (and to resolved target URLs). Nothing in the skill asks for unrelated secrets or wide system access.
Persistence & Privilege
always is false and the skill does not request persistent system-wide changes. The script's shebang contains an absolute path to a local virtualenv (/home/guoxh/...), which appears to be a leftover and does not grant privileges — the script will run when invoked with the python binary on PATH.
Assessment
This skill is coherent with its stated purpose but review these points before installing: (1) ensure you are comfortable with the agent making outbound HTTP requests to baidu.com and to any real URLs the scraper resolves (those third-party sites will see your agent's network identity); (2) the script depends on Python packages (requests, beautifulsoup4) that are not declared — install them in the environment before use; (3) package.json is present but irrelevant (this is a Python script); (4) scraping may violate site terms of service or local law — use responsibly. If you need stronger assurance, open the script yourself and confirm there are no additional network callbacks or logging endpoints beyond standard requests to Baidu and resolved target URLs.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔍 Clawdis
Binspython3
latestvk97903mm3g9wsk0186d3q18jth84y0qd
86downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Baidu Search (Free)

Free Baidu web search tool, no API key or authentication required, ready to use out of box.

Features

✅ No API key required, completely free ✅ Supports Chinese/English search queries ✅ Time range filtering: 1 day/1 week/1 month/1 year/custom date range ✅ Customizable result count (up to 50 results) ✅ Automatic anti-scraping handling with retry mechanism ✅ Returns title, snippet, real URL, and publish time

Usage

python scripts/search.py '{"query": "your search keywords", "count": 10, "freshness": "pd/pw/pm/py/YYYY-MM-DDtoYYYY-MM-DD"}'

Parameters

ParameterTypeRequiredDefaultDescription
querystringyes-Search keywords
countintno10Number of results to return, max 50
freshnessstringnonullTime range filter: pd(past 24h), pw(past week), pm(past month), py(past year), or custom date range in format YYYY-MM-DDtoYYYY-MM-DD

Example

python scripts/search.py '{"query": "Linzhi Tibet travel guide", "count": 3, "freshness": "pm"}'

Comments

Loading comments...