Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install canbaosama-architect-reading-ai-skills-docs-content-pdf-extractgit clone https://github.com/canbaoSama/Architect_Reading.gitcp Architect_Reading/SKILL.MD ~/.claude/skills/canbaosama-architect-reading-ai-skills-docs-content-pdf-extract/SKILL.md---
name: pdf-extract
description: "Extract text from PDF files for LLM processing"
metadata:
{
"openclaw":
{
"emoji": "📄",
"requires": { "bins": ["pdftotext"] },
"install":
[
{
"id": "dnf",
"kind": "dnf",
"package": "poppler-utils",
"bins": ["pdftotext"],
"label": "Install via dnf",
},
],
},
}
---
# 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
```bash
# Extract all text from a PDF
pdf-extract "document.pdf"
# Extract text from specific pages
pdf-extract "document.pdf" --pages 1-5
```
## Install
```bash
sudo dnf install poppler-utils
```