azure-ai-document-intelligence-dotnet

azure-ai-document-intelligence-dotnet is a skill for Claude Code from STELIORD/agentic-awesome-skills. It costs 34 tokens per session (2,525 once invoked), scanned A, a copy of azure-ai-document-intelligence-dotnet, MIT.

A .NET SDK for Azure Document Intelligence, a service that extracts text, tables, and structured fields from documents using prebuilt or custom models.

In plain words
What is it for?
Use it to process forms, invoices, and other documents in .NET applications and convert their contents into structured data.
Why use it?
It provides ready-to-use .NET clients for document analysis instead of requiring custom parsing code or direct REST requests.

Skill for Claude Code

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

Part of the agentic-awesome-skills plugin — 196 skills shipped together

Good fit Use it to process forms, invoices, and other documents in .NET applications and convert their contents into structured data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet
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 STELIORD/agentic-awesome-skills --skill azure-ai-document-intelligence-dotnet
Clone the repo
git clone --depth 1 https://github.com/STELIORD/agentic-awesome-skills

Made for: Claude Code.

Or install agentic-awesome-skills, the plugin that ships this one along with the rest of its 196 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 azure-ai-document-intelligence-dotnet

README.md
[![agentmods](https://agentmods.dev/badge/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet/github.svg)](https://agentmods.dev/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet)
Your own site
<a href="https://agentmods.dev/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet"><img src="https://agentmods.dev/badge/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet/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 azure-ai-document-intelligence-dotnet

Your own site · 80×15
<a href="https://agentmods.dev/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet"><img src="https://agentmods.dev/badge/skills/steliord/agentic-awesome-skills/azure-ai-document-intelligence-dotnet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,525 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 81% 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.00034 $0.02525
Opus 5 $0.00017 $0.01262
Sonnet 5 $0.00007 $0.00505
Haiku 4.5 $0.00003 $0.00252

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

Security

Grade A, and why

azure-ai-document-intelligence-dotnet scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

81% identical to azure-ai-document-intelligence-dotnet — 36 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.

plugins/agentic-awesome-skills-claude/skills/azure-ai-document-intelligence-dotnet/SKILL.md · 347 lines

How it starts

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

Azure.AI.DocumentIntelligence (.NET)

Extract text, tables, and structured data from documents using prebuilt and custom models.

Installation

dotnet add package Azure.AI.DocumentIntelligence
dotnet add package Azure.Identity

Current Version: v1.0.0 (GA)

Environment Variables

DOCUMENT_INTELLIGENCE_ENDPOINT=https://<resource-name>.cognitiveservices.azure.com/
DOCUMENT_INTELLIGENCE_API_KEY=<your-api-key>
BLOB_CONTAINER_SAS_URL=https://<storage>.blob.core.windows.net/<container>?<sas-token>

Authentication

Microsoft Entra ID (Recommended)

using Azure.Identity;
using Azure.AI.DocumentIntelligence;

string endpoint = Environment.GetEnvironmentVariable("DOCUMENT_INTELLIGENCE_ENDPOINT");
var credential = new DefaultAzureCredential();
var client = new DocumentIntelligenceClient(new Uri(endpoint), credential);

Note: Entra ID requires a custom subdomain (e.g., https://<resource-name>.cognitiveservices.azure.com/), not a regional endpoint.

API Key

string endpoint = Environment.GetEnvironmentVariable("DOCUMENT_INTELLIGENCE_ENDPOINT");
string apiKey = Environment.GetEnvironmentVariable("DOCUMENT_INTELLIGENCE_API_KEY");
var client = new DocumentIntelligenceClient(new Uri(endpoint), new AzureKeyCredential(apiKey));

Client Types

Client Purpose
DocumentIntelligenceClient Analyze documents, classify documents
DocumentIntelligenceAdministrationClient Build/manage custom models and classifiers

Prebuilt Models

Model ID Description
prebuilt-read Extract text, languages, handwriting
prebuilt-layout Extract text, tables, selection marks, structure
prebuilt-invoice Extract invoice fields (vendor, items, totals)
prebuilt-receipt Extract receipt fields (merchant, items, total)
prebuilt-idDocument Extract ID document fields (name, DOB, address)
prebuilt-businessCard Extract business card fields
prebuilt-tax.us.w2 Extract W-2 tax form fields
prebuilt-healthInsuranceCard.us Extract health insurance card fields

Read the full file on GitHub · 347 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. 8d ago First seen · 347 lines · 34 tokens per session scan A bb7d3abac52a

Subscribe to this mod's changes

azure-ai-document-intelligence-dotnet is a skill published in the GitHub repository STELIORD/agentic-awesome-skills (1 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 2,525 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 81% identical to azure-ai-document-intelligence-dotnet, differing in 36 lines, and is treated as a copy.

Related

Other skills, from other repositories