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.
npx agentmods add skills/landing-ai/ade-document-processing-skills/document-extractionnpx skills add landing-ai/ade-document-processing-skills --skill document-extractiongit clone --depth 1 https://github.com/landing-ai/ade-document-processing-skillsWrote 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.
[](https://agentmods.dev/skills/landing-ai/ade-document-processing-skills/document-extraction)<a href="https://agentmods.dev/skills/landing-ai/ade-document-processing-skills/document-extraction"><img src="https://agentmods.dev/badge/skills/landing-ai/ade-document-processing-skills/document-extraction.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00159 | $0.08201 |
| Opus 5 | $0.00079 | $0.04100 |
| Sonnet 5 | $0.00032 | $0.01640 |
| Haiku 4.5 | $0.00016 | $0.00820 |
Grade A, and why
document-extraction 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 today.
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.ade.landing.ai/v2/parse/jobs' \ How it starts
The opening of the file, as written. The whole thing — 407 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Document Extraction (ADE)
Overview
LandingAI's Agentic Document Extraction (ADE) is a document processing service that parses, extracts, and classifies documents without templates or training. The REST APIs are the primary interface. Official libraries wrap them for Python (landingai-ade on PyPI) and TypeScript (landingai-ade on npm).
ADE has two API generations. The v2 APIs (powered by DPT-3) are the current generation for parsing and extraction. Several capabilities exist only as v1 APIs and remain fully supported.
| API | Version | Endpoint | Guide |
|---|---|---|---|
| Parse | v2 | POST https://api.ade.landing.ai/v2/parse |
https://docs.landing.ai/dpt3/parse |
| Parse Jobs | v2 | POST/GET https://api.ade.landing.ai/v2/parse/jobs |
https://docs.landing.ai/dpt3/parse-async |
| Extract | v2 | POST https://api.ade.landing.ai/v2/extract |
https://docs.landing.ai/dpt3/extract |
| Extract Jobs | v2 | POST/GET https://api.ade.landing.ai/v2/extract/jobs |
https://docs.landing.ai/dpt3/extract-async |
| Classify | v1 | POST https://api.va.landing.ai/v1/ade/classify |
https://docs.landing.ai/ade/ade-classify |
| Section | v1 | POST https://api.va.landing.ai/v1/ade/section |
https://docs.landing.ai/ade/ade-section |
| Build Extract Schema | v1 | POST https://api.va.landing.ai/v1/ade/extract/build-schema |
https://docs.landing.ai/ade/ade-extract-schema-api |
| Split | v1 | POST https://api.va.landing.ai/v1/ade/split |
https://docs.landing.ai/ade/ade-split |
| Parse (superseded) | v1 | POST https://api.va.landing.ai/v1/ade/parse |
https://docs.landing.ai/ade/parse |
| Extract (superseded) | v1 | POST https://api.va.landing.ai/v1/ade/extract |
https://docs.landing.ai/ade/ade-extract |
Every linked docs page can be fetched as raw Markdown by appending .md to its URL (for example, https://docs.landing.ai/dpt3/parse.md). A page index lives at https://docs.landing.ai/llms.txt. Full request and response contracts are in the API reference (linked per endpoint below).
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- today Changed · -4 lines 1256bccf063a
- 5d ago First seen · 411 lines · 159 tokens per session scan A 16eb03a30ca2
document-extraction is a skill published in the GitHub repository landing-ai/ade-document-processing-skills (64 stars, last pushed yesterday), licensed MIT. It adds 159 tokens to every session and 8,201 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
sn-da-excel-workflow
Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV 并提供下载链接。覆盖从数据读取到报告生成全流程,按步骤编排 capability 子 skill。遇到以下任一情况就主动使用本 skill,不要自行写几行 pandas 就回答:①用户出现触发词:Excel 分析 / 表格分析 / 数据分析 / 数据清洗 / 数据统计 / 数据筛选 / 数据可视化 / 数据导出 / 汇总统计 /…
sn-da-large-file-analysis
万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…
pdf-analysis
PDF 文档解析。自动区分文字型 PDF 与扫描型 PDF,覆盖:文本/表格提取、多页全量扫描、嵌入图表 caption、单位感知数值计算。.
ppt-analysis
PPT (.pptx/.ppt) 全量解析。覆盖:所有 slide 文本/表格/图表提取、嵌入图片 caption、纯图片 slide 渲染识别、数据标签提取。.
category-filtering-and-difficulty-analysis
对Excel数据进行自定义分类统计、交叉分析与可视化,并基于多维度指标(如文本长度、术语密度、正则匹配等)进行综合评分与分级,适用于多类别数据分布统计及文本内容难度/质量评估场景。.
word-analysis
Word (.docx/.doc) 文档全量解析。覆盖:正文/段落文本提取、表格数据提取、高亮/颜色格式读取、多文件汇总对比、嵌入图片转 caption。.