npx claudepluginhub landing-ai/ade-document-processing-skillsAgent skills for LandingAI's Agentic Document Extraction (ADE) — production-ready document AI with 99%+ accuracy. Vision-first models that parse, extract, and classify documents with full auditability and traceability.
Agent skills for LandingAI's Agentic Document Extraction (ADE) — production-ready document AI that converts complex, real-world documents into accurate, structured data with full auditability and traceability.
These skills teach agentic coding assistants (Claude, Cursor, Roo Code, or any agent supporting the Agent Skills convention) how to write Python scripts that parse, extract, classify, and build processing pipelines for documents — without templates or ML training.
Core ADE SDK operations for parsing and extracting document content.
End-to-end pipeline patterns that compose ADE operations into production workflows.
landingai-ade and other dependencies as needed# Step 1: Add the marketplace
/plugin marketplace add landing-ai/ade-document-processing-skills
# Step 2: Install the plugin
/plugin install ade-document-processing@ade-document-processing-skills
Clone the repository:
git clone https://github.com/landing-ai/ade-document-processing-skills.git
Copy the skills into your project or home directory:
# Project-level (skills apply to this project only)
cp -R ade-document-processing-skills/plugins/ade-document-processing/skills/document-extraction YOUR_PROJECT/.claude/skills/
cp -R ade-document-processing-skills/plugins/ade-document-processing/skills/document-workflows YOUR_PROJECT/.claude/skills/
# Global (skills available in all projects)
cp -R ade-document-processing-skills/plugins/ade-document-processing/skills/document-extraction ~/.claude/skills/
cp -R ade-document-processing-skills/plugins/ade-document-processing/skills/document-workflows ~/.claude/skills/
Create a .env file in your project root:
echo 'VISION_AGENT_API_KEY=your-key-here' > .env
Get your key at va.landing.ai/settings/api-key.
The skills guide your agent to write Python scripts that process documents using ADE. Ask your agentic assistant:
"Write a Python script that reads all invoices under
./documents/and extracts the line items, descriptions, and prices as a CSV file""Write a script that extracts all figures from this scientific paper as individual PNG files"
"Write a script that reads account statements and extracts all transactions across pages into a single CSV file"
"Write a script that extracts the introduction section from this PDF and highlights every occurrence of a specific term with a translucent red overlay"
"Write a Python script that reads all PDFs in a folder, extracts the abstract and introduction sections, and saves them as plain text files"