extract-insurance-claim-data

extract-insurance-claim-data is a skill for Claude Code from iterationlayer/skills. It costs 15 tokens per session (3,585 once invoked), scanned A, a copy of compress-image-to-target-size, MIT.

A document-extraction recipe that reads insurance claim documents and returns fields about the policyholder, policy, coverage, and loss.

In plain words
What is it for?
Use it to create structured claim records from insurance documents for review and claims processing.
Why use it?
It removes the need to retype claim information into an insurance system.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the document-extraction plugin — 142 skills shipped together

Good fit Use it to create structured claim records from insurance documents for review and claims processing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iterationlayer/skills/extract-insurance-claim-data
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add iterationlayer/skills --skill extract-insurance-claim-data
Clone the repo
git clone --depth 1 https://github.com/iterationlayer/skills

Made for: Claude Code.

Or install document-extraction, the plugin that ships this one along with the rest of its 142 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for extract-insurance-claim-data

README.md
[![agentmods](https://agentmods.dev/badge/skills/iterationlayer/skills/extract-insurance-claim-data/github.svg)](https://agentmods.dev/skills/iterationlayer/skills/extract-insurance-claim-data)
Your own site
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-insurance-claim-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-insurance-claim-data/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for extract-insurance-claim-data

Your own site · 80×15
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-insurance-claim-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-insurance-claim-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,585 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 78% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.03585
Opus 5 $0.00008 $0.01792
Sonnet 5 $0.00003 $0.00717
Haiku 4.5 $0.00002 $0.00359

Measured 6d ago against content hash b48967871764, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

extract-insurance-claim-data scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.iterationlayer.com/document-extraction/v1/extract \
Origin

This is a copy

78% identical to compress-image-to-target-size — 447 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/extract-insurance-claim-data/SKILL.md · 510 lines

How it starts

The opening of the file, as written. The whole thing — 510 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Extract Insurance Claim Data

Insurance teams use this recipe to extract Insurance Claim details without manually rekeying policy, claim, coverage, and loss information into claims systems.

APIs Used

Document Extraction (1 credit per page)

Prerequisites

You need an Iteration Layer API key. Get one at platform.iterationlayer.com during the 7-day trial.

For full integration guidance (SDKs, auth, MCP, error handling), see the Iteration Layer Integration Guide.

Implementation

curl -X POST https://api.iterationlayer.com/document-extraction/v1/extract \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "files": [
    {
      "type": "url",
      "name": "insurance-claim.pdf",
      "url": "https://example.com/documents/insurance-claim-sample.pdf"
    }
  ],
  "schema": {
    "fields": [
      {
        "name": "policyholder_name",
        "type": "TEXT",
        "description": "Policyholder or insured name"
      },
      {
        "name": "policy_number",
        "type": "TEXT",
        "description": "Policy number"
      },
      {
        "name": "claim_or_certificate_number",
        "type": "TEXT",
        "description": "Claim number or certificate number"
      },
      {
        "name": "insurer_name",
        "type": "TEXT",
        "description": "Insurance carrier or administrator"
      },
      {
        "name": "loss_or_effective_date",
        "type": "DATE",
        "description": "Loss date, effective date, or certificate date"
      },
      {
        "name": "coverage_type",
        "type": "TEXT",
        "description": "Coverage or claim type"
      },
      {
        "name": "coverage_or_loss_lines",
        "type": "ARRAY",
        "description": "Coverage limits, loss entries, or claim line items",
        "fields": [
          {
            "name": "description",
            "type": "TEXT",
            "description": "Coverage, loss, or claim line description"
          },
          {
            "name": "amount",
            "type": "CURRENCY_AMOUNT",
            "description": "Line amount, limit, reserve, or paid value"
          }
        ]
      },
      {
        "name": "total_amount",
        "type": "CURRENCY_AMOUNT",
        "description": "Total claim, paid, reserve, or coverage amount"
      }
    ]
  }
}'

Read the full file on GitHub · 510 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 510 lines · 15 tokens per session scan A b48967871764

Subscribe to this mod's changes

extract-insurance-claim-data is a skill published in the GitHub repository iterationlayer/skills (3 stars, last pushed 3mo ago), licensed MIT. It adds 15 tokens to every session and 3,585 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 78% identical to compress-image-to-target-size, differing in 447 lines, and is treated as a copy.

Related

Other skills, from other repositories

slides

Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…

fcakyon/claude-codex-settings · 83 tokens

liteparse

Parse documents into LLM-ready content entirely on the local machine — PDF / DOCX / XLSX / PPTX / images → Markdown, structured JSON (with bounding boxes), or page screenshots, via the lit CLI. No cloud, no LLM, works offline. Use whenever the user attaches or points to a document that must be read before reasoning…

Prismer-AI/PrismerCloud · 90 tokens

ingest

Turn external URLs and documents into LLM-ready content — load + cache web pages (HQCC compression) and OCR PDFs/images to Markdown. Use whenever the user gives a URL, asks you to read a webpage, or attaches a PDF/scan that needs to be parsed before reasoning. Executes via the cloud load, cloud search, and cloud parse…

Prismer-AI/PrismerCloud · 79 tokens

mathodology-award-gates

Use when reviewing mathematical validity, evidence, reproducibility, figures or a submission draft.

sweetcornna/mathodology · 25 tokens

lov-any2deck

Generate professional slide deck images from content (Markdown, text, URLs). Creates outlines with style instructions, then generates individual slide images. Supports 16 visual styles, CJK/Latin mixed text, branding overlays, and PPTX/PDF export. Use when the user asks to "create slides", "make a presentation"…

lovstudio/skills · 110 tokens

lov-any2docx

Convert Markdown documents to professionally styled DOCX (Word) files with python-docx. Handles CJK/Latin mixed text, fenced code blocks, tables, blockquotes, cover pages, TOC field, watermarks, and page numbers. Supports multiple color themes matching any2pdf (Configurable Academic, Nord, GitHub Light, etc.) and is…

lovstudio/skills · 184 tokens