Skill Video Caption Overlay
PassAudited by ClawScan on May 1, 2026.
Overview
This skill coherently renders captions onto user-provided videos, with the main thing to notice being that it runs unpinned Python dependencies through uv.
This appears safe for its stated purpose. Before installing, be aware that it runs a local Python video-rendering script and may fetch MoviePy and Pillow through uv; use explicit input/output paths and consider pinning dependencies if you need reproducible or tightly controlled builds.
Findings (1)
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.
Using the skill may download current versions of Python packages, so behavior can depend on the package versions uv resolves.
The documented workflow installs or resolves MoviePy and Pillow through uv without pinned versions. This is expected for a Python video-rendering skill, but users should be aware that package resolution depends on the external package source at run time.
uv run --with moviepy --with pillow scripts/overlay.py
If reproducibility or supply-chain control matters, pin dependency versions or run it in a controlled environment before processing important media.
