← Back to Skills Marketplace
laiye-adp

中国机动车出厂合格证识别与抽取(ADP)

by Laiye ADP · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
38
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install adp-vehicle-certificate-recognition-and-extract
Description
基于来也科技ADP平台的机动车整车出厂合格证智能识别与信息抽取Skill。支持车辆合格证全量字段的精准抽取——合格证编号、发证日期、车辆制造企业名称、车辆品牌、车辆型号、车辆识别代号/车架号、发动机型号/号、车身颜色、燃料种类、排放标准、外廓尺寸、总质量等30+关键字段,输出结构化JSON,零配置开箱即用,适用于...
README (SKILL.md)

机动车整车出厂合格证识别与抽取 Skill

能力由来也科技 ADP(Agentic Document Processing)智能体文档处理平台提供,支持机动车整车出厂合格证的智能识别与关键信息抽取能力。本 Skill 调用来也科技 ADP 官方 CLI 工具,一条命令即可完成车辆合格证图片/扫描件的结构化字段抽取,输出标准 JSON,无缝对接业务系统。

新用户注册即享每月 100 免费积分(每月刷新),相当于每月可免费抽取 200 张车辆合格证。ADP 提供标准可商用 API,1 小时即可快速集成接入业务系统。 \x3Cbr/> 立即注册:中国大陆 | 海外地区


快速接入指南

核心工作流

  1. 安装依赖:首次执行时,安装 ADP CLI 工具。
  2. 认证配置:首次执行时,运行 adp config get 检查凭证。若未配置,提示用户提供 API Key。
  3. 获取应用列表:首次执行时,通过 adp app-id list --app-type 0 获取开箱即用应用列表,找到车辆合格证抽取应用并记录其 app_id(以 ootb_ 开头)。后续优先使用 adp app-id cache
  4. 执行抽取:运行 adp extract url \x3CURL> --app-id \x3C车辆合格证抽取应用ID>adp extract local \x3C文件路径> --app-id \x3C车辆合格证抽取应用ID>
  5. 结果处理:解析返回的 JSON,提取合格证编号、发证日期、车辆制造企业名称、车辆品牌、车辆型号、车辆识别代号/车架号、发动机型号/号、车身颜色、燃料种类、外廓尺寸等结构化字段(完整字段见下文)。
  6. 错误处理:命令失败时,解析 stderr JSON 确定错误类型和恢复操作。

场景 → 命令映射

单张识别

用户意图 推荐命令
识别一张车辆合格证图片(URL) adp extract url \x3CURL> --app-id \x3C车辆合格证抽取应用ID>
识别一张本地车辆合格证图片 adp extract local \x3C文件路径> --app-id \x3C车辆合格证抽取应用ID>
识别 Base64 编码的车辆合格证 adp extract base64 \x3Cbase64> --app-id \x3C车辆合格证抽取应用ID> --file-name \x3C文件名.后缀>

批量识别

用户意图 推荐命令
批量识别本地文件夹内的车辆合格证 adp extract local \x3C文件夹路径> --app-id \x3C车辆合格证抽取应用ID>
批量识别多个 URL adp extract url \x3CURL列表文件> --app-id \x3C车辆合格证抽取应用ID>

异步处理

用户意图 推荐命令
异步提交大文件 adp extract url \x3CURL> --app-id \x3C车辆合格证抽取应用ID> --async
异步批量处理 adp extract local \x3C文件夹路径> --app-id \x3C车辆合格证抽取应用ID> --async
查询异步任务结果 adp extract query \x3Ctask_id>

并发限制:免费用户最大支持 2 份文档并发处理,付费用户最大支持 10 份文档并发处理


第一步:安装 ADP CLI

# 方法 1: npm(推荐,全平台通用)
npm install -g @laiye-adp/agentic-doc-parse-and-extract-cli
# 方法 2: Shell 脚本(Linux / macOS,无 npm 环境时使用)
curl -fsSL https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.sh | bash
# 方法 3: PowerShell 脚本(Windows,无 npm 环境时使用)
irm https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.ps1 | iex

或从 GitHub Releases 下载预编译二进制文件包。


第二步:获取 API Key 与认证配置

1. 访问 ADP 门户获取凭证

我们为国内和海外用户提供了独立的公有云访问地址,需按地区分别配置。就近访问可更好地保障高速稳定的网络调用。

地区 登录地址 API Base URL
中国大陆 https://adp.laiye.com/ https://adp.laiye.com/
海外地区 https://adp-global.laiye.com/ https://adp-global.laiye.com/

2. 注册/登录后获取 API Key

新用户需先注册 ADP 账号,注册后即可获得每月 100 免费积分。

  • 登录后,点击个人头像,即可直接进入 API_Key 入口。

3. 完成认证配置

adp config set --api-key \x3Cyour-api-key>
adp config set --api-base-url https://adp.laiye.com

4. 验证配置

adp config get

注意事项

  1. 如果 API Key 和 API Base URL 已配置完成,建议将配置信息存储到环境变量中,避免每次使用时重复配置。
  2. 如果 API Key 和 API Base URL 尚未配置,请按照以上步骤完成配置。

第三步:获取车辆合格证抽取应用 ID

ADP 为车辆合格证提供了开箱即用的内置抽取应用,无需额外配置。

应用类型说明

ADP 应用分为两类,通过 app_type 字段区分:

app_type 类型 说明
0 开箱即用应用(OOTB) 平台内置,app_idootb_ 开头,无需创建,直接使用
1 自定义应用 用户自行创建的抽取应用,app_id 为用户自定义标识

车辆合格证识别属于开箱即用应用,可通过 --app-type 0 筛选查询。

查询并筛选车辆合格证应用

# 仅查询开箱即用应用(推荐)
adp app-id list --app-type 0

# 或查询所有应用
adp app-id list

从返回列表中找到 app_label 包含 "车辆合格证" 的应用,记录其 app_id

[
  {
    "app_id": "ootb_******xx",
    "app_label": ["车辆合格证", "整车合格证", "车辆管理", "证件", "信息提取"],
    "app_name": "车辆合格证",
    "app_type": 0
  }
]

上例中 "app_id": "ootb_******xx" 即为车辆合格证抽取应用。app_type0 表示开箱即用应用,1 表示自定义应用。

缓存应用 ID(推荐)

首次查询后,后续优先使用缓存避免重复请求:

# 后续使用缓存
adp app-id cache

重要提示:每个账号下的 app_id 是唯一且固定的,除非用户主动删除应用,否则 app_id 不会变更。建议 Agent 将车辆合格证应用的 app_id 保存在上下文中,下次直接使用。


第四步:执行车辆合格证抽取

单张车辆合格证抽取(URL)

adp extract url https://example.com/vehicle-cert.jpg --app-id \x3C车辆合格证抽取应用ID>

单张车辆合格证抽取(本地文件)

adp extract local ./vehicle-cert.jpg --app-id \x3C车辆合格证抽取应用ID>

单张车辆合格证抽取(Base64)

adp extract base64 \x3Cbase64字符串> --app-id \x3C车辆合格证抽取应用ID> --file-name \x3C文件名.后缀>

返回结果示例

ADP 车辆合格证抽取统一返回结构化 JSON,精准识别合格证共 35 个关键字段。

以下示例值为脱敏数据,仅用于演示返回结构,不代表真实证件信息。

完整示例(35 个字段,脱敏数据)见同目录下 examples/extraction-result.json。以下为前 3 个字段的预览:

[
  {
    "field_key": "certificate_of_conformity_number",
    "field_name": "合格证编号",
    "field_values": [{ "field_value": "WAE2X217******" }]
  },
  {
    "field_key": "issuance_date",
    "field_name": "发证日期",
    "field_values": [{ "field_value": "2017年02月27日" }]
  },
  {
    "field_key": "vehicle_manufacturer_enterprise_name",
    "field_name": "车辆制造企业名称",
    "field_values": [{ "field_value": "上汽通用汽车有限公司" }]
  }
  // ... 其余 32 个字段,详见 examples/extraction-result.json
]

抽取字段说明

ADP 车辆合格证抽取返回以下字段:

field_key field_name 说明
certificate_of_conformity_number 合格证编号 整车出厂合格证编号
issuance_date 发证日期 合格证发证日期
vehicle_manufacturer_enterprise_name 车辆制造企业名称 制造企业全称
vehicle_brand 车辆品牌 车辆品牌名称(中/英文)
vehicle_name 车辆名称 车辆名称(如轿车、客车、货车等)
chassis_category 底盘类别 底盘类别(轿车通常为空)
vehicle_model 车辆型号 车辆型号编码
chassis_model 底盘型号 底盘型号(轿车通常为空)
body_color 车身颜色 车身颜色
vehicle_identification_number_frame_number 车辆识别代号/车架号 VIN码/车架号,通常 17 位
fuel_type 燃料种类 燃料种类(汽油、柴油、纯电动、混合动力等)
engine_model 发动机型号 发动机型号
engine_number 发动机号 发动机编号
emission_standard 排放标准 排放标准(如 GB18352.5-2013 国Ⅴ、国六b 等)
steering_form 转向形式 转向形式(如方向盘)
tire_count 轮胎数 轮胎数量
tire_specification 轮胎规格 轮胎规格型号
front_wheel_track 前轮轮距 前轮轮距(单位 mm)
rear_wheel_track 后轮轮距 后轮轮距(单位 mm)
wheelbase 轴距 轴距(单位 mm)
axle_load 轴荷 轴荷(货车类适用,乘用车通常为空)
axis_number 轴数 车轴数量
overall_dimensions 外廓尺寸 车辆外廓尺寸(长×宽×高)
spring_leaf_count 弹簧片数 钢板弹簧片数(轿车通常为空)
total_mass 总质量 车辆总质量(单位 kg)
curb_mass 整备质量 车辆整备质量(单位 kg)
semi_trailer_kingpin_max_allowed_total_mass 半挂车鞍座最大允许总质量 半挂车鞍座最大允许总质量(仅半挂车适用)
towing_total_mass 牵引总质量 牵引总质量(仅牵引车适用)
cab_occupancy 驾驶室占乘人数 驾驶室占乘人数(货车类适用)
maximum_design_speed 最高设计车速 最高设计车速(单位 km/h)
vehicle_manufacture_date 车辆制造日期 车辆制造日期
remark 备注 合格证备注信息
vehicle_manufacturing_enterprise_info 车辆制造企业信息 含检验声明、生产单位名称与地址等完整说明文本
displacement 排量 发动机排量(单位 ml/mL)
power 功率 发动机功率(单位 kW)

说明:当前版本未单独返回"核定载质量""核定载客数""货厢内部尺寸""底盘合格证编号"字段;如证件上有相关信息,乘用车多为空,特种车/货车请关注 axle_loadspring_leaf_countcab_occupancysemi_trailer_kingpin_max_allowed_total_masstowing_total_mass 等专项字段。

返回字段通用结构

每个字段遵循以下结构:

字段 类型 说明
field_key string 字段标识(机器可读)
field_name string 字段名称(人类可读)
field_values array 抽取结果数组
field_values[].field_value string 抽取值,未识别到时为空字符串

第五步:批量处理与异步模式

批量处理(本地文件夹)

adp extract local ./vehicle-certs/ --app-id \x3C车辆合格证抽取应用ID> --export ./results/ 

返回摘要:

{
  "total": 10,
  "success": 9,
  "failed": 1,
  "output_dir": "/absolute/path/to/results",
  "files": [
    {"input": "cert-001.jpg", "output": "cert-001.jpg.json", "status": "success"},
    {"input": "cert-002.jpg", "output": "cert-002.jpg.json", "status": "success"},
    {"input": "damaged.jpg", "output": "damaged.jpg.error.json", "status": "failed", "error": "..."}
  ]
}

异步处理

# 提交异步任务
adp extract url https://example.com/vehicle-cert.jpg --app-id \x3C车辆合格证抽取应用ID> --async

# 查询任务结果
adp extract query \x3Ctask_id>

常用命令速查

# 检查安装
adp version

# 查看配置
adp config get

# 查询所有应用列表
adp app-id list

# 仅查询开箱即用应用(app_type=0)
adp app-id list --app-type 0

# 使用缓存的应用
adp app-id cache

# 查询积分余额
adp credit

# 车辆合格证抽取(URL)
adp extract url \x3C文件URL> --app-id \x3C车辆合格证抽取应用ID>

# 车辆合格证抽取(本地文件)
adp extract local \x3C文件路径> --app-id \x3C车辆合格证抽取应用ID>

# 车辆合格证抽取(Base64)
adp extract base64 \x3Cbase64字符串> --app-id \x3C车辆合格证抽取应用ID> --file-name \x3C文件名.后缀>

# 批量抽取
adp extract local \x3C文件夹路径> --app-id \x3C车辆合格证抽取应用ID> --export \x3C输出路径> 

# 异步抽取
adp extract url \x3C文件URL> --app-id \x3C车辆合格证抽取应用ID> --async

# 查询异步结果
adp extract query \x3Ctask_id>

错误处理

当命令失败时,stderr 输出结构化 JSON:

{
  "type": "AUTH_ERROR",
  "message": "Authentication error: invalid API key",
  "fix": "Check your API key is correct and has not expired.",
  "retryable": false,
  "details": {"context": "extract"}
}

退出码说明

退出码 含义
0 成功
1 一般错误
2 参数错误
3 资源未找到
4 权限/认证错误
5 冲突
6 部分失败(批量处理中部分成功、部分失败)

积分与计费

