use_pdf

PassAudited by ClawScan on May 11, 2026.

Overview

This PDF utility skill appears purpose-aligned and not malicious, but it uses local scripts and PDF tools that can read, write, or decrypt user-selected PDFs.

This skill looks reasonable for local PDF work. Before installing, be prepared to manage trusted PDF dependencies, confirm file paths before running scripts, and protect intermediate images, JSON files, or decrypted PDFs if the documents contain sensitive information.

Findings (3)

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.

What this means

The agent may run local scripts that read PDFs and create output files when handling PDF tasks.

Why it was flagged

The skill directs execution of included local helper scripts. This is expected for PDF form processing, but users should know it runs local Python code on selected files.

Skill content
Run this script from this file's directory: `python scripts/extract_form_field_info.py <input.pdf> <field_info.json>`
Recommendation

Use the scripts only on PDFs you intended to process, and review input/output paths before running form-filling workflows.

What this means

If used without care, the skill could create unprotected copies of sensitive protected PDFs.

Why it was flagged

The documented command-line workflow includes decrypting or removing password protection from PDFs. This is purpose-aligned, but it can alter document access protections.

Skill content
qpdf --password=mypassword --decrypt encrypted.pdf decrypted.pdf
Recommendation

Only decrypt PDFs you are authorized to modify, and store decrypted outputs securely.

What this means

The skill may fail until dependencies are installed, and users could install them from untrusted sources if setup is not documented.

Why it was flagged

The included scripts rely on third-party libraries, while the registry metadata states there is no install spec and no required binaries. This is not malicious, but dependency setup and provenance are under-declared.

Skill content
from pdf2image import convert_from_path
Recommendation

Install required PDF libraries and tools from trusted package managers or official sources, and avoid ad hoc downloads.