document-processor

Extract and convert text, tables, images, and metadata across PDF, DOCX, XLSX, PPTX formats.

12|1|Updated Nov 23, 2025
One-click install
npx skills add https://github.com/jiunbae/agent-skills --skill document-processor
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: document-processor
Source: https://github.com/jiunbae/agent-skills/tree/main/business/document-processor
Command: npx skills add https://github.com/jiunbae/agent-skills --skill document-processor

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pypdf, pdfplumber, pandas, openpyxl, python-pptx, markitdown, and includes scripts (resource) and references (resource) components.

What problem does it solve?

PDF, Word, Excel, PowerPoint 문서를 분석·요약·변환하고 데이터를 추출하는 통합 문서 처리 스킬입니다.

Core Features & Use Cases

  • 문서 분석: 텍스트/테이블/이미지 추출
  • AI 요약: 문서 내용 자동 요약
  • 포맷 변환: 문서 간 형식 변환(PDF↔DOCX, XLSX→CSV 등)
  • 데이터 추출/내보내기: JSON, CSV, Markdown 형식으로 추출

Quick Start

예시로 PDF를 텍스트/마크다운으로 변환하는 작업 등을 지시합니다.

Frequently Asked Questions about document-processor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract text and tables from PDF files?

Text and table extraction from PDFs works by parsing document structure using pdfplumber and pypdf to isolate content blocks and tabular data, then outputting structured results in JSON, CSV, or Markdown format for further analysis or integration.

Can I convert PDF documents to Word or other formats?

PDF to Word conversion is supported through bidirectional format transformation—read PDF content as text, tables, and metadata, then write to DOCX format using python-pptx and related libraries, preserving structure in the output document.

How do I export Excel data to CSV or other formats?

Excel to CSV export processes XLSX files using openpyxl to read sheets and cell data, then transforms and writes output as CSV, JSON, or Markdown, enabling data portability and downstream processing in any application.

What document formats does this support for analysis and conversion?

Supported formats include PDF, DOCX, XLSX, and PPTX for reading and writing. The Skill analyzes all formats to extract text, tables, and images, then converts between formats or exports to CSV, JSON, and Markdown as needed.

Can I automatically summarize document content?

AI-generated summaries are produced alongside extracted content—text, tables, and metadata are parsed from documents, then summarized automatically and output in JSON or Markdown, reducing manual review time for large batches.

When should I use document format conversion instead of manual export?

Automated conversion preserves formatting, tables, and metadata while eliminating manual labor for bulk processing; use it when you need repeatable, consistent output across multiple files or when preserving complex structure matters more than speed.