PDF Skill

SkillDocs & knowledge

Extract text from PDF documents

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the PDF Skill skill

What this skill tells your AI

The instructions your AI receives, as published by axoviq-ai/synthadoc in synthadoc/skills/pdf/SKILL.md and read by ahel’s review.

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.pyPdfSkill class

References

  • references/cjk-notes.md — notes on CJK font handling

Signals

GitHub stars
1k
Forks
123
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
pdf-axoviq-ai
Source
github.com/axoviq-ai/synthadoc