Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

deepread-insurance深读保险

Agent Skill

deepread-insurance 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,744

周安装

111

GitHub Stars

公开资料未说明

下载量

861
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:deepread-insurance(深读保险)
来源仓库:https://github.com/uday390/deepread-insurance
安装命令:
openclaw skills install deepread-insurance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install deepread-insurance

简介

从保险单据中提取结构化信息的专用解析器。deepread-insurance 属于效率类 Skill,可作为该场景下的辅助能力补充。

  • 支持保单、索赔报告与 EOB 文件的自动化处理。
  • 预置模式识别客户信息、承保范围与赔偿金额等字段。
  • 涉及个人身份信息时应采取脱敏措施保障数据安全。
  • 安装后配置 API 密钥即可批量处理文档,提升理赔效率。

SKILL.md

name
deepread-insurance
title
DeepRead Insurance Documents
description
Extract structured data from insurance claims, policies, EOBs, and loss reports. Pre-built schemas for claimant info, coverage, damages, adjuster notes. PII redaction for compliant sharing. 97%+ accuracy. Free 2,000 pages/month.
metadata
{"openclaw":{"requires":{"env":["DEEPREAD_API_KEY"]},"primaryEnv":"DEEPREAD_API_KEY","homepage":"https://www.deepread.tech"}}

DeepRead Insurance Document Processing

Extract structured data from insurance claims, policy documents, Explanations of Benefits (EOBs), loss reports, and adjuster notes. Then redact claimant PII before sharing with third parties.

This skill instructs the agent to POST documents to https://api.deepread.tech and poll for results. No system files are modified.

What You Get Back

Submit a claim form and get structured JSON:

{
  "claim_number": {"value": "CLM-2026-078432", "hil_flag": false, "found_on_page": 1},
  "policy_number": {"value": "POL-HO3-445521", "hil_flag": false, "found_on_page": 1},
  "claimant_name": {"value": "Robert Johnson", "hil_flag": false, "found_on_page": 1},
  "date_of_loss": {"value": "2026-02-14", "hil_flag": false, "found_on_page": 1},
  "date_reported": {"value": "2026-02-15", "hil_flag": false, "found_on_page": 1},
  "loss_type": {"value": "Water Damage", "hil_flag": false, "found_on_page": 1},
  "loss_description": {"value": "Burst pipe in basement caused flooding to finished living area, damaged drywall, carpet, and personal property", "hil_flag": false, "found_on_page": 2},
  "property_address": {"value": "789 Elm Dr, Denver, CO 80202", "hil_flag": false, "found_on_page": 1},
  "coverage_type": {"value": "Homeowners HO-3", "hil_flag": false, "found_on_page": 1},
  "deductible": {"value": 1000.00, "hil_flag": false, "found_on_page": 1},
  "estimated_damages": {"value": 24500.00, "hil_flag": true, "reason": "Multiple estimates on different pages"},
  "adjuster": {"value": "Sarah Martinez, License #ADJ-44521", "hil_flag": false, "found_on_page": 3},
  "line_items": {"value": [
    {"category": "Structural", "description": "Drywall replacement — basement", "amount": 8500.00},
    {"category": "Flooring", "description": "Carpet removal and replacement", "amount": 6200.00},
    {"category": "Personal Property", "description": "Damaged furniture and electronics", "amount": 5800.00},
    {"category": "Mitigation", "description": "Water extraction and drying", "amount": 4000.00}
  ], "hil_flag": false, "found_on_page": 3},
  "status": {"value": "Under Review", "hil_flag": false, "found_on_page": 1}
}

Fields with hil_flag: true need human review. Everything else is high-confidence.

Setup

Get Your API Key

open "https://www.deepread.tech/dashboard/?utm_source=clawhub"

Save it:

export DEEPREAD_API_KEY="sk_live_your_key_here"

Insurance Claim Schema

Pre-built schema for insurance claims and loss reports:

