Openclaw-master-skills pdf-extract
Extract text from PDF files for LLM processing
install
source · Clone the upstream repo
git clone https://github.com/LeoYeAI/openclaw-master-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/pdf-extract" ~/.claude/skills/leoyeai-openclaw-master-skills-pdf-extract && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/pdf-extract" ~/.openclaw/skills/leoyeai-openclaw-master-skills-pdf-extract && rm -rf "$T"
manifest:
skills/pdf-extract/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- uses sudo
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
PDF Extract
Extract text from PDF files for LLM processing. Uses
pdftotext from the poppler-utils package to convert PDF documents into plain text.
Commands
# Extract all text from a PDF pdf-extract "document.pdf" # Extract text from specific pages pdf-extract "document.pdf" --pages 1-5
Install
sudo dnf install poppler-utils