← Back to list

pdf-processing
by hemanth
Creating and managing customizable AI agents, utilizing Ollama for evaluation.
⭐ 12🍴 1📅 Jan 24, 2026
SKILL.md
name: pdf-processing description: Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.
PDF Processing Skill
Quick Start
Use pdfplumber to extract text from PDFs:
import pdfplumber
with pdfplumber.open("document.pdf") as pdf:
text = pdf.pages[0].extract_text()
print(text)
Capabilities
1. Text Extraction
Extract all text from a PDF document:
def extract_all_text(pdf_path):
with pdfplumber.open(pdf_path) as pdf:
full_text = ""
for page in pdf.pages:
full_text += page.extract_text() or ""
return full_text
2. Table Extraction
Extract tables from PDF pages. For detailed table extraction, see [[TABLES.md]].
Basic example:
with pdfplumber.open("document.pdf") as pdf:
tables = pdf.pages[0].extract_tables()
for table in tables:
print(table)
3. Form Filling
Fill PDF forms programmatically. For comprehensive form-filling guide, see [[FORMS.md]].
Best Practices
- Performance: For large PDFs, process page-by-page to avoid memory issues
- OCR: For scanned PDFs without text layer, recommend using OCR tools first
- Encoding: Handle UTF-8 encoding properly when extracting text
Common Use Cases
- Invoice text extraction
- Table data scraping from reports
- PDF form automation
- Document merging and splitting
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon