Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

youtube-summaryYouTube 摘要

Agent Skill

youtube-summary 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

30,203

周安装

1,246

GitHub Stars

1

下载量

9,868
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youtube-summary(YouTube 摘要)
来源仓库:https://github.com/sunghyo/youtube-summary
安装命令:
openclaw skills install youtube-summary
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install youtube-summary

简介

将 YouTube 视频总结为结构化 Markdown 文档,含章节注释、时间戳与要点摘要。

  • 适用于学习笔记整理、项目参考资料归档或快速理解视频核心内容。
  • 用户提供视频链接后,Agent 自动生成带层级结构的文本报告。
  • 安装命令:openclaw skills install youtube-summary;需联网获取视频元数据与转录内容。
  • 摘要准确性依赖于字幕可用性,无字幕视频可能仅提供有限信息。

SKILL.md

name
youtube-summary
description
Summarize YouTube videos into structured Markdown with youtube2md, including chaptered notes, timestamp links, and key takeaways. Use when the user provides one or more YouTube URLs and asks for summaries, study notes, language-specific summaries, transcript extraction, or machine-readable JSON output.
env
required
false
description
Enables full summarization mode. When set, transcript content is sent to OpenAI. Omit to use extract-only mode with local summarization.

YouTube Summary (youtube2md)

Use the official youtube2md CLI behavior from the repository.

Runtime + security prerequisites

  • Require Node.js 18+.
  • Require preinstalled youtube2md on PATH.

- Recommended pinned install: npm i -g youtube2md@1.0.1

  • Require python3 for transcript text preparation (prepare.py) in extract mode.
  • Default runner uses local youtube2md executable only.
  • Runtime npm execution (npx) is intentionally not supported in this skill.
  • The YOUTUBE2MD_BIN environment variable override is rejected by the runner.
  • OPENAI_API_KEY enables full summarization mode; transcript/content may be sent to OpenAI through youtube2md’s workflow.

- For sensitive content, omit OPENAI_API_KEY and use extract mode.

  • In sensitive environments, audit the upstream youtube2md package and dependencies before installation or version bumps.

See references/security.md before first-time install/enable.

Workflow

  1. Validate input

- Accept youtube.com and youtu.be URLs. - If URLs are missing, ask for one URL per line.

  1. Choose mode

- Full mode: generates Markdown. - Use when OPENAI_API_KEY is available and external API use is acceptable. - Extract mode (--extract-only): outputs transcript JSON and prepares transcript text (.txt). - Use when API key is unavailable or when transcript-only output is requested. - Prefer a no-error path: check key first and run extract directly when key is missing.

  1. Run converter

- Preferred runner script: - scripts/run_youtube2md.sh <url> full [output_md_path] [language] [model] - If OPENAI_API_KEY is missing, runner auto-falls back to extract mode by default. - scripts/run_youtube2md.sh <url> extract [output_json_path] - Optional machine-readable CLI output: - YOUTUBE2MD_JSON=1 scripts/run_youtube2md.sh <url> full - YOUTUBE2MD_JSON=1 scripts/run_youtube2md.sh <url> extract - Runtime controls: - Use only locally installed youtube2md executable. - Do not use runtime npm execution (npx) for this skill. - Direct CLI equivalent: - youtube2md --url <url> [--out <path>] [--lang <language>] [--model <model>] - Add --extract-only for transcript-only mode.

  1. Verify output

- Full mode: Markdown file exists and is non-empty. - Extract mode: JSON file exists and is non-empty. - Extract mode: prepared TXT file exists and is non-empty. - If using --json, parse ok: true/false and handle error code.

  1. Respond to the user

- Follow references/output-format.md as the default response shape. - Follow references/summarization-behavior.md for source policy and chapter/takeaway density. - Do not include generated local file path(s) in normal user-facing replies. - Share file paths only when explicitly requested by the user (e.g., debugging/export workflows). - Summary source policy: - Full mode succeeded → use youtube2md Markdown output as the summary source. - Non-full mode (extract) → use prepared .txt transcript text as the summary source. - Keep user-facing flow smooth: if key is missing, use extract output and summarize from .txt without surfacing avoidable tool-error noise.

Multi-video requests

  • Process URLs sequentially.
  • Return per-video summary results (omit local file paths unless requested).
  • If any fail, report successful items first, then failures with fixes.

Built-in behavior to trust

  • Default output paths:

- Full mode: ./summaries/<video_id>.md - Extract mode: ./summaries/<video_id>.json - Local runner post-process (extract): ./summaries/<video_id>.txt via prepare.py

Packaging hygiene

  • Do not publish generated outputs (e.g., summaries/*.json, summaries/*.txt) inside the skill folder.
  • Keep only source files (SKILL.md, scripts/, references/, helpers) in release artifacts.

Resources

  • CLI runner: scripts/run_youtube2md.sh
  • Transcript text prep: prepare.py
  • Output guidance: references/output-format.md
  • Behavior reference: references/summarization-behavior.md
  • Security/install notes: references/security.md
  • Troubleshooting and error codes: references/troubleshooting.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.78%
按下载量换算7,873

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills