Summary
- 获取关注的 YouTube 博主/播客的最新更新。列出最近两天的新视频,包含标题、发布时间和简要描述。
- 触发词:"获取播客更新"、"最近有什么新播客"、"YouTube 更新"、"播客更新"、"有什么新的播客"。
- 用于每日检查关注的 AI/科技播客是否有新内容更新。
spacezephyr/read-buddy · Archived
获取? 触发词:"获取播客更新"、"最近有什么新播客"、"YouTube 更新"、"播客更新"、"有什么新的播客"。 用于每日检查?
npx skills add spacezephyr/read-buddy --skill read-youtube-feed
This repository is archived — consider an actively maintained alternative.
Fetch and extract content from web pages, converting HTML to clean markdown.
5 installs翻译在线文章为中文并保存为 Markdown 格式。当用户需要翻译网页文章、博客文章时使用此技能,例如:"…
5 installsAI热点采集工?
5 installs从 YouTube 视频链接提取字幕并转换为中文文字稿。支持自动生成字幕和手动字幕。 使用场景:(1) 用户…
4 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Create high-click-through YouTube thumbnails and vertical video covers through the Higgsfield C…
42.8K installsDownloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports mul…
20K installsDownload YouTube videos with customizable quality and format options. Use this skill when the u…
5.3K installsAutomate YouTube content workflows including video management, analytics, scheduling, and chann…
4.4K installsExtract transcripts from YouTube videos. Use when the user asks for a transcript, subtitles, or…
3.3K installsOther skills from spacezephyr/read-buddy · top by installs.
npx skills add spacezephyr/read-buddy
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
5,321 B
SUMMARY.md
356 B
获取关注的 YouTube 博主/播客的最新更新。
数据来源:Zara's AI Learning Library
| 播客名称 | 频道 |
|---|---|
| Andrej Karpathy | @AndrejKarpathy |
| Anthropic | @anthropic-ai |
| Lex Fridman | @lexfridman |
| 播客名称 | 频道 |
|---|---|
| Lenny's Podcast | @LennysPodcast |
| Peter Yang | @PeterYangYT |
| The MAD Podcast (Matt Turck) | @DataDrivenNYC |
| Every | @EveryInc |
| 播客名称 | 频道 |
|---|---|
| Y Combinator | @ycombinator |
| Latent Space | @LatentSpacePod |
| South Park Commons | @southparkcommons |
| No Priors | @NoPriorsPodcast |
| a16z | @a16z |
| 播客名称 | 频道 |
|---|---|
| Google DeepMind | @googledeepmind |
| Google for Developers | @GoogleDevelopers |
| Stanford GSB | @stanfordgsb |
| 播客名称 | 频道 |
|---|---|
| Mckay Wrigley | @realmckaywrigley |
| Tiago Forte | @TiagoForte |
| The Pragmatic Engineer | @ThePragmaticEngineer |
| 播客名称 | 频道 |
|---|---|
| The AI Daily Brief | @TheAIDailyBrief |
| TBPN | @TBPNLive |
| Brett Malinowski | @TheBrettWay |
# 默认获取最近 2 天更新
python3 scripts/get_updates.py
# 获取最近 7 天(一周)的更新
python3 scripts/get_updates.py --days 7
# Markdown 格式输出(带可点击链接)
python3 scripts/get_updates.py --markdown
# 获取播放量(会增加请求时间)
python3 scripts/get_updates.py --views
# 组合使用
python3 scripts/get_updates.py --days 7 --markdown --views
当用户说:
--days 2--days 7--days 3--days 30每个播客更新包含:
当向用户展示播客更新时,Agent 需要:
- 嘉宾姓名和当前职位 - 所在公司/机构及其知名度 - 嘉宾的代表作品或成就 - 为什么这个人值得关注
### {序号}. [{中文标题}]({链接})
**{频道}** | {日期} | ⏱ {时长} | 👁 {播放量}
**嘉宾介绍**:{嘉宾姓名} 是 {公司} 的 {职位}。{公司介绍}。{嘉宾成就}。{为什么值得关注}。
**内容摘要**:本期播客讨论了...(150-200字中文描述)
当用户说"获取播客更新"时:
运行脚本获取最近 2 天的更新:
python3 /Users/ugreen/.claude/skills/read-youtube-feed/scripts/get_updates.py --days 2
向用户展示格式化的更新列表:
📺 最近 2 天共有 N 个新播客更新:
1. 【Lenny's Podcast】
📌 视频标题
🕐 2026-01-30 15:00
🔗 https://www.youtube.com/watch?v=xxx
📝 简要描述...
2. 【No Priors】
...
询问用户:
请选择要处理的播客(输入序号,如 1 或 1,3):
用户选择后,调用 read-podcast-workflow Skill 进行完整处理:
编辑 scripts/get_updates.py 中的 CHANNELS 列表:
CHANNELS = [
("频道名称", "channel_id", "@handle"),
# ...
]
获取 channel_id 的方法:
本 Skill 是播客处理流程的第一步:
read-youtube-feed → 用户选择 → read-podcast-workflow → 飞书
↓ ↓ ↓
获取更新 挑选播客 字幕+处理+发布
用户: 获取播客更新
Agent:
用户: 处理第 2 个
Agent: