Image Utils
Analysis
This skill appears to be a straightforward image-processing helper, with disclosed local file and URL image handling plus user-directed dependency setup.
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.
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.
response = requests.get(url, timeout=timeout, headers={"User-Agent": "BriaSkills/1.3.0"})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.
path.parent.mkdir(parents=True, exist_ok=True)
save_image.save(path, **save_kwargs)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.
pip install Pillow requests
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.
