pdf-text-extract — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pdf-text-extract (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when a workflow needs machine-readable text from a digital PDF before summarization, classification, or structured extraction. The helper uses pure-Python PDF libraries when available and includes a simple line-based table detector for downstream cleanup.
User input:
Extract the text and rough tables from this PDF so Gemini can summarize it.Output:
# Copy assets/extract.py into your project, then:
from extract import extract_pdf
doc = extract_pdf("downloads/report.pdf")
print(doc["text"][:2000])
for table in doc["tables"]:
print(table["page"], table["rows"][:3])Install either pypdf or pdfminer.six in the target project. No OCR binary is required, and the helper fails clearly when the PDF has no extractable text.
Reference: assets/extract.py.
Distilled from production use across the author's automation projects. v1.0.0. See also: [[gemini-structured-output]], [[csv-report-writer]], [[s3-uploader]].
→ Build the full runnable bot with Trawlkit.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.