{
  "type": "object",
  "properties": {
    "claim_number": {"type": "string", "description": "Claim number or reference ID"},
    "policy_number": {"type": "string", "description": "Insurance policy number"},
    "claimant_name": {"type": "string", "description": "Name of the claimant or insured"},
    "date_of_loss": {"type": "string", "description": "Date the loss or incident occurred (YYYY-MM-DD)"},
    "date_reported": {"type": "string", "description": "Date the claim was reported (YYYY-MM-DD)"},
    "loss_type": {"type": "string", "description": "Type of loss (Water Damage, Fire, Theft, Auto Collision, Liability, etc.)"},
    "loss_description": {"type": "string", "description": "Detailed description of the loss or incident"},
    "property_address": {"type": "string", "description": "Address of the property or location of incident"},
    "coverage_type": {"type": "string", "description": "Type of coverage (Homeowners, Auto, Commercial, Liability, etc.)"},
    "deductible": {"type": "number", "description": "Policy deductible amount"},
    "estimated_damages": {"type": "number", "description": "Total estimated damage amount"},
    "adjuster": {"type": "string", "description": "Claims adjuster name and license number"},
    "line_items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "category": {"type": "string", "description": "Damage category (Structural, Personal Property, Medical, etc.)"},
          "description": {"type": "string", "description": "Description of damage or expense"},
          "amount": {"type": "number", "description": "Cost or estimate amount"}
        }
      },
      "description": "Itemized list of damages or expenses"
    },
    "status": {"type": "string", "description": "Claim status (Filed, Under Review, Approved, Denied, Settled)"},
    "settlement_amount": {"type": "number", "description": "Final settlement amount if resolved"},
    "denial_reason": {"type": "string", "description": "Reason for denial if applicable"}
  }
}

Extract Data From Insurance Documents

Python

import requests
import json
import time

API_KEY = "sk_live_YOUR_KEY"
BASE = "https://api.deepread.tech"
headers = {"X-API-Key": API_KEY}

schema = json.dumps({
    "type": "object",
    "properties": {
        "claim_number": {"type": "string", "description": "Claim number"},
        "policy_number": {"type": "string", "description": "Policy number"},
        "claimant_name": {"type": "string", "description": "Claimant name"},
        "date_of_loss": {"type": "string", "description": "Date of loss (YYYY-MM-DD)"},
        "loss_type": {"type": "string", "description": "Type of loss"},
        "loss_description": {"type": "string", "description": "Description of the loss"},
        "coverage_type": {"type": "string", "description": "Coverage type"},
        "deductible": {"type": "number", "description": "Deductible amount"},
        "estimated_damages": {"type": "number", "description": "Total estimated damages"},
        "line_items": {
            "type": "array",
            "items": {"type": "object", "properties": {
                "category": {"type": "string"},
                "description": {"type": "string"},
                "amount": {"type": "number"}
            }},
            "description": "Itemized damages"
        },
        "status": {"type": "string", "description": "Claim status"}
    }
})

with open("claim.pdf", "rb") as f:
    job = requests.post(
        f"{BASE}/v1/process",
        headers=headers,
        files={"file": f},
        data={"schema": schema},
    ).json()

job_id = job["id"]
print(f"Processing: {job_id}")

delay = 5
while True:
    time.sleep(delay)
    result = requests.get(f"{BASE}/v1/jobs/{job_id}", headers=headers).json()

    if result["status"] == "completed":
        data = result["result"]["data"]
        print(json.dumps(data, indent=2))

        for field, value in data.items():
            if isinstance(value, dict) and value.get("hil_flag"):
                print(f"\
  REVIEW: {field} — {value.get('reason')}")
        break
    elif result["status"] == "failed":
        print(f"Failed: {result.get('error')}")
        break

    delay = min(delay * 1.5, 15)

cURL

curl -s -X POST https://api.deepread.tech/v1/process \
  -H "X-API-Key: $DEEPREAD_API_KEY" \
  -F "file=@claim.pdf" \
  -F 'schema={"type":"object","properties":{"claim_number":{"type":"string","description":"Claim number"},"policy_number":{"type":"string","description":"Policy number"},"claimant_name":{"type":"string","description":"Claimant name"},"date_of_loss":{"type":"string","description":"Date of loss"},"loss_type":{"type":"string","description":"Type of loss"},"estimated_damages":{"type":"number","description":"Total damages"},"status":{"type":"string","description":"Claim status"}}}'

Redact Claimant PII Before Sharing

Redact claimant personal information before sending to adjusters, contractors, or third-party reviewers:

# Step 1: Extract the claim data you need
with open("claim.pdf", "rb") as f:
    extract_job = requests.post(
        f"{BASE}/v1/process",
        headers=headers,
        files={"file": f},
        data={"schema": schema},
    ).json()

# Step 2: Redact PII from the original
with open("claim.pdf", "rb") as f:
    redact_job = requests.post(
        f"{BASE}/v1/pii/redact",
        headers=headers,
        files={"file": f},
    ).json()

redact_id = redact_job["id"]
delay = 5
while True:
    time.sleep(delay)
    result = requests.get(f"{BASE}/v1/pii/{redact_id}", headers=headers).json()
    if result["status"] == "completed":
        report = result["report"]
        print(f"Redacted {report['total_redactions']} PII instances")
        for pii_type, info in report["pii_detected"].items():
            print(f"  {pii_type}: {info['count']} found")
        pdf = requests.get(result["redacted_file_url"]).content
        with open("claim_redacted.pdf", "wb") as f:
            f.write(pdf)
        print("Saved: claim_redacted.pdf")
        break
    elif result["status"] == "failed":
        print(f"Failed: {result.get('error')}")
        break
    delay = min(delay * 1.5, 15)

Use Cases

  • Claims Processing — Extract claim numbers, dates, damage descriptions, and amounts from incoming claims
  • Policy Document Analysis — Pull coverage terms, limits, deductibles, and exclusions from policy documents
  • EOB Processing — Extract procedure codes, allowed amounts, patient responsibility from Explanations of Benefits
  • Loss Reports — Parse adjuster field reports for damage categories, estimates, and recommendations
  • Subrogation — Extract third-party liability information and recovery amounts
  • Fraud Detection — Batch-process claims and flag inconsistencies in dates, amounts, or descriptions
  • Auto Claims — Extract vehicle info, driver details, accident descriptions, and repair estimates
  • Workers Comp — Pull injury descriptions, medical provider info, and lost wage calculations

Tips for Insurance Documents

  • Specify claim-specific field names — Using "Claim number or reference ID" works better than just "number"
  • Include status values — Adding expected statuses (Filed, Under Review, Approved, Denied) in descriptions helps extraction
  • Create blueprints for recurring form types — If you process the same carrier's claim forms repeatedly, train a blueprint at deepread.tech/dashboard/optimizer for 20-30% improvement
  • Always redact before external sharing — Use PII redaction before sending to contractors, adjusters, or legal teams

BYOK — Zero Processing Costs

Connect your own OpenAI, Google, or OpenRouter key via the dashboard. All document processing routes through your provider — zero DeepRead LLM costs, page quota skipped.

Set it up: https://www.deepread.tech/dashboard/byok

Related DeepRead Skills

  • deepread-ocr — General OCR and structured extraction — clawhub install uday390/deepread-ocr
  • deepread-pii — Redact PII from any document — clawhub install uday390/deepread-pii
  • deepread-form-fill — Fill PDF forms with AI vision — clawhub install uday390/deepread-form-fill
  • deepread-invoice — Invoice and receipt processing — clawhub install uday390/deepread-invoice
  • deepread-medical — Medical records processing — clawhub install uday390/deepread-medical
  • deepread-legal — Legal document processing — clawhub install uday390/deepread-legal
  • deepread-agent-setup — OAuth device flow authentication — clawhub install uday390/deepread-agent-setup
  • deepread-byok — Bring Your Own Key setup — clawhub install uday390/deepread-byok

Support

  • Dashboard: https://www.deepread.tech/dashboard
  • Demo Repo: https://github.com/deepread-tech/deepread-demo
  • n8n Node: https://www.npmjs.com/package/n8n-nodes-deepread
  • Issues: https://github.com/deepread-tech/deep-read-service/issues
  • Email: hello@deepread.tech

Get started free: https://www.deepread.tech/dashboard/?utm_source=clawhub

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.18%
按下载量换算604

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills