← 返回 Skills 市场
339
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install ai-hybrid-search
功能描述
梓享AI双擎搜索平台官方付费技能,通过POST请求调用搜索接口,支持中国区/全球双引擎,返回结构化JSON搜索结果,按调用次数计费。
使用说明 (SKILL.md)
梓享 AI 双擎搜索(付费版)
🔌 平台与接口信息
| 项目 | 地址 / 说明 |
|---|---|
| 平台官网 / 控制台 | https://open.zixiangai.com/ |
| API Key 获取 | https://open.zixiangai.com/dashboard/index.html |
| 搜索接口地址 | https://search.aiserver.cloud/v1/api |
| 请求方式 | POST (JSON) |
| 鉴权方式 | Authorization: Bearer \x3CAPI_KEY> |
| 计费模式 | 按调用次数扣费,中国区 / 全球引擎额度独立统计 |
⚙️ 配置说明
- 在 OpenClaw 后台设置环境变量
ZIXIANGAI_API_KEY,值为梓享 AI 控制台获取的官 方 API Key; - 每次调用自动携带鉴权信息,扣费逻辑由梓享 AI 官方服务统一处理;
- 可通过接口返回的
balance字段实时查看剩余调用次数与账户余额。
📌 使用示例
基础用法(仅传搜索词,使用默认参数)
使用梓享AI双擎搜索,查询:2026年AI行业动态
默认参数:engine=china、max_results=10、无时间过滤、无域名限制
高级用法(自定义全量参数)
使用梓享AI双擎搜索,查询:2026年AI行业动态,引擎:global,返回条数:20,时间过滤:month,指定域名:baidu.com、zhihu.com,排除域名:xxx.com
📋 完整参数说明
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
query |
string | ✅ | — | 搜索词,支持自然语言,建议 ≤500 字符 |
engine |
string | ❌ | china |
引擎类型:china(中国区)/ global(全球) |
max_results |
number | ❌ | 10 |
返回结果条数,范围 1–20 |
time_filter |
string | ❌ | 空 | 时间过滤:day / week / month / year |
include_domains |
array | ❌ | [] |
指定搜索的域名范围,最多 20 个,JSON 数组格式 |
exclude_domains |
array | ❌ | [] |
排除搜索的域名范围,最多 20 个,JSON 数组格式 |
📊 响应示例
{
"code": 0,
"msg": "",
"engine": "china",
"balance": {
"times": { "china": 990, "global": 1000 },
"amount": 100.0
},
"log_id": "LOG202412271234abcdef",
"searchParams": {
"engine": "china",
"query": "2026年AI行业动态",
"max_results": 10,
"time_filter": "",
"include_domains": [],
"exclude_domains": []
},
"data": {
"images": [{ "url": "https://example.com/image.jpg" }],
"results": [
{
"title": "页面标题",
"url": "https://example.com/page",
"content": "页面摘要内容..."
}
]
}
}
返回字段说明:
| 字段 | 说明 |
|---|---|
code |
0 表示成功,非 0 表示错误 |
msg |
错误描述(成功时为空字符串) |
engine |
实际使用的引擎类型 |
balance |
账户剩余调用次数(按引擎分类)及余额 |
log_id |
唯一请求 ID,便于问题排查 |
searchParams |
本次搜索实际使用的参数 |
data.results |
搜索文本结果列表(title / url / content) |
data.images |
搜索图片结果列表 |
⚠️ 注意事项
include_domains/exclude_domains须为合法 JSON 数组,如[]或["baidu.com"];- 中国区(
china)与全球(global)引擎的调用额度独立计费,请按需选择; - API Key 请勿泄露,可在控制台随时重新生成。
安全使用建议
This skill is internally consistent with its stated purpose, but before installing: 1) Verify you trust the provider (https://open.zixiangai.com/) and understand pricing/quotas because calls are billed. 2) Ensure you provision a dedicated API key you can revoke/rotate and avoid reusing high-privilege keys. 3) Note the metadata mismatch: the registry listing omitted the required env var — confirm the platform UI will let you set ZIXIANGAI_API_KEY. 4) Inspect the bundled script (already included) and confirm you are comfortable with it sending your queries and API key to https://search.aiserver.cloud/v1/api. 5) If you need stricter controls, run the skill in an environment with network egress restrictions or monitoring to track external calls and billing impact.
功能分析
Type: OpenClaw Skill
Name: ai-hybrid-search
Version: 1.0.3
The skill facilitates search queries via a third-party API (search.aiserver.cloud) using a provided API key. While the behavior aligns with the stated purpose, the script 'scripts/search.sh' contains a JSON injection vulnerability. It manually constructs a JSON payload using printf and fails to sanitize the 'INCLUDE_DOMAINS' and 'EXCLUDE_DOMAINS' parameters beyond a weak check for square brackets, which could allow an attacker to manipulate the API request structure if the AI agent is prompted with malicious input.
能力评估
Purpose & Capability
Name/description say this is a paid hybrid search connector. The SKILL.md and scripts/search.sh require a ZIXIANGAI_API_KEY and POST to https://search.aiserver.cloud/v1/api, which is consistent with the stated purpose. (Minor metadata mismatch: registry metadata earlier listed no required env vars while SKILL.md declares ZIXIANGAI_API_KEY.)
Instruction Scope
Runtime instructions and the included shell script only build a JSON payload from user args and send it to the declared API with an Authorization header. The script does not read other system files or unrelated environment variables and does not send data to other endpoints.
Install Mechanism
No install spec; this is an instruction-only skill with a bundled script. There are no downloads, package installs, or extraction steps.
Credentials
Only one credential is required (ZIXIANGAI_API_KEY) which is appropriate for a paid API client. The SKILL.md asks the user to set this env var. (Note: top-level registry metadata omitted this env var, creating a documentation inconsistency.)
Persistence & Privilege
always:false and normal user-invocable/autonomous invocation flags. The skill does not request permanent presence or modify other skills/configs.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ai-hybrid-search - 安装完成后,直接呼叫该 Skill 的名称或使用
/ai-hybrid-search触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
【梓享AI双擎搜索 v1.0.3】
1. 修复元数据不匹配:明确声明 ZIXIANGAI_API_KEY 环境变量依赖;
2. 补充来源信息:新增 homepage/repository 字段,指向官方平台;
3. 安全加固:使用 jq 安全构建 JSON,彻底解决注入风险;
4. 优化文档:简化结构,清晰展示参数与安全说明。
v1.0.1
【梓享AI双擎搜索 v1.0.1】
1. 域名说明:https://open.zixiangai.com/ 为控制台(API Key管理),https://search.aiserver.cloud/v1/api 为官方搜索接口,属同一生态;
2. 版本更新:补充脚本用法注释,明确域名分工,文档与脚本完全对齐;
3. 合规性:鉴权逻辑透明,无隐藏行为,付费模式需用户自行配置API Key,计费由官方统一处理。
v1.0.0
梓享AI双擎搜索平台技能上线(付费版)
- 全新集成官方搜索API,支持高精度全网查询。
- 按调用次数计费,需配置 ZIXIANGAI_API_KEY。
- 简易POST接口接入,适配 OpenClaw 平台。
- 自动鉴权与扣费,余额不足时自动提示错误(代码: 402)。
元数据
常见问题
梓享双擎 AI 全网搜索平台(按搜索次数收费) 是什么?
梓享AI双擎搜索平台官方付费技能,通过POST请求调用搜索接口,支持中国区/全球双引擎,返回结构化JSON搜索结果,按调用次数计费。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 339 次。
如何安装 梓享双擎 AI 全网搜索平台(按搜索次数收费)?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-hybrid-search」即可一键安装,无需额外配置。
梓享双擎 AI 全网搜索平台(按搜索次数收费) 是免费的吗?
是的,梓享双擎 AI 全网搜索平台(按搜索次数收费) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
梓享双擎 AI 全网搜索平台(按搜索次数收费) 支持哪些平台?
梓享双擎 AI 全网搜索平台(按搜索次数收费) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 梓享双擎 AI 全网搜索平台(按搜索次数收费)?
由 zixiangai(@tdxian)开发并维护,当前版本 v1.0.3。
推荐 Skills