スキル一覧に戻る
cngwenyi

document-processor-pdf

by cngwenyi

A full-featured AI agent website with chat interface, user authentication, and AI model integration · Built with Manus

0🍴 0📅 2026年1月14日
GitHubで見るManusで実行

SKILL.md


name: "document-processor-pdf" description: "Parse, analyze, and extract content from PDF documents with OCR, table detection, and text extraction (Official Anthropic skill)" version: "1.0.0" author: "Anthropic (Adapted for CemaPay)" category: "documents" tags: ["pdf", "document-analysis", "ocr", "text-extraction", "invoice-processing"] requiresAuth: true source: "anthropic-official"

PDF Document Processor Skill

🎯 PURPOSE

Official Anthropic skill for PDF document analysis and extraction. Supports:

  • Text Extraction: Pull all text from PDFs (including scanned documents with OCR)
  • Table Detection: Parse structured tables and convert to JSON/CSV
  • Invoice Processing: Extract invoice data (amounts, dates, line items)
  • Form Parsing: Extract form field values
  • Image Extraction: Extract embedded images from PDFs

🔍 WHEN TO USE THIS SKILL

Trigger when users mention:

  • "extract PDF", "read PDF", "parse document"
  • "invoice processing", "extract invoice data"
  • "OCR", "scan document", "digitize"
  • "table extraction", "form data"

📋 CAPABILITIES

1. Text Extraction

extractPDF({
  file: "invoice.pdf",
  options: {
    ocr: true, // Enable OCR for scanned docs
    preserveLayout: true,
    extractTables: true,
    extractImages: false
  }
});

// Returns
{
  text: "Invoice #12345...",
  tables: [...],
  metadata: { pages: 3, author: "...", created: "..." }
}

2. Invoice Processing

Automatically extract:

  • Invoice number
  • Invoice date
  • Due date
  • Vendor/supplier info
  • Line items (description, quantity, price)
  • Subtotal, tax, total
  • Payment terms

3. OCR Support

  • Handles scanned documents
  • Multiple languages (English, French)
  • Handwriting recognition (limited)
  • Image quality enhancement

💡 INTEGRATION EXAMPLE

User: "Extract data from this invoice PDF"

AI Response:

I've analyzed the invoice PDF. Here's what I found:

INVOICE DETAILS:
Invoice #: INV-2025-1024
Date: October 24, 2025
Due Date: November 24, 2025

VENDOR:
ABC Supplies Ltd
Douala, Cameroon
Tax ID: CM123456789

LINE ITEMS:
1. Office Supplies - 450,000 XAF
2. IT Equipment - 1,200,000 XAF
3. Furniture - 800,000 XAF

SUBTOTAL: 2,450,000 XAF
VAT (18%): 441,000 XAF
TOTAL: 2,891,000 XAF

Payment Terms: Net 30
Bank Details: [Extracted]

Would you like me to:
1. Save this to accounting system?
2. Create payment transaction?
3. Export to Excel?

🔧 TECHNICAL DETAILS

  • Library: pdf-parse (Node.js), pdfplumber (Python)
  • OCR Engine: Tesseract OCR
  • Supported Formats: .pdf (including PDF/A)
  • Max File Size: 50 MB
  • Languages: English, French, German, Spanish

📚 DOCUMENTATION

Official Anthropic Documentation: https://docs.anthropic.com/en/docs/build-with-claude/agent-skills


Version: 1.0.0
Source: Anthropic Official Skills Library
Last Updated: October 24, 2025

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です