agentsclimarketplace

Fetch youtube auto closed captions

Skill cmd-christopher/fetch-youtube-auto-closed-captions

Download YouTube auto-generated closed captions (VTT) with yt-dlp when a user provides a YouTube URL or video ID and wants auto-subs/transcripts; includes checking for yt-dlp and offering install guidance if missing.From its SKILL.md

Install
npx -y skills add cmd-christopher/fetch-youtube-auto-closed-captions

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.7 KB, 352 tokens by cl100k_base, as published. Nobody here has run it

YouTube auto captions via yt-dlp

Use this skill to fetch auto-generated English captions from YouTube using yt-dlp.

Workflow

  1. Accept a YouTube URL or video ID from the user.
  2. Check if yt-dlp is available.
  3. If missing, ask the user if they want help installing it and offer install commands.
  4. Run the download command or the bundled script to write auto-subs in VTT and a readable transcript in TXT.

Preferred command

Use exactly this command when running manually:

yt-dlp \
  --skip-download \
  --write-auto-subs \
  --sub-lang en \
  --sub-format vtt \
  https://www.youtube.com/watch?v=VIDEO_ID

Bundled script

Use scripts/download_auto_captions.sh to handle URL or ID input and an optional output directory. It writes both .vtt and a cleaned .txt transcript (timestamps/tags stripped, common non-speech cues removed, merged into sentences):

bash scripts/download_auto_captions.sh <url-or-id> [output-dir]

Install guidance (ask first)

If yt-dlp is not installed, ask the user whether to install and then offer one of:

  • macOS (Homebrew): brew install yt-dlp
  • Python (pipx): pipx install yt-dlp
  • Python (pip): python3 -m pip install -U yt-dlp

Notes

  • Output files are written as .vtt subtitles and .txt transcripts in the chosen directory.
  • Auto-subs depend on what YouTube provides; some videos may not have auto-generated captions.

What ships with it: 1 file

2.8 KB alongside SKILL.md, 1 of them executable

scripts/

Gives 0 of the 12 instructions most social media skills give in 352 tokens

Counted across 489 of the 492 authors here whose files we hold, read 2026-08-07

  • Adapt formats and tone to each platformin 26 of 489, across 14 files
  • Build content around three to five pillarsin 25 of 489, across 13 files
  • Read product marketing context before asking questionsin 23 of 489, across 13 files
  • Respond to all comments on your postsin 21 of 489, across 9 files
  • Use the output flag to specify an output directoryin 14 of 489, across 4 files
  • Generate output logo images with white backgroundin 13 of 489, across 4 files
  • Fix failing generation scripts directlyin 13 of 489, across 4 files
  • Ask user about HTML preview after logo generationin 12 of 489, across 3 files
  • Run the download script with a URLin 12 of 489, across 3 files
  • Implement exponential backoff for 429 responsesin 12 of 489, across 3 files
  • Write the hook firstin 12 of 489, across 7 files
  • Include a single clear call to actionin 12 of 489, across 9 files

Said here and by no other author read

  • run the download command or bundled script
  • write auto-subs in VTT and transcript in TXT
  • ask the user before installing yt-dlp

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,512. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.