一键导入
certificate-of-origin
Validates a VIN then fills a Manufacturer's Certificate of Origin (MCO) PDF with vehicle details. Accepts Issue Date, Invoice
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validates a VIN then fills a Manufacturer's Certificate of Origin (MCO) PDF with vehicle details. Accepts Issue Date, Invoice
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | certificate-of-origin |
| description | Validates a VIN then fills a Manufacturer's Certificate of Origin (MCO) PDF with vehicle details. Accepts Issue Date, Invoice |
This skill validates a VIN and then populates a Manufacturer's Certificate of
Origin PDF template with vehicle information supplied by the user, returning
the completed document as a downloadable PDF named MCO-<last5VIN>.pdf.
Collect ALL six values from the user before running the script.
| Argument | User Label | Example |
|---|---|---|
--issue-date | Issue Date | 2026-07-25 |
--invoice-number | Invoice # | INV-001234 |
--vin | VIN | 1HGCM82633A123456 |
--model-year | Model Year | 2026 |
--model | Model | Civic |
--manufacturer | Manufacturer | Honda |
If any value is missing, ask the user for it before proceeding.
Always run VIN validation first, before filling the certificate.
python /app/skills/certificate-of-origin/scripts/validate_vin.py \
--vin "<vin>"
Always display the validation result to the user before proceeding.
SUCCESS:, continue to Step 2.FAILURE:, stop. Do not run the fill script.
Inform the user the certificate was not generated and ask them to provide
a corrected VIN.python /app/skills/certificate-of-origin/scripts/fill_certificate.py \
--issue-date "<issue_date>" \
--invoice-number "<invoice_number>" \
--vin "<vin>" \
--model-year "<model_year>" \
--model "<model>" \
--manufacturer "<manufacturer>"
The script prints SUCCESS: Certificate written to /app/created/MCO-<last5VIN>.pdf
on completion. Present that path to the user as their downloadable file.