Image Highlight Cropper

PassAudited by ClawScan on May 10, 2026.

Overview

The skill is a coherent image-cropping helper, but users should notice that it may run local Python and optionally install Pillow if missing.

This skill appears safe for cropping details from uploaded images. Be aware that it runs local Python, saves generated crops as downloadable files, and may ask to install Pillow if the library is missing; approve that install step only in an environment where package changes are acceptable.

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

The agent may execute local image-processing code and create downloadable crop files from the image you uploaded.

Why it was flagged

The skill instructs the agent to run local Python through a shell tool and write output files. This is expected for an image-cropping skill and is scoped to uploaded images and output crops.

Skill content
Use the `bash_tool` + Python to: 1. Load the image from `/mnt/user-data/uploads/<filename>` ... Save each crop to `/mnt/user-data/outputs/highlight_1.jpg`
Recommendation

Use it for images you intend to process, and review the generated files before sharing them elsewhere.

What this means

If Pillow is missing, the agent may try to change the local Python environment to install it.

Why it was flagged

The skill documents an optional package installation from PyPI without a pinned version and with an environment-overriding flag. This is purpose-aligned but should be user-approved.

Skill content
If Pillow is not installed: `pip install Pillow --break-system-packages`
Recommendation

Prefer installing Pillow in a controlled environment or virtual environment, and approve the install step only if you are comfortable modifying the runtime.