スキル一覧に戻る
kitproj

pdf-processing

by kitproj

Get the session context for a coding agent.

2🍴 1📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: pdf-processing description: Extract text and tables from PDF files, fill PDF forms, and merge multiple PDFs. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction. license: Apache-2.0 metadata: author: example-org version: "1.0"

PDF Processing

When to use this skill

Use this skill when the user needs to work with PDF files, including:

  • Extracting text or tables from PDF documents
  • Filling out PDF forms programmatically
  • Merging multiple PDF files into one
  • Splitting PDF files into separate documents

How to extract text

  1. Use pdfplumber for text extraction:
    import pdfplumber
    with pdfplumber.open('document.pdf') as pdf:
        text = pdf.pages[0].extract_text()
    

How to fill forms

  1. Use PyPDF2 to fill form fields:
    from PyPDF2 import PdfReader, PdfWriter
    reader = PdfReader('form.pdf')
    writer = PdfWriter()
    # Fill fields here
    

How to merge documents

See the reference guide for details.

スコア

総合スコア

60/100

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

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

レビュー

💬

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