← Back to Skills Marketplace
238
Downloads
0
Stars
0
Active Installs
13
Versions
Install in OpenClaw
/install meiguang-car-insurance
Description
车险保单PDF字段提取工具 v5.0.2(美光/大地/太平洋/浙商/亚太/人保/华海)。输入PDF文件夹,输出Excel。支持14字段,含车辆使用性质多数纠正、PDAA/PDZA表格兜底、Excel中文UTF-8编码修复。
Usage Guidance
This package appears to be what it says: a PDF-to-Excel extractor specialized for certain Chinese insurers. Before running it: 1) Inspect scripts/run_extract.py (and any helper it imports) to confirm which files and directories it reads/writes and to ensure there are no network calls or unexpected behaviors. 2) Because several debug scripts contain hard-coded absolute Windows paths (C:\Users\Administrator\Desktop and .openclaw workspace), run it in a sandbox or on a non-production machine and correct paths as needed. 3) Ensure required Python dependencies (pymupdf, pdfplumber, openpyxl, etc.) are installed in an isolated virtualenv/container; the skill does not declare or install them. 4) Be aware the tool extracts sensitive personal data from PDFs (names, ID numbers, phone numbers, VINs); protect any processed files and outputs. 5) If you need higher assurance, post the full run_extract.py for review (it’s large and was not fully shown here) to confirm there are no network transmissions, credential usage, or other unexpected actions. Running with a least-privileged user or in a VM/container is recommended.
Capability Analysis
Type: OpenClaw Skill
Name: meiguang-car-insurance
Version: 5.1.1
The skill bundle is a specialized tool for extracting structured data from various Chinese car insurance PDF policies into Excel format. It utilizes standard libraries such as pdfplumber, pymupdf (fitz), and pandas. While the bundle includes numerous diagnostic and 'fix' scripts (e.g., run_extract.py, fix_chinese_num.py) and relies on hardcoded absolute Windows file paths (targeting the 'Administrator' desktop), these behaviors are consistent with a developer's local workspace for document parsing. There is no evidence of malicious intent, data exfiltration, or unauthorized execution of remote code.
Capability Assessment
Purpose & Capability
The name/description (PDF field extraction → Excel) aligns with the included source: many parsing scripts, regexes, VIN/model lookup, and Excel write/debug utilities. The code is focused on insurance PDF parsing for the listed insurers and the declared 14 fields.
Instruction Scope
SKILL.md simply instructs to run `python scripts/run_extract.py`, which fits the purpose. However many included scripts (debug helpers) contain hard-coded absolute Windows paths (e.g., C:\Users\Administrator\Desktop, .openclaw workspace) and open/write local files (Excel, PDFs). Reading/writing local files is expected for this tool, but the presence of absolute paths means you should inspect run_extract.py and debug scripts to confirm which paths are used at runtime and whether any unintended files/locations are accessed.
Install Mechanism
No install spec is provided. The code clearly depends on Python packages (pymupdf, pdfplumber, openpyxl, etc.) but the skill doesn't declare or install them. This is not a security red flag by itself, but you will need to provide/confirm the runtime environment and dependencies before running.
Credentials
The skill requests no environment variables, credentials, or config paths. The code operates on local files and contains no obvious calls to external endpoints in the provided snippets. That said, the scripts parse personally identifiable data (names, ID numbers, phone numbers) from PDFs — which is expected but has privacy implications.
Persistence & Privilege
The skill is not marked always:true, does not request system-wide settings, and does not declare persistence. It writes its output Excel file to user-local paths (as expected) but does not appear to attempt to modify other skills or agent configs in the provided excerpts.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install meiguang-car-insurance - After installation, invoke the skill by name or use
/meiguang-car-insurance - Provide required inputs per the skill's parameter spec and get structured output
Version History
v5.1.1
修复太平洋商业险保险起期提取bug,支持数字间有空格、时间格式00:00的新格式
v5.1.0
修复太平洋商业险保险起期提取 bug,支持数字间有空格、时间格式 00:00 的新格式
v5.0.1
修复保险起期:支持太平洋交强险新格式(冒号时分)、浙商交强险(止至连写)、司乘险365天格式、商业司乘险起至格式;新增 nbsp 分隔符兼容;修复大地司乘险 parse_dadi_anyang 合并逻辑顺序
v5.0.0
v5: 车辆使用性质多数纠正 + PDAA/PDZA表格兜底 + openpyxl UTF-8修复 + 非营业用车/客车白名单
v3.0.2
v4: 新增按车牌号码+保险公司名称排序输出;v3.0.1: 签单时间独立提取器v10.1,Row18意外险空白修复,23条记录全有签单时间
v3.0.1
完善签单时间提取:新增出单时间标签,修复大地意外险保单Row18空白问题
v2.2.1
险种名称畅行保统一更名为非车险(行业标准分类)
v2.2.0
修复route_type误判:商业险PDF正文大量引用交强险条款导致误判;has_jiao_full仅查前2000字符;新增示范条款/机动车综合商业关键词
v2.1.0
修复大地交强险/意外险实收保费(¥:665.00格式);修复大地意外险跨行pattern(总保险费\n肆佰伍元整¥455.00);修复fallback年份过滤;修复华海交强险公司名污染
v2.0.1
修复浙商保险公司驾意险实收保费中文数字无法识别的问题;浙商交强险车船税清洗逻辑修复;修复浙商公司名尾部杂质问题;增加公司名称提取优先级(签单机构 > 保险人);修复华海保单公司名称提取(parse_changxing company参数覆盖);整体准确率提升
v1.2.0
v1.2.0: 新增大地安行如意保专用parse函数;被保人姓名支持投保人名称回退;修复fill函数缩进错误;支持太平洋/浙商/大地/亚太等多保险公司
v1.1.0
v1.1.0: 新增VIN→车辆型号查询表、修复太平洋交强险车辆型号提取、统一所有parse分支clean_data调用
v2.0.0
Version 2.0.0
- 新增支持从车险保单 PDF 自动提取14个关键字段,输出 Excel 文件。
- 可处理太平洋、亚太、人保、大地、浙商5家保险公司及交强险、商业险、意外险三类险种。
- 提供简单的命令行使用方式和输入输出路径示例。
- 明确依赖需求:Python 3、pandas、openpyxl、pymupdf。
Metadata
Frequently Asked Questions
What is Meiguang Car Insurance?
车险保单PDF字段提取工具 v5.0.2(美光/大地/太平洋/浙商/亚太/人保/华海)。输入PDF文件夹,输出Excel。支持14字段,含车辆使用性质多数纠正、PDAA/PDZA表格兜底、Excel中文UTF-8编码修复。 It is an AI Agent Skill for Claude Code / OpenClaw, with 238 downloads so far.
How do I install Meiguang Car Insurance?
Run "/install meiguang-car-insurance" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Meiguang Car Insurance free?
Yes, Meiguang Car Insurance is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Meiguang Car Insurance support?
Meiguang Car Insurance is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Meiguang Car Insurance?
It is built and maintained by 一颗和成天下 (@cc19960203cc); the current version is v5.1.1.
More Skills