Video Downloader

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do what it says: use yt-dlp to download user-requested videos locally, with expected notes about running a local downloader and optional local preference memory.

This looks safe to install if you are comfortable using yt-dlp locally. Before using it, confirm that yt-dlp comes from a trusted install source, download only content you have rights to save, review the output folder, and decide whether you want the optional ~/video-downloader/ preference memory.

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 selected video site will receive the media request, and downloaded files will be created in the chosen local folder.

Why it was flagged

The wrapper invokes the local yt-dlp tool on a user-supplied URL and writes output to a local path. This is disclosed and purpose-aligned, but users should recognize it performs network and file-writing actions.

Skill content
cmd = ["yt-dlp", "--no-playlist", "--no-progress"] ... cmd.extend(["-o", output_template, args.url])
Recommendation

Use only URLs you intend to download, confirm the output directory, and avoid raw/custom yt-dlp flags unless you understand their effect.

What this means

Saved preferences such as output location, quality, or format may affect future downloads.

Why it was flagged

The skill may persist user preferences locally so future downloads use remembered defaults. The behavior is bounded and optional, but it can influence later actions.

Skill content
ask if they want this behavior remembered for future video links. If yes, store that preference in their local memory file.
Recommendation

Only enable preference memory if desired, and inspect or delete ~/video-downloader/ if you want to reset remembered behavior.