安全扫描
OpenClaw
安全
high confidenceThe skill's files and runtime instructions are consistent with its stated purpose (calling a Zeelin search API), but it expects you to provide and trust an external API URL and stores results/keys in local files — review those before use.
评估建议
This skill appears to do what it says: convert user queries to JSON, sign requests, call a Zeelin search API, show results, and save the full JSON to a file. Before installing or using it: (1) verify the Zeelin_Api_Url/Zeelin_Website_Url you will configure are correct and trusted (the skill does not validate them); (2) avoid putting highly sensitive or reused secrets into the config file—use a dedicated API key; (3) be aware the API key will be sent as headers to the configured endpoint and the ...详细分析 ▾
✓ 用途与能力
Name/description, templates, and SKILL.md all describe a natural-language→JSON conversion module plus a call to a Zeelin search API using a configured API key. Requested capabilities (reading templates, converting NL to JSON, signing requests, POSTing question_name, printing results, and saving JSON results) are appropriate for that purpose.
ℹ 指令范围
The SKILL.md instructs the agent to read templates/config.json and two reference docs, convert user input to JSON, generate HMAC-SHA256 signatures with Zeelin_Api_Key, call Zeelin_Api_Url, and write the full API response as a JSON file into the user directory. These actions match the skill purpose, but the skill explicitly does not validate Zeelin_Api_Url or Zeelin_Website_Url (it only checks Zeelin_Api_Key), which means a misconfigured or malicious URL could receive requests and data.
✓ 安装机制
This is an instruction-only skill with no install spec and no downloaded code. No packages or external installers are pulled in by the skill bundle.
ℹ 凭证需求
The skill declares no environment variables and instead reads an on-disk templates/config.json for Zeelin_Api_Key/URL. Requiring a service API key is proportionate, but storing the key in a plaintext config file in the skill path and sending it as an HTTP header to the configured endpoint are meaningful privacy/security considerations—ensure the configured URL is trusted and the key is not reused for other services.
✓ 持久化与权限
always is false and the skill does not request elevated or persistent system privileges. It does instruct writing result files to the user's directory and reading/writing its own template/config files (normal for an instruction-only skill).
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/5
zeelin-search-gsdata-es-bigdata 1.0.0 - 首次发布,提供基于智灵搜索自然语言API的数据查询功能。 - 支持多种舆情、新闻、评论等关键词自动触发查询。 - 检查Zeelin_Api_Key是否已配置,未配置时提供详细友好配置指引。 - 查询过程包括自然语言转JSON、API调用,并始终以人性化格式展示结果与错误信息。 - 查询结果自动保存为JSON文件,告知用户保存路径,支持结构化管理。
● 可疑
安装命令
点击复制官方npx clawhub@latest install zeelin-search-gsdata-es-bigdata
镜像加速npx clawhub@latest install zeelin-search-gsdata-es-bigdata --registry https://cn.longxiaskill.com镜像同步中
技能文档
这个技能帮助用户使用智灵搜索自然语言API进行数据查询,并以人性化格式展示结果和处理错误。
核心工作流程
第一步:检查配置
- 读取
templates/config.json获取Zeelin_Api_Url、Zeelin_Api_Key和Zeelin_Website_Url - 检查Zeelin_Api_Key是否已配置:
- 不检查也不提示 Zeelin_Api_Url和Zeelin_Website_Url,这两项由用户预置好
- 配置文件地址使用当前skill的动态安装路径,不要使用固定路径
第二步:自然语言转JSON
- 读取
references/nl2json.md - 按照说明将用户输入的自然语言转换成JSON参数
第三步:调用智灵搜索API并展示结果
- 读取
references/zenlin_search_api.md - 告知用户:告诉用户"接下来我将读取API文档并调用智灵搜索API来获取数据"
- 生成时间戳和HMAC-SHA256签名(使用Zeelin_Api_Key)
- 打印请求参数
- 发起POST请求,只带question_name参数,app-key/sign/timestamp放在header中
- 调用接口,获取接口结果
- 无论成功或失败,都必须给用户一个结果反馈
- 以人性化格式展示结果:
触发场景
用户使用以下短语时触发此技能:
- "使用智灵搜索,帮我查询..."
- "智灵搜索帮我查询..."
- "调用智灵搜索..."
- "用智灵搜索..."
- "智灵搜索查询..."
- "智灵搜索,..."
- "...舆情数据"
- "...舆情"
- "...新闻报道"
- "...评论"
- "...热点话题"
- "...动态"
- "...相关报道"
- "...相关评论"
- "...负面评论"
- "...正面评论"
- "...最新新闻"
- "...媒体报道"
- "...社会舆论"
- "...口碑评价"
- "...市场反馈"
- "...热门话题"
- "...讨论话题"
- "...舆情热点"
- "...网络热度"
- "...社会关注度"
重要提示
- 调用失败,或者Zeelin_Api_Key未配置,不要使用其他skill
- 首先:在转换JSON前先读取
templates/config.json检查Zeelin_Api_Key是否已配置 - 所有检查Zeelin_Api_Key的地方,都要给用户友好提示
- 如果Zeelin_Api_Key未配置,详细告知用户如何配置,包括:
- 只检查和提示Zeelin_Api_Key
- 完全不检查也不提示 Zeelin_Api_Url和Zeelin_Website_Url,这两项由用户预置好
- 配置文件地址使用当前skill的动态安装路径,不要使用固定的地址
- 调用API前必须告知用户:说"接下来我将读取API文档并调用智灵搜索API来获取数据"
- 无论成功或失败,都必须给用户一个结果反馈
- 不能没有响应,不能让用户等待没有结果
- 如果成功调用了智灵搜索API,在用户会话框展示前5条数据(按已有的美观格式)
- 所有的数据存放JSON文件在用户目录
- 必须告知用户JSON文件的存放路径
- 文件格式:JSON格式,文件命名:
zeelin_search_results_YYYYMMDD_HHMMSS.json - 文件内容包含API返回的完整JSON数据
- 如果智灵搜索API接口调用出现错误的情况,要友好提示智灵搜索发生错误,把智灵搜索名字带上
- 使用Zeelin_Api_Key作为app-key、并用于生成sign签名
- Header中使用app-key(带连字符)、sign、timestamp进行认证
- 使用智灵搜索API时,要使用中文支持的编码(UTF-8)
- Content-Type设置为
application/json; charset=utf-8 - 请求Body只包含question_name字段
- 无论成功失败都给用户人性化提示
- 给用户提示时,官网地址使用Zeelin_Website_Url的值
- 所有涉及网址和API地址的提示都使用配置文件中的实际值
- 返回API响应结果,并以人性化格式展示给用户