Docling Document Intelligence
Summary
Parse, convert, chunk, and structurally analyze PDFs, DOCX, PPTX, HTML, and images with IBM's open-source Docling toolkit.
Features
- Parses PDF/DOCX/PPTX/HTML/images to Markdown or structured JSON
- Hybrid heading+token chunking purpose-built for RAG ingestion
- Standard vs VLM pipeline selection guidance
- Structural analysis: headings, tables, figures, reading order
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Description
Docling Document Intelligence wraps IBM's open-source Docling library, a widely used document-conversion toolkit, as an agent skill for parsing, converting, chunking, and structurally analyzing documents. It handles local file paths and URLs across PDF, DOCX, PPTX, HTML, and image inputs, outputting either clean Markdown or a fully structured JSON representation that preserves headings, tables, figures, and reading order.
Conversion runs primarily through the docling CLI, with the Python API reserved for features the CLI does not expose, including hybrid heading-plus-token chunking built for RAG ingestion, VLM remote-API endpoint configuration, and a hybrid text-extraction mode. The skill documents a genuine decision point most document tools gloss over: a standard pipeline that is fast and needs no GPU versus a VLM pipeline that is GPU-dependent and slower but far better on complex layouts, handwriting, and formulas, with guidance on picking correctly per document. Because Docling is mature and already used broadly in RAG and document-AI pipelines, this skill is a strong default whenever a document needs to be converted, chunked for retrieval, or structurally analyzed rather than just OCR'd.
Related Skills
GLM-OCR Table Recognition
by Z.ai (Zhipu AI)
Extract complex tables, including merged cells and multi-row headers, from images and PDFs into clean Markdown.
PaddleOCR Document Parsing
by PaddlePaddle
Turn PDFs and scanned images into structured Markdown/JSON: cell-level tables, LaTeX formulas, correct multi-column order.