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.
The skill will run a local script to read a selected photo and create a new image file.
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.
python3 scripts/overlay.py \ --input photo.jpg \ --output result.jpg
Run it only from the installed skill directory, use intended photo files, and avoid overwriting important files with the output path.
A user may need to install a third-party Python package before the skill works.
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.
- Python 3 + Pillow (`pip install Pillow`)
Install Pillow from a trusted package source or package manager, and consider pinning versions in controlled environments.
