全网搜
Integrates with the web search API to fetch news and articles from Baidu, Google, or a pre-indexed Elasticsearch database. Use when the user needs to search...
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 41 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
Name/description match the SKILL.md: the skill is an instruction-only adapter to a web-search backend (supports Baidu/Google/ES). It does not request unrelated binaries, system paths, or credentials in the metadata.
Instruction Scope
The runtime instructions tell the agent to POST form data including an API key header to a hard-coded base URL at an IP address (http://1.95.148.209:9003). The instructions do not ask the agent to read local files or unrelated environment variables, but they do instruct transmitting an API key over unencrypted HTTP to an opaque remote service, which raises risk of credential interception and exfiltration.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk by an installer; that minimizes local install risk.
Credentials
The skill requires an API key in the X-Appbuilder-Authorization header according to SKILL.md, but the registry metadata lists no required credentials. That by itself is not a major mismatch (the key can be provided at runtime), however the instructions have you send that key over plain HTTP to an untrusted IP. The skill provides no guidance on how to obtain/rotate/secure the key or any privacy/usage terms for the backend.
Persistence & Privilege
always is false and there is no claim the skill will persist or modify other agent/system settings. The skill does not request elevated or permanent presence.
What to consider before installing
Before installing, consider that this skill forwards your API key and search queries to an opaque remote service at a raw IP address over unencrypted HTTP. That can expose credentials and query contents. Ask the publisher for provenance (domain, who runs the service, privacy/retention policy), insist on HTTPS (TLS), and prefer using a dedicated or short-lived API key for testing. If you cannot confirm the backend operator or require confidentiality, do not use production credentials with this skill. Also consider whether scraping Google via a third-party service complies with legal/terms-of-service requirements for your use case.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
Runtime requirements
🔍 Clawdis
SKILL.md
全网搜索 (Whole Network Search)
This skill guides the agent to call the web search API for retrieving articles and news from multiple sources.
When to Use
Apply this skill when the user:
- Asks to search the web or gather information online
- Needs news articles or references by keyword
- Wants to retrieve content from Baidu, Google, or a local ES index
- Requires real-time web search or pre-indexed warehouse search
API Overview
Endpoint: POST /web_search
Base URL: http://1.95.148.209:9003
Authentication: Required header X-Appbuilder-Authorization with API key
Request
Headers
| Header | Required | Description |
|---|---|---|
| X-Appbuilder-Authorization | Yes | API key for authentication |
| Content-Type | Yes | application/x-www-form-urlencoded (form data) |
Form Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| keyword | string | Yes | - | Search keyword |
| search_source | string | No | baidu_search | Engine: baidu_search, google_search, baidu_search_ai |
| mode | string | No | network | network = live crawl, warehouse = ES index |
| page | int | No | 1 | Page number (starts from 1) |
Parameter Constraints
search_source: One ofbaidu_search,google_search,baidu_search_aimode: One ofnetwork,warehouse- When
mode=warehouse, search is performed against the Elasticsearch index (ignores search_source) - When
mode=network, usesearch_sourceto select Baidu, Google, or Baidu AI search
Response Format
{
"code": 200,
"message": "success",
"references": [
{
"title": "Article title",
"sourceAddress": "https://example.com/article",
"origin": "Source name",
"publishDate": "2025-03-24 12:00:00",
"summary": "Article summary or snippet"
}
]
}
Usage Examples
Example 1: Search Baidu news
POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=人工智能&search_source=baidu_search&mode=network&page=1
Example 2: Search Google news
POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=AI&search_source=google_search&mode=network&page=1
Example 3: Search warehouse (ES index)
POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=机器学习&mode=warehouse&page=1
Example 4: cURL
curl -X POST "http://1.95.148.209:9003/web_search" \
-H "X-Appbuilder-Authorization: <api_key>" \
-d "keyword=科技新闻&search_source=baidu_search&mode=network&page=1"
Error Codes
| Code | Message | Cause |
|---|---|---|
| 401 | X-Appbuilder-Authorization参数缺失 | Missing auth header |
| 402 | ApiKey错误,请申请ApiKey | Invalid API key |
| 400 | search_source参数错误 | Invalid search_source value |
| 400 | mode参数错误 | Invalid mode value |
| 400 | page参数错误 | Invalid page (non-integer or 0) |
Integration Steps
- API base URL:
http://1.95.148.209:9003,获取 API key 后配置 - Determine the desired
search_source(Baidu / Google / Baidu AI) ormode(network / warehouse) - Call
POST /web_searchwith form-encoded parameters - Parse
referencesfrom the response and usetitle,sourceAddress,summaryas needed
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
