Monitor Nate B Jones's YouTube channel, pull each new video transcript (YouTube captions or auto-transcribed audio), summarize it with an abstract + bullet highlights + reference links, and distribute the digest via email, chat, and/or a document per user-configured outputs.
Use this skill whenever you need to keep Richard (or any configured subscriber) up to date on new Nate B Jones videos. The workflow:
All runtime options live in references/config-example.yml. Copy that file, rename it (e.g. config.yml), fill in your preferences, and point the workflow to it.
references/config-example.yml to config.yml (or any path you prefer).channel_urlchannel_idpoll_cron (default daily at 09:00 local).outputs.email.to, outputs.chat.targets, outputs.doc.type/path.gog skill.skills/nate-b-jones-digest/config.yml).playlistItems endpoint for the channel's uploads playlist. Example:
curl "https://www.googleapis.com/youtube/v3/playlistItems?part=snippet,contentDetails&maxResults=5&playlistId=UPLOADS_PLAYLIST_ID&key=$YOUTUBE_API_KEY"
yt-dlp to check the latest upload ID without downloading video:
yt-dlp --flat-playlist --dump-json "https://www.youtube.com/@NateBJones/videos" | head -n 1 > latest.json
jq -r '.id' latest.json
last_video.txt or a Notion/Sheets tracker). Only proceed if it's new.youtube_transcript_api:
from youtube_transcript_api import YouTubeTranscriptApi
transcript = YouTubeTranscriptApi.get_transcript(video_id, languages=['en'])
text = '\n'.join([chunk['text'] for chunk in transcript])
yt-dlp -f 140 -o audio.m4a "https://www.youtube.com/watch?v=$VIDEO_ID"
whisper audio.m4a --model medium --language en --task transcribe --output_format txt
Produce:
[05:42] Key insight).Template:
# Nate B Jones Daily Digest — {{DATE}}
**Video:** {{TITLE}} ({{DURATION}}) → {{URL}}
**Abstract:** ...
## Highlights
- ...
## References & Links
- {{URL}}
- ...
Do not attach the transcript unless someone explicitly asks for it—email only the digest body linked above.
GOG_KEYRING_PASSWORD=... gog gmail send \
--to "{{config.outputs.email.to}}" \
--subject "Nate B Jones Digest — {{DATE}}" \
--body-file summary.txt \
--body-html summary.html
message action=send ...).config.outputs.chat.targets (list of surfaces).gog docs create "Nate B Jones Digest {{DATE}}" --body summary.md
gog docs share <docId> --email {{config.outputs.doc.share_with}}
outputs.doc.path.poll_cron from config. Each run should:
references/config-example.yml — copy/edit this to match each installation.youtube_transcript_api docs: https://pypi.org/project/youtube-transcript-api/Stick to the playbook format every time so downstream consumers get consistent digests, and always fall back to Whisper if captions are missing.