Install
openclaw skills install @trshdesigns/pdf-parser-agentParses local PDF files into structured Markdown and JSON using opendataloader-pdf for deterministic, local document content extraction.
openclaw skills install @trshdesigns/pdf-parser-agentParses local PDF files into structured Markdown and JSON formats using the opendataloader-pdf library, providing deterministic, local data extraction that bypasses LLM context limits for document content ingestion.
This skill is built upon opendataloader-pdf, originally developed by bundolee and claude.
This skill requires Python packages installed system-wide or user-site-wide:
opendataloader-pdfThe skill's execution script dynamically finds the correct user-site packages path, assuming the user has installed the dependency via pip install --user opendataloader-pdf.
# Assuming a PDF exists at 'Files for testing/sample-local-pdf.pdf'
openclaw skill pdf-parser-agent --run --args "Files for testing/sample-local-pdf.pdf"
The underlying logic now uses site.getusersitepackages() to dynamically locate the installed package, maximizing portability across different OS/Python minor versions.