FAQ
yt-digest is a Claude Code plugin with 1 hand-picked skill for content work, indexed on Flowy. Install it with the command on its page. It includes yt-digest. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: tga-cheetung/yt-digest
Paste a YouTube link. Get a vault-ready research digest in ~90 seconds for ~$0.04.
A Claude Code skill that turns any YouTube video into a single markdown note you can actually use: a TL;DR, 5โ10 key takeaways each deep-linked to the exact second they happen, screenshots of the slides/demos/dashboards the speaker points at, and a collapsed full transcript at the bottom. The source video is downloaded, used for frame grabs, then deleted โ your vault keeps ~3 MB per video, not 100.
It is not a content-repurposing factory. It does not turn one video into thirty social posts. It does the opposite: it turns a video into knowledge you keep โ queryable, timestamped, and screenshotted in your second brain. Built for people who bookmark 40 videos a week and watch four.
The bottleneck was never finding good videos. It's that a 48-minute talk costs 48 minutes, and "I'll watch it later" is where good videos go to die. yt-digest makes "I watched it" a 90-second job: skim the TL;DR, jump to the two takeaways that matter via the timestamp deep-links, read the slide off the screenshot, move on. The full transcript is there if you need to go deeper, collapsed so it doesn't get in the way.
The digest lands as a plain markdown file in your Obsidian vault (or any markdown notes app). It's searchable forever, it links into the rest of your notes, and six months from now you can grep "the unlimited offer construct" and land on the exact 17-second clip that taught it to you.
vault/research/youtube/<slug>.md # the digest
vault/attachments/youtube/<slug>/ # frame-MM-SS.png screenshots
A real example (a 47:55 interview) produced: 8 TL;DR bullets, 10 numbered takeaways, 6 embedded screenshots, and timestamp deep-links back to the source โ generated in about 90 seconds for roughly four cents.
yt-digest/
โโโ README.md # you are here
โโโ SKILL.md # the skill โ drop into .claude/skills/yt-digest/
โโโ scripts/
โ โโโ fetch.sh # yt-dlp: metadata + captions + (optional) 720p video
โ โโโ parse_vtt.py # VTT โ clean sentence-level transcript with timestamps
โ โโโ extract_frames.sh # ffmpeg: one frame per requested timestamp
โโโ LICENSE
โโโ .gitignore
Four files. No SaaS dependencies โ yt-dlp and ffmpeg run locally and cost nothing. The only spend is the model pass that picks the takeaways (~1โ4 cents).
Prerequisites: Claude Code, yt-dlp, ffmpeg, and python3.
# 1. macOS (Homebrew) โ Linux users swap in apt/pacman
brew install yt-dlp ffmpeg
# 2. Drop the skill into your project
git clone https://github.com/tga-cheetung/yt-digest.git
mkdir -p .claude/skills/yt-digest
cp -r yt-digest/SKILL.md yt-digest/scripts .claude/skills/yt-digest/
chmod +x .claude/skills/yt-digest/scripts/*.sh
# 3. Make sure your output dirs exist (or change the paths in SKILL.md)
mkdir -p vault/research/youtube vault/attachments/youtube
Inside Claude Code:
/yt-digest https://youtu.be/BI-MNjm1tTQ
Or just paste a link and say "digest this." Optional flags:
--no-screenshots โ transcript-only, skips the video download (~$0.01, ~5s)--tags ai-agents,pricing โ adds tags to the digest frontmatter--slug my-name โ override the auto-generated filenameThe skill prints DIGEST: <absolute path> as its final line, so any orchestrator, cron job, or chat bot that shells out can read the result back. (More on that in Run it headless.)
Three places to edit, all in SKILL.md:
vault/research/youtube/ and vault/attachments/youtube/ to wherever your notes live. The skill writes plain markdown with Obsidian ![[...]] embed syntax; if you don't use Obsidian, the fallback  form works in any markdown renderer.--no-screenshots and skip the video download entirely.The skill takes all its input from CLI args, never prompts mid-run, and writes to a deterministic path. That means you can dispatch it from anything that can run a shell command โ a cron job, a CI step, or a chat bot.
The pattern that makes it feel magical: wire a Slack/Telegram bot to shell out to Claude Code with the skill and the URL, then read the final DIGEST: line back and post the path (or the TL;DR) into the thread. Now "drop a YouTube link in Slack, get a digest in your vault 90 seconds later" is a one-message workflow from your phone.
One gotcha worth knowing if you do this: in a headless claude -p run, a small/cheap model will sometimes describe what the skill would do instead of actually invoking the scripts (turns burned, zero tool calls, nothing written). If you see that, route the headless dispatch to a more capable model โ the interactive run is fine on the cheap model, it's the unattended path that needs the upgrade.
| Component | Cost per 30-min video |
|---|---|
| yt-dlp transcript + 720p video | $0 |
| Model pass to pick takeaways (~7K in / 800 out) | ~$0.01โ0.04 |
| ffmpeg frame extraction | $0 |
| Vault storage (digest + screenshots) | ~3 MB |
The ~100 MB source video is deleted after frame extraction.
MIT. Fork it, change the paths, point it at your own vault. Built by The GTM Architects.
.gitignore LICENSE README.md scripts/ extract_frames.sh fetch.sh parse_vtt.py SKILL.md
ยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic