小宿智能搜索
/install xiaosu-search
小宿智能搜索 V2
Web search API for real-time internet information retrieval.
Setup (Required)
Set these environment variables before using this skill:
export XIAOSU_AK="\x3Cyour-access-key>"
export XIAOSU_ENDPOINT="\x3Cyour-endpoint-path>"
Get your credentials at: https://www.xiaosuai.com (小宿智能搜索)
You can add them to your shell profile (~/.bashrc / ~/.zshrc) or OpenClaw's .env file.
Quick Usage
Run the search script directly:
python3 ~/.openclaw/skills/xiaosu-search/scripts/xiaosu_search.py "\x3Cquery>" \
--ak $XIAOSU_AK --endpoint $XIAOSU_ENDPOINT [options]
Common Patterns
# Basic search
python3 scripts/xiaosu_search.py "宁德时代" --ak $AK --endpoint $EP
# Recent news (last 24h)
python3 scripts/xiaosu_search.py "CATL battery" --freshness Day --ak $AK --endpoint $EP
# With full content extraction (for deep reading)
python3 scripts/xiaosu_search.py "储能行业趋势" --content --content-type MARKDOWN --content-timeout 5 --ak $AK --endpoint $EP
# Smart snippets (relevant text fragments)
python3 scripts/xiaosu_search.py "固态电池进展" --main-text --ak $AK --endpoint $EP
# Site-specific search
python3 scripts/xiaosu_search.py "宁德时代" --sites finance.eastmoney.com --ak $AK --endpoint $EP
# Raw JSON output (for programmatic use)
python3 scripts/xiaosu_search.py "query" --json --ak $AK --endpoint $EP
# Pagination
python3 scripts/xiaosu_search.py "query" --count 20 --offset 20 --ak $AK --endpoint $EP
Script Options
| Flag | Description |
|---|---|
--count N |
Results count: 10/20/30/40/50 |
--freshness X |
Time filter: Day, Week, Month |
--offset N |
Pagination offset |
--content |
Enable long-form content extraction |
--content-type T |
TEXT (default), MARKDOWN, HTML |
--content-timeout S |
Content read timeout (max 10s) |
--main-text |
Enable smart snippet extraction |
--sites HOST |
Restrict to site |
--block HOST |
Exclude site |
--no-cache |
Disable 10-min result cache |
--json |
Raw JSON output |
Direct API Usage (curl)
curl -s -G "https://searchapi.xiaosuai.com/search/$XIAOSU_ENDPOINT/smart" \
--data-urlencode "q=\x3Cquery>" \
--data-urlencode "count=10" \
-H "Authorization: Bearer $XIAOSU_AK"
Guidelines
- For news monitoring: use
--freshness Day+--count 20 - For deep research: use
--content --content-type MARKDOWN --content-timeout 5 - For fact-checking: use
--main-textfor relevant fragments without full content overhead - Rate limit: 429 = QPS exceeded, back off and retry
- Results have a
scorefield (0-1) indicating relevance; prioritize high-score results - API reference details: see references/api-docs.md
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install xiaosu-search - After installation, invoke the skill by name or use
/xiaosu-search - Provide required inputs per the skill's parameter spec and get structured output
What is 小宿智能搜索?
Web search via 小宿智能搜索 V2 API (XiaoSu Smart Search). Use when internet search, web lookup, real-time information retrieval, news search, or fact-checking is n... It is an AI Agent Skill for Claude Code / OpenClaw, with 157 downloads so far.
How do I install 小宿智能搜索?
Run "/install xiaosu-search" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 小宿智能搜索 free?
Yes, 小宿智能搜索 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 小宿智能搜索 support?
小宿智能搜索 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 小宿智能搜索?
It is built and maintained by Dr-xiaoming (@dr-xiaoming); the current version is v1.0.2.