youtube-data

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only skill is purpose-aligned for fetching YouTube data through TranscriptAPI, but users should notice that it requires a third-party API key and may store that key persistently.

Before installing, be comfortable sharing YouTube lookup inputs with transcriptapi.com and storing a TranscriptAPI API key for future use. Prefer a secure secret manager or the agent runtime's normal secret mechanism, and review where the key will be persisted.

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

YouTube URLs, creator names, or search terms may be sent to transcriptapi.com, and some requests consume TranscriptAPI credits.

Why it was flagged

The skill directs the agent to make external HTTP requests using user-provided YouTube/search inputs and the TranscriptAPI key. This is central to the skill's purpose and is clearly documented.

Skill content
curl -s "https://transcriptapi.com/api/v2/youtube/search?q=QUERY&type=video&limit=20" ... Authorization: Bearer $TRANSCRIPT_API_KEY
Recommendation

Use it for intended YouTube-data lookups, avoid sending sensitive search terms unnecessarily, and monitor TranscriptAPI credit usage.

What this means

The configured environment or agent may be able to use the user's TranscriptAPI account and credits in future sessions.

Why it was flagged

The setup flow has the agent collect or create a TranscriptAPI credential and persist it in the user's environment. This is purpose-aligned but involves sensitive account credentials.

Skill content
If yes, paste your API key and I'll set it up. If not, I can create a free account for you right now ... Store it persistently ... available in future sessions, including non-interactive shells
Recommendation

Store the key only in a trusted secret store or secure environment configuration, confirm where it is saved, and revoke or rotate the key if it is exposed.