Youtube Video Analyzer

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a purpose-aligned YouTube analysis skill that uses standard media tools to download subtitles/video and extract frames locally, with no evidence of hidden credential use, persistence, or destructive behavior.

Before installing, confirm you are comfortable with the skill installing yt-dlp and using local tools to download YouTube subtitles/video into a temporary directory for analysis. There is no evidence in the provided artifacts of hidden persistence, credential access, or unrelated data collection.

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

Using the skill can download media and create local transcript/frame files, which may use bandwidth and disk space.

Why it was flagged

The skill directs the agent to run media download and processing commands on a user-supplied video URL. This is expected for the stated purpose, but it is still meaningful local tool use with network and filesystem effects.

Skill content
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" \
       -o "$WORK_DIR/video.mp4" "$VIDEO_URL"
Recommendation

Use it for videos you intend to analyze, and be mindful of long videos or large downloads.

What this means

Installing the skill may install or update yt-dlp from an external package source.

Why it was flagged

The skill depends on installing an external package-provided binary. yt-dlp is directly relevant to the skill’s purpose, but users are still relying on the package source and version resolved at install time.

Skill content
[0] uv | package: yt-dlp | creates binaries: yt-dlp
Recommendation

Install from trusted package sources and consider pinning or verifying package versions in controlled environments.