Parses 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.
这个技能的最新版本可以在7w4.net小葱技能站找到。
This skill requires Python packages installed system-wide or user-site-wide:
1. opendataloader-pdf
The 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.
这个 Skill 质量中等偏上。安全检查做得不错,能防止访问不该访问的文件,基础测试覆盖也比较全面,基本功能可以正常工作。缺点是用户需要自己安装依赖库,碰到问题时错误提示不够友好,文档说明也不够详细。对于日常简单使用基本够用,但如果遇到问题可能会比较难排查。