Auto-Updater Skill
一个面向 Other 场景的 Agent 技能。原始说明:Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
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",
},
],
},
}
Extract text from PDF files for LLM processing. Uses pdftotext from the poppler-utils package to convert PDF documents into plain text.
# Extract all text from a PDF
pdf-extract "document.pdf"
# Extract text from specific pages
pdf-extract "document.pdf" --pages 1-5
sudo dnf install poppler-utils