VIN配件 模糊译码(车型)

v1.0.0

使用积智数据模糊译码 API,通过 17 位 VIN 车架号的车型 与 待译码的配件别名列表, 模糊解出这些配件的 标准配件编码OE 与 标准配件名称等信息,用于当精准译码无法解析出配件编码OE 与 标准配件名称时。

0· 153·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/fuzzyoe.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "VIN配件 模糊译码(车型)" (polaris2013/fuzzyoe) from ClawHub.
Skill page: https://clawhub.ai/polaris2013/fuzzyoe
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 fuzzyoe

ClawHub CLI

Package manager switcher

npx clawhub@latest install fuzzyoe
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required binary (python3), required env var (JZ_API_KEY) and the included script all align with a VIN fuzzy-decode API client. The declared backend endpoint (erp.qipeidao.com/jzOpenClaw/getFuzzyOe) matches the code.
Instruction Scope
Runtime instructions and the script only take a VIN and a parts-name list, read JZ_API_KEY from the environment, and POST those to the documented API. This is within scope, but it does transmit VINs and part names to a third-party service (privacy/PII consideration). Also note a small documentation mismatch: SKILL.md usage shows get_parts_epc.py but the repository includes get_fuzzy_oe.py — this is an editorial inconsistency that could cause user confusion.
Install Mechanism
There is no install spec and no external downloads; this is an instruction-only skill with one included Python script. No packages are fetched or extracted during install.
Credentials
Only a single API credential (JZ_API_KEY) is required and used as the appkey for the remote VIN service. Requesting one service-specific key is proportional to the stated purpose. Treat the key as a sensitive secret.
Persistence & Privilege
The skill is not always-enabled and makes no changes to other skills or system configuration. It does network calls to the remote API, which is necessary for its function.
Assessment
This skill appears to be a simple client for a third‑party VIN fuzzy‑decode API and requires one secret API key (JZ_API_KEY). Before installing: 1) Confirm you trust the provider (erp.qipeidao.com) and the contact info listed in SKILL.md. 2) Be aware that VINs and part names (potentially sensitive vehicle identifiers) will be transmitted to that remote service over the network — avoid sending production or sensitive VINs until you’re comfortable. 3) Provide the least‑privilege API key possible and be prepared to rotate it if needed. 4) Note the small script-name mismatch in the docs (get_parts_epc.py vs get_fuzzy_oe.py); verify the correct command before running. 5) Ensure python3 is available in the runtime environment. If you need stricter control, restrict the agent’s network access to only allow the documented endpoint or test with non-sensitive data first.

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

Runtime requirements

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

积智数据 VIN 模糊译码( VIN CARTYPE+PARTSNAME)

基于 [VIN 模糊译码 API] 的 OpenClaw 技能,支持:

  • VIN CARTYPE+ PARTSNAME 模糊译码:通过 17 位 VIN 车架号的车型 与 配件别名列表, 模糊解出 标准配件编码OE 与 标准配件名称等信息,用于当精准译码无法解析出配件编码OE 与 标准配件名称时。

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

后端服务

本技能依赖 VIN-CARTYPE+PARTSNAME 模糊译码 服务,接口地址:https://erp.qipeidao.com/jzOpenClaw/getFuzzyOe

环境变量配置

# Linux / macOS
export JZ_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JZ_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/fuzzyoe/get_fuzzy_oe.py

使用方式

1. 根据 VIN 车型+ 询价配件别名列表 模糊解析出 询价配件的标准配件编码 与 标准配件名称 信息, 用于当精准译码无法解析出配件编码OE 与 标准配件名称时。

python3 skills/fuzzyoe/get_parts_epc.py "LSVAL41Z882104202" "[\"前保险杠皮\",\"中网\"]"
## VIN 模糊译码 请求参数

| 字段名  | 类型   | 必填 | 说明                                           |
|--------|--------|------|------------------------------------------------|
| vin    | string | 是   | 17 位 VIN 车架号                               |
| partsNames | list | 是   | 配件名称列表,每个元素为一个字符串。 |

示例:

LSVAL41Z882104202 "["前保险杠皮","中网"]"


## VIN CARTYPE+ PARTSNAME 模糊译码 返回结果示例

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

```json
  [
    {
      "referType": 3,
      "oeRefer": "1ZD807221GRU",
      "oeSource": "模糊车型译码",
      "priceRefer": null,
      "vinCode": "LSVAL41Z882104202",
      "partsName": "前保险杠皮",
      "partsAlias": "前保险杠皮",
      "otherReferInfo": null
    },
    {
      "referType": 3,
      "oeRefer": "1ZD8536689B9",
      "oeSource": "模糊车型译码",
      "priceRefer": null,
      "vinCode": "LSVAL41Z882104202",
      "partsName": "中网",
      "partsAlias": "中网",
      "otherReferInfo": null
    }
  ]

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

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

常见错误码

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

在 OpenClaw 中的推荐用法

  1. 用户给出车架号和待译码的配件名称列表:「帮我查一下 VIN LSVAL41Z882104202 询价配件: 前保险杠皮 中网 的 标准配件编码与标准名信息」。
  2. 调用:
    python3 skills/fuzzyoe/get_fuzzy_oe.py "LSVAL41Z882104202" "[\"前保险杠皮\",\"中网\"]"
  3. 从返回中选取 oeRefer/partsName/partsAlias/oeSource 等字段,给出自然语言总结;

Comments

Loading comments...