项目 说明
车辆合格证抽取费用 0.5 积分/张
新用户免费额度 每月赠送 100 积分,相当于每月可免费处理 200 张车辆合格证,每月初重置
查询余额 adp credit
充值方式 登录 ADP 门户网站充值:中国大陆及港澳台地区 | 非中国大陆及港澳台地区

更多来也 ADP 文档处理能力

车辆合格证识别只是来也科技 ADP 平台众多开箱即用能力之一。ADP 基于大模型通用理解能力,提供覆盖全品类文档的智能处理解决方案:

能力 说明 典型场景
全球发票/收据抽取 自动识别并抽取发票号码、日期、金额、税费、明细等 10+ 关键字段,支持多语言和多币种发票抽取 跨国结算账款自动化、费用报销管理
国内票据抽取 识别增值税发票、出租车票、火车票、飞机行程单、财政发票等30+常见票据,支持多页/多票识别及验真 国内票据识别、国内发票验真
订单抽取 支持多种采购订单格式,抽取订单号、商品、数量、价格、物流信息等 采购自动化、供应链集成
更多卡证抽取 ADP支持身份证、港澳台通行证、中国护照、银行卡、户口本、驾驶证、行驶证、车辆合格证、开户许可证、营业执照等 11 种中国常用证件 开户审核、合规检查、证件信息批量录入
文档解析 将 PDF、图片、Office 文档转化为结构化数据,保留排版和层级关系 长文档分析、合同审查、知识提取
自定义抽取 自主创建抽取应用,配置专属字段和识别逻辑,满足非标单据需求 企业专属表单、行业定制单据
以上所有能力均可通过同一个 ADP CLI 工具调用,共享 ADP API Key 和积分体系。

如需了解完整能力,请访问:


注意事项

  1. 数据完整性:使用 ADP 输出时,请原样呈现返回数据,不要在抽取过程中修改、添加或删除任何字段。
  2. API Key 安全:妥善保管 API Key,避免泄露给未授权的第三方。
  3. 文件大小限制:单个文件最大 50MB。
  4. 支持格式:.jpg, .jpeg, .png, .bmp, .tiff, .tif, .pdf, .doc, .docx, .xls, .xlsx
  5. 应用 ID 复用:车辆合格证应用的 app_id 在账户下唯一且固定,建议记住后直接使用,无需每次查询。

支持与联系

Copyright © 2026 [来也科技(北京)有限公司] 保留所有权利。

Usage Guidance
This result is low confidence because the workspace files could not be inspected; rerun the review when metadata.json and artifact/ can be read.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Not assessable from artifact content because local command execution failed before metadata or artifact files could be read.
Instruction Scope
No artifact-backed instruction-scope concern was available to report.
Install Mechanism
No artifact-backed install-mechanism concern was available to report.
Credentials
No artifact-backed environment concern was available to report.
Persistence & Privilege
No artifact-backed persistence or privilege concern was available to report.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install adp-vehicle-certificate-recognition-and-extract
  3. After installation, invoke the skill by name or use /adp-vehicle-certificate-recognition-and-extract
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the Vehicle Certificate Recognition and Extraction Skill based on Laiye ADP. - Supports accurate extraction of 30+ key fields from vehicle certificate images/scans, outputting structured JSON. - Provides ready-to-use CLI integration with zero configuration; suitable for vehicle registration, used car trading, and asset management. - Includes step-by-step instructions for installation, API key configuration, application selection, field extraction, and batch/async operations. - New users receive 100 free monthly credits, equivalent to extraction of 200 certificates each month.
Metadata
Slug adp-vehicle-certificate-recognition-and-extract
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 中国机动车出厂合格证识别与抽取(ADP)?

基于来也科技ADP平台的机动车整车出厂合格证智能识别与信息抽取Skill。支持车辆合格证全量字段的精准抽取——合格证编号、发证日期、车辆制造企业名称、车辆品牌、车辆型号、车辆识别代号/车架号、发动机型号/号、车身颜色、燃料种类、排放标准、外廓尺寸、总质量等30+关键字段,输出结构化JSON,零配置开箱即用,适用于... It is an AI Agent Skill for Claude Code / OpenClaw, with 38 downloads so far.

How do I install 中国机动车出厂合格证识别与抽取(ADP)?

Run "/install adp-vehicle-certificate-recognition-and-extract" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 中国机动车出厂合格证识别与抽取(ADP) free?

Yes, 中国机动车出厂合格证识别与抽取(ADP) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 中国机动车出厂合格证识别与抽取(ADP) support?

中国机动车出厂合格证识别与抽取(ADP) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 中国机动车出厂合格证识别与抽取(ADP)?

It is built and maintained by Laiye ADP (@laiye-adp); the current version is v1.0.0.

💬 Comments