tl;dw - YouTube Video Summarizer

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill appears to be a real YouTube transcript summarizer, but it needs review because its optional logged-in-cookie mode is paired with disabled certificate checking.

Install only if you are comfortable running a local Python/yt-dlp script and external pip packages. For normal public videos the behavior is largely purpose-aligned. Be cautious with the cookie feature: use the narrowest YouTube-only cookie export possible, avoid untrusted networks, delete cookies and cache files after use, and consider removing the certificate-check bypass before using authenticated access.

Findings (4)

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

If you use the cookie option, your logged-in YouTube/browser session cookies may be handled less safely on the network.

Why it was flagged

The script can attach a user-supplied cookie file to yt-dlp while certificate validation is disabled, which weakens protection for authenticated YouTube session material.

Skill content
'nocheckcertificate': True,  # Bypass SSL issues ... if cookies_path and os.path.isfile(cookies_path): ... self.ydl_opts['cookiefile'] = cookies_path
Recommendation

Avoid the cookie option unless necessary. If restricted-video access is needed, use YouTube-only exported cookies, run only on a trusted network, remove the certificate-bypass setting if possible, and delete the cookie file after use.

What this means

The installed package versions may change over time and come from external package repositories.

Why it was flagged

Setup relies on installing third-party Python packages from pip without pinned versions. This is expected for the skill, but it is still a supply-chain surface users should verify.

Skill content
venv/bin/pip install yt-dlp webvtt-py
Recommendation

Install in an isolated virtual environment, consider pinning known-good versions, and review package provenance before running.

What this means

Summaries or transcripts from videos you access may remain on disk after the task finishes.

Why it was flagged

The skill stores retrieved transcript content locally. This is disclosed and useful for performance, but cached content may include private or members-only transcript data when cookies are used.

Skill content
Downloaded transcripts are cached locally to avoid re-downloading
Recommendation

Use a dedicated cache directory, clear it after sensitive videos, and avoid caching restricted content if that matters to you.

What this means

A video transcript could contain text that looks like instructions to the agent.

Why it was flagged

YouTube captions are external, untrusted text. Processing them directly in the agent context is normal for summarization, but the agent should treat transcript text as content to summarize rather than instructions to obey.

Skill content
Analyzes the cleaned transcript directly in the main agent session
Recommendation

When using the skill, keep transcript text isolated as quoted source material and ignore any embedded instructions inside the video content.