Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add hyqibot/token-free-openclaw --skill pdfgit clone --depth 1 https://github.com/hyqibot/token-free-openclawWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hyqibot/token-free-openclaw/pdf)<a href="https://agentmods.dev/skills/hyqibot/token-free-openclaw/pdf"><img src="https://agentmods.dev/badge/skills/hyqibot/token-free-openclaw/pdf/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hyqibot/token-free-openclaw/pdf"><img src="https://agentmods.dev/badge/skills/hyqibot/token-free-openclaw/pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00092 | $0.02231 |
| Opus 5 | $0.00046 | $0.01115 |
| Sonnet 5 | $0.00018 | $0.00446 |
| Haiku 4.5 | $0.00009 | $0.00223 |
Grade A, and why
pdf scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
84% identical to pdf — 35 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 330 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Important: All
scripts/paths are relative to this skill directory. Run with:cd {this_skill_dir} && python scripts/...Or use thecwdparameter ofexecute_shell_command.
PDF Processing Guide
Prerequisites
- pypdf: core PDF reading and writing
- pdfplumber: text and table extraction
- reportlab: PDF creation
- pdftotext (poppler-utils): command-line text extraction
- pdftoppm (poppler-utils): PDF-to-image conversion
- qpdf: PDF manipulation (merge, split, rotate, decrypt)
Overview
This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.
Quick Start
from pypdf import PdfReader, PdfWriter
# Read a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")
# Extract text
text = ""
for page in reader.pages:
text += page.extract_text()
Python Libraries
pypdf - Basic Operations
Merge PDFs
from pypdf import PdfWriter, PdfReader
writer = PdfWriter()
for pdf_file in ["doc1.pdf", "doc2.pdf", "doc3.pdf"]:
reader = PdfReader(pdf_file)
for page in reader.pages:
writer.add_page(page)
with open("merged.pdf", "wb") as output:
writer.write(output)
Split PDF
reader = PdfReader("input.pdf")
for i, page in enumerate(reader.pages):
writer = PdfWriter()
writer.add_page(page)
with open(f"page_{i+1}.pdf", "wb") as output:
writer.write(output)
Extract Metadata
reader = PdfReader("document.pdf")
meta = reader.metadata
print(f"Title: {meta.title}")
print(f"Author: {meta.author}")
print(f"Subject: {meta.subject}")
print(f"Creator: {meta.creator}")
Rotate Pages
reader = PdfReader("input.pdf")
writer = PdfWriter()
page = reader.pages[0]
page.rotate(90) # Rotate 90 degrees clockwise
writer.add_page(page)
with open("rotated.pdf", "wb") as output:
writer.write(output)
What ships with it
27 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- forms.md 12 KB
- LICENSE.txt 1.4 KB
- reference.md 16 KB
- scripts/__pycache__/check_bounding_boxes.cpython-310.pyc 2.4 KB
- scripts/__pycache__/check_fillable_fields.cpython-310.pyc 432 B
- scripts/__pycache__/convert_pdf_to_images.cpython-310.pyc 1.1 KB
- scripts/__pycache__/create_validation_image.cpython-310.pyc 1.2 KB
- scripts/__pycache__/extract_form_field_info.cpython-310.pyc 3.4 KB
- scripts/__pycache__/extract_form_structure.cpython-310.pyc 2.9 KB
- scripts/__pycache__/fill_fillable_fields.cpython-310.pyc 3.8 KB
- scripts/__pycache__/fill_pdf_form_with_annotations.cpython-310.pyc 2.6 KB
- scripts/check_bounding_boxes.py 2.7 KB runs code
- scripts/check_bounding_boxes.pyd 347 KB
- scripts/check_fillable_fields.py 268 B runs code
- scripts/check_fillable_fields.pyd 316 KB
- scripts/convert_pdf_to_images.py 1008 B runs code
- scripts/convert_pdf_to_images.pyd 331 KB
- scripts/create_validation_image.py 1.2 KB runs code
- scripts/create_validation_image.pyd 335 KB
- scripts/extract_form_field_info.py 4.2 KB runs code
- scripts/extract_form_field_info.pyd 356 KB
- scripts/extract_form_structure.py 3.9 KB runs code
- scripts/extract_form_structure.pyd 356 KB
- scripts/fill_fillable_fields.py 3.7 KB runs code
- scripts/fill_fillable_fields.pyd 356 KB
- scripts/fill_pdf_form_with_annotations.py 3.2 KB runs code
- scripts/fill_pdf_form_with_annotations.pyd 353 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 330 lines · 92 tokens per session scan A 8a16567cb358
pdf is a skill published in the GitHub repository hyqibot/token-free-openclaw (123 stars, last pushed 18d ago), licensed Apache-2.0. It adds 92 tokens to every session and 2,231 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 84% identical to pdf, differing in 35 lines, and is treated as a copy.
Other skills, from other repositories
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and…
pdf-reader
PDF content extraction and analysis specialist.
add-pdf-reader
Add PDF reading to ClaudeClaw agents. Extracts text from PDFs via pdftotext CLI. Handles WhatsApp attachments, URLs, and local files.
research-to-diagram
A workflow that researches a topic on the internet, organizes the findings, and produces a visual relationship map as a PDF.
nano-pdf
Edit or create PDFs with natural-language instructions using the nano-pdf CLI. Use when asked to make a PDF, edit a PDF, add pages, change text in a PDF, or convert content to PDF format.
swmm-report
Generate a client-deliverable Word (.docx) report from an audited SWMM run directory. Reads manifest.json, experimentprovenance.json, modeldiagnostics.json, comparison.json, and any PNG figures — SWMM is never re-run. Supports custom YAML/JSON section templates.