Ollie File Processor
Analysis
The skill appears to do what it claims—local file renaming and format conversion—but it can change user files and relies on manually installed conversion dependencies.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
if confirm.lower() == 'y':
for old_path, new_path in self.rename_operations:
old_path.rename(new_path)The script can batch-rename local files, which is the stated purpose and includes a confirmation prompt, but it is still a direct mutation of user files.
Pillow: 图片处理 (`pip install Pillow`) - pdf2image: PDF 转图片 (`pip install pdf2image`) - docx2pdf: DOCX 转 PDF (`pip install docx2pdf`) - markdown + weasyprint: Markdown 转 PDF (`pip install markdown weasyprint`)
The skill documents manual installation of third-party packages needed for its conversion features; this is purpose-aligned but introduces normal dependency provenance considerations.
