汽配配件 EPC(电子目录)分解图查询

v1.0.0

通过 17 位 VIN 车架号 与 待查询的配件名称或配件编码, 精准查询对应的EPC 图组信息

0· 123·0 current·0 all-time
byJu Yuan@polaris2013

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for polaris2013/partsepc.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "汽配配件 EPC(电子目录)分解图查询" (polaris2013/partsepc) from ClawHub.
Skill page: https://clawhub.ai/polaris2013/partsepc
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: JZ_API_KEY
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install partsepc

ClawHub CLI

Package manager switcher

npx clawhub@latest install partsepc
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say: query EPC 图组 by 17-character VIN and part name/code. The script posts exactly those fields to the documented endpoint (https://erp.qipeidao.com/jzOpenClaw/getPartsEpcGroup) and requires only JZ_API_KEY and python3, which are proportionate.
Instruction Scope
SKILL.md and the script instruct the agent to run the Python script, read JZ_API_KEY from environment, and supply VIN/part args. The script only sends those values to the declared API and prints the API response. It does not access unrelated files, other env vars, or hidden endpoints.
Install Mechanism
No install spec (instruction-only + one script) — low risk. One mismatch: the Python script imports the 'requests' package but the skill only declares 'python3' as a required binary and does not declare how to ensure Python dependencies are present; the operator must ensure 'requests' is available.
Credentials
Only JZ_API_KEY is required and declared as the primary credential. That aligns with the skill's need to authenticate to the external EPC API; no unrelated credentials or config paths are requested.
Persistence & Privilege
always=false and default invocation settings are used. The skill does not request persistent system-wide privileges or modify other skills' configs.
Assessment
This skill appears to do exactly what it claims: it sends the VIN and part name/code to the listed API and returns the API response. Before installing: 1) Confirm you trust the API operator (erp.qipeidao.com / 积智数据) and that the JZ_API_KEY was issued by them; the skill will transmit VINs and part identifiers to that service (VINs can be sensitive). 2) Ensure the Python environment has the 'requests' package installed (the skill doesn't declare dependency installation). 3) When providing arguments, follow the SKILL.md convention (supply empty '' for missing partName or partCode) — the script expects three argv entries and can raise errors if args are missing. 4) Limit the API key's permissions where possible and rotate it if you stop using the skill.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binspython3
EnvJZ_API_KEY
Primary envJZ_API_KEY
latestvk9773j5gbhnm9a949yj198vc8s83k3pt
123downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

积智数据 查询 配件编码或配件名称 EPC图组接口

基于 [查询 EPC图组 API] 的 OpenClaw 技能,支持:

  • VINS+配件编码或名称 查询 EPC图组:通过 17 位 VIN 车架号 与 待查询的配件名称或配件编码, 精准查询对应的EPC 图组信息

使用技能前需要申请数据,请联系【积智数据】 MOBILE (+86 13916450206/15821282326) ; EMAIL( juyuan@jikugroup.com/jiangzhihui@jikugroup.com) 获取。

后端服务

本技能依赖 查询 EPC图组 服务,接口地址:https://erp.qipeidao.com/jzOpenClaw/getPartsEpcGroup

环境变量配置

# Linux / macOS
export JZ_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JZ_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/partsepc/get_parts_epc.py

使用方式

1. 根据 VIN + 询价配件名称或编码 精准查询 询价配件的EPC图组信息

python3 skills/partsepc/get_parts_epc.py 'LSVAL41Z882104202' '前保险杠皮' '1ZD807221GRU'
##精准 查询 EPC图组信息 请求参数

| 字段名  | 类型   | 必填 | 说明                                           |
|--------|--------|------|------------------------------------------------|
| vin    | string | 是   | 17 位 VIN 车架号                               |
| partsNames | string | 是   | 待查询的配件名称,每个元素为一个字符串。 |
| partsOe | string | 是   | 待un的配件编码,每个元素为一个字符串。 |

 示例:

'LSVAL41Z882104202' '前保险杠皮' '1ZD807221GRU'


##精准 查询 EPC图组信息 返回结果示例

脚本直接输出接口 `model` 字段,结构与示例一致(示例简化):

```json
  [
    {
      "id": 16367130,
      "groupCode": "807-000",
      "groupDesc": "前",
      "groupNo": null,
      "serialNo": null,
      "groupName": "保险杠",
      "groupUrl": "//pic.qipeipu.com/npic/volkswagen/ca00c4cb2503ec40d03d8b9b19c5778c.png",
      "hasNext": null,
      "vinAvailable": 1,
      "highlightValue": "1ZD807221GRU",
      "highlightFieldName": "partsCode"
    }
  ]

当出现错误(如 VIN 不正确或无数据),脚本会输出:

{
  "error": "api_error",
  "state": 202,
  "msg": "VIN不正确"
}

常见错误码

代号说明
10001参数错误
10004VIN 不正确或无数据

在 OpenClaw 中的推荐用法

  1. 用户给出车架号和待查询的配件名称或编码:「帮我查一下 VIN LSVAL41Z882104202 询价配件名称: 前保险杠皮 的EPC图组信息 」或 「帮我查一下 VIN LSVAL41Z882104202 询价配件编码: 1ZD807221GRU 的EPC图组信息 」oO
  2. 调用方式1 VIN+配件名称+配件编码python3 skills/partsepc/get_parts_epc.py 'LSVAL41Z882104202' '前保险杠皮' '1ZD807221GRU'
  3. 调用方式2:VIN+配件编码 python3 skills/partsepc/get_parts_epc.py 'LSVAL41Z882104202' '' '1ZD8536689B9'
  4. 调用方式3: VIN+配件名称 python3 skills/partsepc/get_parts_epc.py 'LSVAL41Z882104202' '前保险杠皮' ''
  5. 从返回中选取 groupCode/groupName/groupUrl/groupDesc 等字段,给出自然语言总结;

Comments

Loading comments...