← 返回 Skills 市场
118
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install cstcloud-web-search
功能描述
使用中国科技云(CSTCloud)Web Search API 进行网络搜索。无需 Brave/Perplexity 等国外 API key,适合国内用户,直接通过"帮我搜 xxx"调用。
使用说明 (SKILL.md)
CSTCloud Web Search
基于中国科技云(Uni-API)Web Search API 的网络搜索技能。适合 OpenClaw AI 助手使用,直接说"帮我搜 xxx"即可触发。
功能特性
- 🔍 基于中国科技云搜索服务,国内访问稳定
- 🌐 无需国外 API key,适合国内用户
- 📊 返回标题、URL、来源、摘要
- ⚡ 配置简单,一个环境变量即可
安装
# 通过 ClawHub 安装(推荐)
npx clawhub install cstcloud-web-search
# 或手动安装到 ~/.openclaw/workspace/skills/
配置
1. 设置环境变量
编辑 ~/.openclaw/.env 文件,添加:
CSTCLOUD_API_KEY=你的API密钥
或通过命令行:
export CSTCLOUD_API_KEY=你的API密钥
2. 重启 OpenClaw Gateway
openclaw gateway restart
使用方法
在 OpenClaw 对话中直接说:
帮我搜一下 xxx
或通过命令行直接调用:
# 默认 5 条结果
cstcloud-web-search "搜索关键词"
# 指定结果数量(最多 10 条)
cstcloud-web-search "搜索关键词" 10
API 信息
- Base URL:
https://uni-api.cstcloud.cn - Endpoint:
POST /v1/web-search - 认证方式: Bearer Token
- 模型名:
web-search
结果示例
找到 10 条结果(显示前 3 条):
1. OpenClaw 进入"日更级"狂飙模式:刚刚、2026.3.12 版本发布
URL: https://www.163.com/dy/article/KNUJILQP0511D6RL.html
来源: 网易
摘要: 刚刚,OpenClaw发布了2026.3.12版本...
2. OpenClaw推出新版本 89项更新重磅来袭
URL: https://news.china.com/socialgd/10000169/20260310/49307835.html
来源: 中华网新闻频道
摘要: OpenClaw推出新版本...
=== 搜索完成 ===
参考与致谢
本 skill 参考了以下项目:
- bailian-web-search(OpenClaw 官方 Skills)
改动说明:
- bailian-web-search 使用阿里云 MCP 协议(Streamable HTTP + JSON-RPC),需要 4 个请求才能完成一次搜索
- 本 skill 改为直接调用 CSTCloud REST API,一个请求即可完成搜索,逻辑更简单直接
- API 格式、认证方式、返回结构均基于 CSTCloud Uni-API 文档实现
License
MIT-0
安全使用建议
This skill appears coherent and limited to querying CSTCloud's web-search API. Before installing: (1) Verify you trust the CSTCloud endpoint (https://uni-api.cstcloud.cn) and the publisher (check the linked GitHub repo and homepage); (2) Keep your CSTCLOUD_API_KEY secret — the key will be sent to the declared API host as a Bearer token; (3) If you install via third-party tools (npx clawhub), review those tools' behavior; (4) Note a minor metadata mismatch (included _meta.json differs in owner/version from registry metadata) — this is likely benign but you may want to confirm the published package/version on the repository prior to use.
功能分析
Type: OpenClaw Skill
Name: cstcloud-web-search
Version: 1.0.2
The skill is a legitimate implementation of a web search tool using the CSTCloud API. The shell script (scripts/cstcloud-web-search.sh) correctly uses jq to sanitize user input and prevent injection, and it only communicates with the documented API endpoint (uni-api.cstcloud.cn). No malicious behaviors such as data exfiltration, persistence, or unauthorized execution were found.
能力评估
Purpose & Capability
Name/description say it uses CSTCloud Web Search and the packaged script and SKILL.md only require curl/jq/bash and CSTCLOUD_API_KEY — all of which are appropriate and expected for a simple REST API client.
Instruction Scope
SKILL.md and the shell script limit actions to forming a POST to the declared endpoint, validating JSON, and printing results. The instructions do not read unrelated files or environment variables, nor do they exfiltrate data to unknown endpoints.
Install Mechanism
This is instruction-only (no install spec). The included shell script is benign and uses standard curl/jq. No remote downloads or archive extraction are performed by the skill itself.
Credentials
The skill requires a single API key (CSTCLOUD_API_KEY) which is used only to set the Bearer Authorization header for requests to the declared CSTCloud endpoint. No unrelated credentials or config paths are requested.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system-wide settings. It only expects the user to set an environment variable and optionally install the script.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cstcloud-web-search - 安装完成后,直接呼叫该 Skill 的名称或使用
/cstcloud-web-search触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
更新 README:补充参考来源 bailian-web-search、说明改动内容、完善配置说明
v1.0.1
修正 API Key 获取说明,不再描述为公开注册获取;明确该 Key 为内部授权使用
v1.0.0
cstcloud-web-search v1.0.0
- Initial release of a web search skill using CSTCloud (中国科技云) Web Search API.
- No need for overseas API keys; designed for stable access within China.
- Returns results with title, URL, source, and summary.
- Easy setup with a single CSTCLOUD_API_KEY environment variable.
- Usable by both OpenClaw dialogue and command line.
元数据
常见问题
Cstcloud Web Search 是什么?
使用中国科技云(CSTCloud)Web Search API 进行网络搜索。无需 Brave/Perplexity 等国外 API key,适合国内用户,直接通过"帮我搜 xxx"调用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 118 次。
如何安装 Cstcloud Web Search?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cstcloud-web-search」即可一键安装,无需额外配置。
Cstcloud Web Search 是免费的吗?
是的,Cstcloud Web Search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Cstcloud Web Search 支持哪些平台?
Cstcloud Web Search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Cstcloud Web Search?
由 shcw0405(@shcw0405)开发并维护,当前版本 v1.0.2。
推荐 Skills