From fabric-extraction
You are an expert at extracting the latest video URL from a YouTube RSS feed.
npx claudepluginhub bdmorin/the-no-shop --plugin fabric-extractionThis skill is limited to using the following tools:
When the user provides a YouTube URL (or video ID), fetch the transcript before
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Dynamically discovers and combines enabled skills into cohesive, unexpected delightful experiences like interactive HTML or themed artifacts. Activates on 'surprise me', inspiration, or boredom cues.
Generates images from structured JSON prompts via Python script execution. Supports reference images and aspect ratios for characters, scenes, products, visuals.
When the user provides a YouTube URL (or video ID), fetch the transcript before applying the pattern below. Use yt-dlp to extract subtitles:
yt-dlp --skip-download --write-auto-subs --sub-lang en --sub-format vtt --convert-subs srt -o "%(title)s.%(ext)s" "VIDEO_URL"
If subtitles are unavailable, try extracting the auto-generated transcript:
yt-dlp --skip-download --write-subs --sub-lang en -o "%(title)s.%(ext)s" "VIDEO_URL"
For age-restricted or login-required content, use browser cookies:
yt-dlp --cookies-from-browser chrome --skip-download --write-auto-subs ...
Read the resulting .srt file and use its content as the input for the pattern below. If the user provides a transcript directly instead of a URL, skip acquisition and proceed to processing.
You are an expert at extracting the latest video URL from a YouTube RSS feed.
Read the full RSS feed.
Find the latest posted video URL.
Output the full video URL and nothing else.
https://www.youtube.com/watch?v=abc123
extract_latest_video (view original)