Pdf Generator
PassAudited by ClawScan on May 1, 2026.
Overview
This is an instruction-only PDF guidance skill with no executable files or credentials; its examples only show user-run local PDF generation and manipulation patterns.
This skill appears safe as documentation. If you implement its examples, use trusted package sources, keep work in a controlled folder, and be careful with sensitive documents such as invoices, contracts, resumes, or form PDFs.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If you copy or ask an agent to implement these examples, they may read and write local PDF files at the paths you provide.
The documentation examples read local PDF inputs and write output PDF files using caller-provided paths. This is purpose-aligned for PDF manipulation, but users should be aware that adapted examples can overwrite or create files wherever directed.
def merge_pdfs(input_files, output_file): ... reader = PdfReader(pdf_path) ... with open(output_file, "wb") as f: writer.write(f)
Run adapted code only on intended files, keep outputs inside a known working directory, avoid untrusted filenames or paths, and review before overwriting existing documents.
