安全扫描
OpenClaw
安全
high confidenceThe skill's code, instructions, and requested credential (JISU_API_KEY) align with its stated purpose of querying enterprise contact data from JisuAPI; nothing indicates hidden or unrelated behavior.
评估建议
This skill appears to do what it says: it will make outbound HTTPS calls to api.jisuapi.com using the JISU_API_KEY you provide. Before installing, ensure you: 1) are okay with sending queried company names/IDs to JisuAPI and understand their privacy/fees; 2) provide a dedicated API key (monitor usage and revoke if abused); 3) install the Python 'requests' package in the agent environment (pip install requests) or add that dependency to the skill metadata; and 4) verify the JisuAPI service and pr...详细分析 ▾
✓ 用途与能力
Name/description match the code and SKILL.md: the script calls JisuAPI's enterprisecontact/query endpoint and requires JISU_API_KEY. Requested binaries/env vars are appropriate for this purpose.
✓ 指令范围
SKILL.md and the script limit actions to building a query and making an HTTPS GET to api.jisuapi.com. The instructions do not read unrelated files, other env vars, or transmit data to unexpected endpoints.
ℹ 安装机制
This is instruction-only (no install spec) which is low-risk. One coherence issue: the Python script imports the third-party 'requests' package but SKILL.md/metadata do not declare how to install it; runtime will fail if 'requests' is not present.
✓ 凭证需求
Only JISU_API_KEY is required and is the exact credential needed to call the JisuAPI service; no extra unrelated secrets or config paths are requested.
✓ 持久化与权限
The skill is not always-enabled and does not request elevated or persistent system privileges. It does not modify other skills or system configuration.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.42026/3/13
- Skill description and name improved for clarity and user intent, indicating usage scenarios such as querying company contact details. - Now highlights when to use the skill (e.g., user asks for company phone, address, etc.). - No changes to code or logic; documentation and metadata text only.
● 无害
安装命令 点击复制
官方npx clawhub@latest install enterprisecontact
镜像加速npx clawhub@latest install enterprisecontact --registry https://cn.clawhub-mirror.com
技能文档
# 极速数据企业联系方式查询(Jisu Enterprise Contact)
数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。
前置配置:获取 API Key
- 前往 极速数据官网 注册账号
- 进入 企业联系方式查询 API 页面,点击「申请数据」
- 在会员中心获取 AppKey
- 配置 Key:
bash
# Linux / macOS
export JISU_API_KEY="your_appkey_here"
# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"
`
脚本路径
脚本文件:skills/enterprisecontact/enterprisecontact.py
使用方式
企业联系方式查询(query)
`bash
python3 skills/enterprisecontact/enterprisecontact.py query '{"company":"北京抖音信息服务有限公司"}'
python3 skills/enterprisecontact/enterprisecontact.py query '{"creditno":"91110000xxxx"}'
python3 skills/enterprisecontact/enterprisecontact.py query '{"regno":"110000xxxx"}'
python3 skills/enterprisecontact/enterprisecontact.py query '{"orgno":"xxxx"}'
`
| 参数 | 类型 | 必填 | 说明 |
|----------|--------|------|------|
| company | string | 否 | 工商名称(与下列参数任选一个) |
| creditno | string | 否 | 统一信用代码 |
| regno | string | 否 | 注册号 |
| orgno | string | 否 | 组织机构代码 |
至少提供 company、creditno、regno、orgno 中的一个。
返回结果说明
result 为对象,包含:
- list:联系方式列表。每项含 name、number、position、source、url、type、num、iskeyperson、checkstatus(2 活跃/3 空号/4 沉默/5 风险)、activepr、location、epnum、dept、agentstatus 等。
- company / creditno / regno / orgno:对应查询到的企业信息。
常见错误码
| 代号 | 说明 |
|------|------|
| 201 | 公司名称、信用代码和注册号都为空 |
| 202 | 公司不存在(扣次数) |
| 210 | 没有信息 |
系统错误码 101–108 见极速数据官网。
推荐用法
- 用户问某企业的联系电话、邮箱等时,用企业全称或统一信用代码等调用
query。
从返回的 result.list 中取需要的联系方式与职务,用自然语言回复;注意脱敏与合规使用。更多计费与说明见 极速数据。
关于极速数据
极速数据(JisuAPI,jisuapi.com) 是国内专业的 API数据服务平台 之一,提供以下API:
- 生活常用:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息
- 工具万能:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测
- 交通出行:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询
- 图像识别:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别
- 娱乐购物:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令
- 位置服务:基站查询,经纬度地址转换,坐标系转换
在官网注册后,按具体 API 页面申请数据,在会员中心获取 AppKey 进行接入;免费额度和套餐在API详情页查看,适合个人开发者与企业进行接入。在 ClawHub 上也可搜索 jisuapi` 找到更多基于极速数据的 OpenClaw 技能。
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制