extract-dichiarazione-iva-data

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

A document-extraction recipe for Italian VAT declaration forms, turning information from those official tax documents into structured JSON data.

In plain words
What is it for?
Use it to extract taxpayer details, identifiers, authorities, and other fields from VAT declaration documents through the Iteration Layer API.
Why use it?
It avoids manually copying fields from forms and provides data that teams can review or use in later filing steps.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

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

Good fit Use it to extract taxpayer details, identifiers, authorities, and other fields from VAT declaration documents through the Iteration Layer API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iterationlayer/skills/extract-dichiarazione-iva-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-dichiarazione-iva-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-dichiarazione-iva-data

README.md
[![agentmods](https://agentmods.dev/badge/skills/iterationlayer/skills/extract-dichiarazione-iva-data/github.svg)](https://agentmods.dev/skills/iterationlayer/skills/extract-dichiarazione-iva-data)
Your own site
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-dichiarazione-iva-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-dichiarazione-iva-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-dichiarazione-iva-data

Your own site · 80×15
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-dichiarazione-iva-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-dichiarazione-iva-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,748 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 77% 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.00018 $0.03748
Opus 5 $0.00009 $0.01874
Sonnet 5 $0.00004 $0.00750
Haiku 4.5 $0.00002 $0.00375

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

Security

Grade A, and why

extract-dichiarazione-iva-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 12d 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

77% identical to compress-image-to-target-size — 477 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-dichiarazione-iva-data/SKILL.md · 540 lines

How it starts

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

Extract Dichiarazione Iva Data

Tax and finance teams use this recipe to extract Dichiarazione Iva fields from official forms into structured JSON for review, routing, and downstream filing preparation.

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": "dichiarazione-iva.pdf",
      "url": "https://example.com/documents/dichiarazione-iva-sample.pdf"
    }
  ],
  "schema": {
    "fields": [
      {
        "name": "taxpayer_name",
        "type": "TEXT",
        "description": "Taxpayer, filer, or recipient name"
      },
      {
        "name": "taxpayer_identifier",
        "type": "TEXT",
        "description": "Taxpayer identifier"
      },
      {
        "name": "issuer_or_authority",
        "type": "TEXT",
        "description": "Employer, payer, or tax authority"
      },
      {
        "name": "tax_period",
        "type": "TEXT",
        "description": "Tax year or filing period"
      },
      {
        "name": "tax_lines",
        "type": "ARRAY",
        "description": "Reported tax lines",
        "fields": [
          {
            "name": "code",
            "type": "TEXT",
            "description": "Box, line, or tax code"
          },
          {
            "name": "description",
            "type": "TEXT",
            "description": "Line description"
          },
          {
            "name": "amount",
            "type": "CURRENCY_AMOUNT",
            "description": "Reported amount"
          }
        ]
      },
      {
        "name": "taxable_amount",
        "type": "CURRENCY_AMOUNT",
        "description": "Taxable amount or tax base"
      },
      {
        "name": "tax_due_or_withheld",
        "type": "CURRENCY_AMOUNT",
        "description": "Tax due, assessed, or withheld"
      },
      {
        "name": "currency",
        "type": "CURRENCY_CODE",
        "description": "Currency code"
      }
    ]
  }
}'

Read the full file on GitHub · 540 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. 12d ago First seen · 540 lines · 18 tokens per session scan A 1fdecd384ca5

Subscribe to this mod's changes

extract-dichiarazione-iva-data is a skill published in the GitHub repository iterationlayer/skills (3 stars, last pushed 3mo ago), licensed MIT. It adds 18 tokens to every session and 3,748 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 77% identical to compress-image-to-target-size, differing in 477 lines, and is treated as a copy.

Related

Other skills, from other repositories

memstack-business-invoice-generator

Use this skill when the user says 'invoice', 'generate invoice', 'create invoice', 'bill client', 'line items', 'payment terms', or needs professional invoices with tax calculations and payment instructions. Do NOT use for contracts or financial projections.

cwinvestments/memstack · 57 tokens

investor-materials

Use when packaging or circulating the documents an investor reads outside the meeting — setting up or cleaning a data room, writing the one-pager or teaser that earns the first meeting, or drafting the recurring monthly investor update. NOT the slide narrative (that is pitch-deck), NOT the projection spreadsheet (that…

ericrisco/rsc-harness · 87 tokens

investment-memo-generator

Investment memo creation combining financial analysis, document generation, and structured templates. Use when creating investment memos, pitch decks, deal summaries, or investment committee materials.

travisjneuman/.claude · 37 tokens

lov-expense-report

A tool that reads invoice photos, scanned receipts, or expense descriptions and turns them into a categorized Excel reimbursement report. It extracts details such as date, vendor, item, amount, and notes.

lovstudio/skills · 127 tokens

aside-notion

Read this skill when you need to use Notion. Don't have to open a browser tab.

KunanonJ/ai-skills-hub · 23 tokens

aside-google-docs

Read this skill when you need to read or write Google Docs. Reading works without opening a browser tab.

KunanonJ/ai-skills-hub · 26 tokens