Pdf Pro

PassAudited by ClawScan on May 1, 2026.

Overview

This PDF utility appears to do the advertised local PDF operations, with only normal cautions around file overwrites and manual package installation.

This looks like a normal local PDF tool. Before installing, use a virtual environment if possible, install dependencies from trusted sources, and double-check file paths so private documents are processed intentionally and outputs do not overwrite important files.

Findings (2)

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

If the user or agent supplies the wrong output path, an existing local file could be replaced or new files could be created somewhere unexpected.

Why it was flagged

The tool writes generated PDFs directly to a user-provided output path. This is expected for PDF editing, but an incorrect path could overwrite or create files in unintended locations.

Skill content
with open(output_file, 'wb') as f:
                writer.write(f)
Recommendation

Confirm input and output paths before running operations, and avoid pointing outputs at important existing files unless overwriting is intended.

What this means

The installed dependency versions may vary across environments, and compromised or unexpected packages could affect the local system.

Why it was flagged

The skill relies on manually installing third-party Python packages without pinned exact versions. This is common and purpose-aligned for a PDF utility, but users should install from trusted package sources.

Skill content
安装依赖: `pip install PyPDF2 pdfplumber Pillow reportlab pypdfium2`
Recommendation

Install dependencies from the official Python package index or a trusted mirror, and consider using a virtual environment with pinned versions.