Instagram Photo Text Overlay

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a normal local image-processing skill for adding text overlays to photos, with only minor setup and local-script-execution considerations.

This skill looks safe for its stated purpose. Before installing, note that it runs a local Python image script and may require installing Pillow; use trusted package sources and choose input/output file paths carefully.

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 skill will run a local script to read a selected photo and create a new image file.

Why it was flagged

The skill instructs running a local Python helper script. This is expected for the image-processing purpose, but it is still local code execution using user-provided file paths.

Skill content
python3 scripts/overlay.py \
  --input photo.jpg \
  --output result.jpg
Recommendation

Run it only from the installed skill directory, use intended photo files, and avoid overwriting important files with the output path.

What this means

A user may need to install a third-party Python package before the skill works.

Why it was flagged

The skill depends on Pillow, but the registry metadata has no install spec or declared required binaries. This appears to be a setup/documentation gap rather than hidden behavior.

Skill content
- Python 3 + Pillow (`pip install Pillow`)
Recommendation

Install Pillow from a trusted package source or package manager, and consider pinning versions in controlled environments.