Image Utils

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to be a straightforward image-processing helper, with disclosed local file and URL image handling plus user-directed dependency setup.

This looks safe for normal image resizing, cropping, conversion, and optimization. Before installing or using it, confirm you are comfortable installing Pillow and requests, use trusted image URLs, and choose output paths carefully to avoid overwriting files.

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 could download images from remote locations as part of a user-directed image workflow.

Why it was flagged

The utility can fetch an image from a user-supplied URL. This is expected for image loading, but remote URL access should be used only with trusted or intended image sources.

Skill content
response = requests.get(url, timeout=timeout, headers={"User-Agent": "BriaSkills/1.3.0"})
Recommendation

Use trusted image URLs and avoid asking the agent to fetch private, internal, or untrusted resources unless you intend that access.

What this means

The skill can write processed images to the local filesystem when directed.

Why it was flagged

The save helper creates output directories and writes image files to a supplied path. This is normal for an image utility, but incorrect paths could overwrite or create files in unintended locations.

Skill content
path.parent.mkdir(parents=True, exist_ok=True)
        save_image.save(path, **save_kwargs)
Recommendation

Specify safe output directories and review paths before saving over existing files.

What this means

Installing the skill’s recommended packages adds third-party Python libraries to the environment.

Why it was flagged

The skill documents external Python dependencies rather than using an install spec. These dependencies are appropriate for image processing and URL loading, but users should install them deliberately.

Skill content
pip install Pillow requests
Recommendation

Install dependencies from trusted package indexes and consider pinning versions in managed environments.