PDF Utilities Skill Overview This skill provides comprehensive PDF processing capabilities including reading PDFs with multiple library backends (tabula, camelot, PyPDF2), extracting tables to DataFrames, editing/extracting page ranges, handling fillable forms, and managing PDF comments. All operations are driven by YAML configuration. Key Components ReadPDF Class (read pdf.py) Multi-backend PDF reading with table extraction: - - Route to appropriate backend based on config - - Extract tables using tabula-py - - Extract tables using camelot - - Read PDF pages using PyPDF2 EditPDF Class (edit…