Agent skill · Workflow & Productivity

youtube-notetaker

Turn YouTube talks into local study notes with slides, transcripts, editable annotations, and a markdown-backed viewer.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorships scriptsMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill youtube-notetaker --agent claude-code

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

Facts
Files in the skill folder: 12
SKILL.md size: 9 KB
Bundled scripts: yes
Declared author: DAIR.AI
Path: skills/youtube-notetaker/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# YouTube Notetaker ## When to Use Use when this workflow matches the user request: > _Source: [dair-ai/dair-academy-plugins](https://github.com/dair-ai/dair-academy-plugins) (MIT)._ Build a personal library of YouTube talks you study with. Each video becomes one **plain markdown file**: slide snapshots at their timestamps, a full timestamped transcript, and editable notes. A small bundled server renders the library as an interactive deep-dive in the browser. No database, no cloud service. Everything is files on disk you fully own. ## Architecture (read this first) The **markdown library is the single source of truth**. The artifact is a thin HTML shell that fetches from the server and writes notes back. Never hardcode video data into the HTML. - **Library:** a plain folder, set by `VIDEO_LIBRARY_DIR` (default `~/video-deepdives/`). - One markdown file per video, **filename slug = YouTube id** (e.g. `RtywqDFBYnQ.md`). - Frontmatter holds video metadata + a `slides` array. - Body holds the full transcript as `[HH:MM:SS] text` lines. - `_media/` holds slide images, **namespaced per video** as `<youtube_id>-slide-NN.jpg` to avoid collisions between videos. - **Server:** `scripts/serve

What's inside
Steps it walks through
  1. When to Use
  2. Architecture (read this first)
  3. Requirements
  4. Adding a video — the pipeline
  5. 1. Resolve the id and check embeddability
  6. 2. Download video + subtitles
  7. 3. Detect candidate slide timestamps
  8. 4. Build a contact sheet and CURATE
  9. 5. Extract the curated slides at full quality and install to media
  10. 6. Build the transcript
  11. 7. Write notes and assemble the markdown file
  12. 8. Serve and verify (always do this)
  13. Markdown file shape (reference)
  14. Gotchas
Ships with 11 files
  • reference/artifact.html
  • scripts/contact_sheet.py
  • scripts/detect_slides.sh
  • scripts/download.sh
  • scripts/extract_slides.py
  • scripts/scratch_safety.sh
  • scripts/serve.py
  • scripts/setup.sh
  • scripts/verify.sh
  • scripts/vtt_to_transcript.py
  • scripts/write_library_item.py
More from agentic-awesome-skills
All skills →
About this skill
What does the youtube-notetaker skill do?

Turn YouTube talks into local study notes with slides, transcripts, editable annotations, and a markdown-backed viewer.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill youtube-notetaker --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 sickn33/agentic-awesome-skills, a repository with 44,414 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