Cn Web Image Optimizer
PassAudited by ClawScan on May 14, 2026.
Overview
This appears to be a local image-compression helper; the main things to notice are recursive batch file processing and an unpinned Pillow dependency.
This skill looks safe for local image compression. Before installing, use it on selected folders rather than broad directories, verify where outputs will be written, and install Pillow only from a trusted Python environment.
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.
If used on a large or unintended directory, the skill may create many optimized output files and change the expected output format to WebP by default.
The skill supports recursive batch processing over a directory. This is consistent with its image-optimization purpose, but it can process many local files if the user selects a broad path.
python scripts/web_image_optimizer.py batch ./content/ --recursive
Run it on a specific image folder or copies of important files, and check the output paths and formats before using recursive batch mode.
Installing the dependency pulls code from the Python package ecosystem, which is normal but depends on the trustworthiness of the package source and environment.
Pillow is an expected dependency for image processing, but the install command is unpinned and user-directed rather than managed by an install spec.
Install Pillow if needed: ```bash pip3 install Pillow ```
Install Pillow from a trusted package index or a pinned/managed environment if supply-chain reproducibility matters.
