Agent skill · Content & Marketing

yt-transcribe

Use when user asks about YouTube video content, wants to know what a video says, needs information from a YouTube URL, or when video transcription would answer their question

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill yt-transcribe-mhagrelius-dotfiles-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/yt-transcribe-mhagrelius-dotfiles-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# YouTube Video Transcription ## Overview Use `yt-transcribe` to get the actual spoken content from YouTube videos. Web search and fetch tools cannot access video content - they only see metadata. ## When to Use **Use this skill when:** - User shares a YouTube URL and asks what it says/contains - User wants information that likely exists in a video - User asks "what does this video talk about?" - You need to extract spoken content from YouTube **Do NOT use:** - For video metadata only (title, description) - web search is faster - When user explicitly wants just the link, not content ## Quick Reference | Flag | Purpose | |------|---------| | `-q` | **Required for LLMs** - clean stdout, no progress noise | | `-m tiny` | Faster transcription (less accurate) | | `-m medium` | More accurate (slower, larger model) | | `-o file` | Save to file instead of stdout | | `-f srt/vtt` | Include timestamps | ## Core Pattern ```bash # Standard usage for LLM consumption yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q # Faster but less accurate yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q -m tiny # With timestamps yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q -f srt ```

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Quick Reference
  4. Core Pattern
  5. Workflow
  6. Common Mistakes
  7. Exit Codes
Ships with 1 file
  • metadata.json
Commands it runs
Standard usage for LLM consumption
yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q
Faster but less accurate
yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q -m tiny
With timestamps
yt-transcribe "https://youtube.com/watch?v=VIDEO_ID" -q -f srt
More from claude-skill-registry
All skills →
About this skill
What does the yt-transcribe skill do?

Use when user asks about YouTube video content, wants to know what a video says, needs information from a YouTube URL, or when video transcription would answer their question

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill yt-transcribe-mhagrelius-dotfiles-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going