Video Post Production
Analysis
This skill appears to do the advertised local video post-production work, with the main cautions being local command execution, an unpinned dependency install, and transcript files saved beside the video.
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.
python3 <skill-path>/scripts/render_video.py ... --input "<input_video>" ... --output "<workdir>/final.mp4"
The workflow explicitly runs bundled Python scripts and ffmpeg-based processing to render the user's video. This command execution is disclosed and central to the skill's purpose.
pip3 install faster-whisper
The setup guidance installs an external Python package without a pinned version or checksum. This is purpose-aligned for transcription, but it depends on package-source trust.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"text": segment.text.strip(), "words": words_data
The transcription script writes spoken text and word-level timing into the alignment JSON. That is expected for subtitle generation, but it persists private speech as text.
