YouTube Watcher - YouTube 视频字幕抓取与读取
v1.0.0从 YouTube 视频中获取字幕并转为纯文本,支持对视频内容进行摘要、问答或信息抽取。仅适用于已提供字幕或自动生成字幕的影片。
254· 4.2万·457 当前·477 累计
此技能需要访问外网资源,可能需要科学上网
安全扫描
OpenClaw
安全
high confidence技能如名称所示——使用 yt-dlp 获取 YouTube 字幕并转换为纯文本;其依赖和行为与描述完全一致。
评估建议
技能行为完全符合说明,仅通过 yt-dlp 向 YouTube 发起网络请求并输出字幕。安装前请确保 yt-dlp 来源可信(可通过 Homebrew 安装或使用国内 PyPI 镜像 via pip 安装);如通过代理将结果传给模型,请避免处理包含敏感或个人信息的影片。注册表中的 brew 安装方式和 SKILL.md 中的 pip 方式均安全,使用时请确保采用安全的安装渠道。...详细分析 ▾
✓ 用途与能力
The skill's stated purpose is fetching and reading YouTube transcripts. It only requires the yt-dlp binary (and the provided script invokes yt-dlp) which is appropriate and expected.
✓ 指令范围
SKILL.md instructs running the included Python script which runs yt-dlp in a temporary directory to fetch subtitles and prints cleaned text to stdout. The script only reads the temporary subtitle files it created and does not access other files, environment variables, or external endpoints beyond what yt-dlp uses (YouTube).
ℹ 安装机制
Install spec in the registry lists a brew formula for yt-dlp (reasonable). SKILL.md metadata also references a pip install option — a minor inconsistency but not malicious. Both brew and pip are common install methods for yt-dlp; there is no download-from-random-URL or arbitrary archive extraction.
✓ 凭证需求
No environment variables, credentials, or config paths are requested. The script runs a subprocess and uses a temporary directory only — no secret access or unrelated credentials are required.
✓ 持久化与权限
The skill is not always-enabled and does not request elevated or persistent privileges or modify other skills. It can be invoked by the agent (default), which is expected for a user-invocable skill.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/1/25
初始版本发布。 - 从 YouTube 视频中抓取并读取字幕。 - 支持对视频进行摘要、回答问题或从转录中提取特定信息。 - 触发短语示例:“抓取 YouTube”、 “视频摘要”、 “视频转录”、 “YouTube 总结”、 “分析视频”。 - 需要安装 `yt-dlp` 才能获取字幕。 - 仅对有字幕或自动生成字幕的视频有效。
● 无害
安装命令
点击复制官方npx clawhub@latest install youtube-watcher
镜像加速npx clawhub@latest install youtube-watcher --registry https://cn.longxiaskill.com 镜像可用
国内专用pip install -i https://pypi.tuna.tsinghua.edu.cn/simple yt-dlp
本土化适配说明
使用前请确保已安装 yt-dlp。推荐通过国内加速源安装:使用 Homebrew:`brew install yt-dlp`;或使用 pip 并指定清华镜像:`pip install -i https://pypi.tuna.tsinghua.edu.cn/simple yt-dlp`。