🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

PDF Read/Write Toolkit

by @droba07

Read, extract, and generate PDF files. Use when user asks to read PDF content, extract text/tables, merge PDFs, fill forms, or generate PDFs from HTML/Markdown.

Versionv1.0.0
Downloads384
TERMINAL
clawhub install pdf-rw-toolkit

πŸ“– About This Skill


name: pdf description: Read, extract, and generate PDF files. Use when user asks to read PDF content, extract text/tables, merge PDFs, fill forms, or generate PDFs from HTML/Markdown. metadata: openclaw: requires: bins: [python3] pip: [pdfplumber, pypdf, weasyprint]

PDF Skill

Read, extract, analyze, and generate PDF documents.

Capabilities

  • Extract text from PDF (full or per-page)
  • Extract tables from PDF as CSV/JSON
  • Get metadata (title, author, pages, etc.)
  • Merge multiple PDFs into one
  • Split PDF by page ranges
  • Generate PDF from HTML or Markdown
  • Fill PDF forms
  • Scripts

    All scripts are in scripts/ relative to this skill directory.

    Read / Extract

    # Extract all text
    python3 scripts/pdf_read.py 

    Extract text from specific pages (1-indexed)

    python3 scripts/pdf_read.py --pages 1,3,5-10

    Extract tables as CSV

    python3 scripts/pdf_read.py --tables --format csv

    Extract tables as JSON

    python3 scripts/pdf_read.py --tables --format json

    Get PDF metadata and page count

    python3 scripts/pdf_read.py --info

    Merge / Split

    # Merge multiple PDFs
    python3 scripts/pdf_merge.py output.pdf input1.pdf input2.pdf input3.pdf

    Split: extract specific pages

    python3 scripts/pdf_split.py input.pdf output.pdf --pages 1,3,5-10

    Generate

    # Generate PDF from HTML file
    python3 scripts/pdf_generate.py input.html output.pdf

    Generate PDF from HTML string

    python3 scripts/pdf_generate.py --html "

    Hello

    World

    " output.pdf

    Generate PDF from Markdown (converted to HTML first)

    python3 scripts/pdf_generate.py input.md output.pdf

    Usage Notes

  • For large PDFs, use --pages to limit extraction scope
  • Table extraction works best with well-structured tables; complex layouts may need manual cleanup
  • PDF generation via WeasyPrint supports CSS styling β€” pass a --css file for custom styles
  • All paths can be absolute or relative to the workspace