Extract text from PDF documentsFrom its SKILL.md
npx -y skills add axoviq-ai/synthadoc --skill pdfAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- runs commandsInstructs the agent to run 1 command, including `pip install pypdf pdfminer.six`.
What its file declares
Copied from the file, not written here
The file declares its own license as AGPL-3.0-or-later. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.1 KB, 229 tokens by cl100k_base, as published. Nobody here has run it
PDF Skill
Extracts text from PDF files using pypdf as the primary parser, with
pdfminer.six as a fallback for CJK fonts that pypdf cannot decode
(detected when pypdf yields fewer than 50 characters per page on average).
Setup
pip install pypdf pdfminer.six
Standalone usage
import asyncio
from synthadoc.skills.pdf.scripts.main import PdfSkill
skill = PdfSkill()
async def main():
result = await skill.extract("/path/to/paper.pdf")
print(result.text) # extracted text from all pages
print(result.metadata) # {"pages": N, "cjk_fallback": bool, ...}
asyncio.run(main())
When this skill is used
- Source path ends with
.pdf - User intent contains:
pdf,research paper
Scripts
scripts/main.py—PdfSkillclass
References
references/cjk-notes.md— notes on CJK font handling
What ships with it: 4 files
4.0 KB alongside SKILL.md, 2 of them executable
references/
- cjk-notes.md399 B
scripts/
- __init__.pyruns0 B
- main.pyruns3.6 KB
- requirements.txt19 B