← Back to Skills Marketplace
420
Downloads
10
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install enterprisecontact
Description
按名称、统一社会信用代码等查企业地址、电话、邮箱与网站等联系方式。当用户说:这家公司的联系电话是多少?总部地址在哪?或类似企业联系方式问题时,使用本技能。
README (SKILL.md)
\r \r
极速数据企业联系方式查询(Jisu Enterprise Contact)\r
\r
数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r
前置配置:获取 API Key\r
\r
- 前往 极速数据官网 注册账号\r
- 进入 企业联系方式查询 API 页面,点击「申请数据」\r
- 在会员中心获取 AppKey\r
- 配置 Key:\r \r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/enterprisecontact/enterprisecontact.py`\r
\r
## 使用方式\r
\r
### 企业联系方式查询(query)\r
\r
```bash\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"company":"北京抖音信息服务有限公司"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"creditno":"91110000xxxx"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"regno":"110000xxxx"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"orgno":"xxxx"}'\r
```\r
\r
| 参数 | 类型 | 必填 | 说明 |\r
|----------|--------|------|------|\r
| company | string | 否 | 工商名称(与下列参数任选一个) |\r
| creditno | string | 否 | 统一信用代码 |\r
| regno | string | 否 | 注册号 |\r
| orgno | string | 否 | 组织机构代码 |\r
\r
至少提供 `company`、`creditno`、`regno`、`orgno` 中的一个。\r
\r
## 返回结果说明\r
\r
`result` 为对象,包含:\r
\r
- **list**:联系方式列表。每项含 name、number、position、source、url、type、num、iskeyperson、checkstatus(2 活跃/3 空号/4 沉默/5 风险)、activepr、location、epnum、dept、agentstatus 等。\r
- **company** / **creditno** / **regno** / **orgno**:对应查询到的企业信息。\r
\r
## 常见错误码\r
\r
| 代号 | 说明 |\r
|------|------|\r
| 201 | 公司名称、信用代码和注册号都为空 |\r
| 202 | 公司不存在(扣次数) |\r
| 210 | 没有信息 |\r
\r
系统错误码 101–108 见极速数据官网。\r
\r
## 推荐用法\r
\r
1. 用户问某企业的联系电话、邮箱等时,用企业全称或统一信用代码等调用 `query`。\r
2. 从返回的 `result.list` 中取需要的联系方式与职务,用自然语言回复;注意脱敏与合规使用。更多计费与说明见 [极速数据](https://www.jisuapi.com/)。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息 \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测 \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询 \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别 \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令 \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换 \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
Usage Guidance
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 pricing/terms if you plan to use it in production.
Capability Analysis
Type: OpenClaw Skill
Name: enterprisecontact
Version: 1.0.4
The skill is a straightforward implementation for querying enterprise contact information via the JisuAPI service. The Python script (enterprisecontact.py) correctly handles environment variables for the API key and performs standard HTTP GET requests to a legitimate endpoint (api.jisuapi.com) without any signs of malicious execution, data exfiltration, or obfuscation.
Capability Assessment
Purpose & Capability
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.
Instruction Scope
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.
Install Mechanism
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.
Credentials
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.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent system privileges. It does not modify other skills or system configuration.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install enterprisecontact - After installation, invoke the skill by name or use
/enterprisecontact - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
- 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.
v1.0.3
- 补充了关于极速数据(JisuAPI)平台的详细介绍与能力说明
- 更新与细化了API Key申请和配置的前置步骤说明
- 将推荐用法细化为“推荐用法”小节
- 增加了极速数据支持的API类型列表和平台简介
- 文档内容调整,更突出数据源和使用指引,便于新用户理解
v1.0.2
- No file changes detected in this version.
- No updates or modifications to skill code or documentation.
v1.0.1
- Updated script path in documentation from skill/enterprisecontact/enterprisecontact.py to skills/enterprisecontact/enterprisecontact.py.
- No code or feature changes; documentation update only.
v1.0.0
- Initial release of the enterprisecontact skill.
- Supports querying enterprise contact details (address, phone, email, website, etc.) by company name, credit code, registration number, or organization code using the Jisu API.
- Includes a command-line interface for queries and detailed documentation in SKILL.md.
- Requires JISU_API_KEY environment variable for authentication.
Metadata
Frequently Asked Questions
What is Enterprise Contact Information Query - 企业联系方式查询?
按名称、统一社会信用代码等查企业地址、电话、邮箱与网站等联系方式。当用户说:这家公司的联系电话是多少?总部地址在哪?或类似企业联系方式问题时,使用本技能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 420 downloads so far.
How do I install Enterprise Contact Information Query - 企业联系方式查询?
Run "/install enterprisecontact" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Enterprise Contact Information Query - 企业联系方式查询 free?
Yes, Enterprise Contact Information Query - 企业联系方式查询 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Enterprise Contact Information Query - 企业联系方式查询 support?
Enterprise Contact Information Query - 企业联系方式查询 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Enterprise Contact Information Query - 企业联系方式查询?
It is built and maintained by 极速数据 (@jisuapi); the current version is v1.0.4.
More Skills