Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问clear审计异常

yt-dlpYT DLP 控制

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

220

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:yt-dlp(YT DLP 控制)
来源仓库:https://github.com/seckatie/katies-ai-skills
仓库路径:skills/yt-dlp
安装命令:
npx skills add https://github.com/seckatie/katies-ai-skills --skill yt-dlp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/seckatie/katies-ai-skills --skill yt-dlp

简介

用于辅助安全审计、权限检查和凭据风险排查。

  • 适合梳理敏感配置或分析鉴权逻辑。yt-dlp 属于待分类类 Skill,可作为该场景下的辅助能力补充。
  • 使用时不能把工具输出直接当最终结论。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 涉及密钥、令牌或生产系统时应先确认最小权限。
  • 建议结合原始 README 进一步核验具体用法。

SKILL.md

yt-dlp Documentation Guide

yt-dlp is a feature-rich command-line audio/video downloader with support for thousands of sites. It's a maintained fork of youtube-dl with many additional features and fixes.

Documentation Structure

This skill includes the complete README.md and the official wiki. When working with yt-dlp, reference the appropriate documentation based on the task:

For Installation and Setup

  • README.md - Section: # INSTALLATION - Installation methods, dependencies, and updates
  • wiki/Installation.md - Detailed installation guide for various platforms
  • wiki/FAQ.md - Common installation issues and solutions

For Basic Downloads

  • README.md - Section: # USAGE AND OPTIONS - Complete command-line reference
  • README.md - Section: ## Download Options: - File selection, rate limiting, retries
  • README.md - Section: ## Video Selection: - Playlist handling, filtering, date ranges

For Format Selection (Quality, Audio/Video)

  • README.md - Section: ## Video Format Options: - Format selection syntax and filtering
  • README.md - Section: # FORMAT SELECTION - Detailed format selection guide
  • wiki/FAQ.md - Common format selection questions

For Audio Extraction

  • README.md - Section: ## Post-Processing Options: - Audio extraction, conversion, embedding
  • Look for examples with -x or --extract-audio flags
  • Format selection for audio-only downloads

For Subtitles and Captions

  • README.md - Section: ## Subtitle Options: - Subtitle downloading, conversion, embedding
  • Examples with --write-subs, --write-auto-subs, --sub-lang

For Output Customization

  • README.md - Section: # OUTPUT TEMPLATE - Filename templates and field formatting
  • README.md - Section: ## Filesystem Options: - Path formatting, file naming
  • Use this for custom file naming patterns and organization

For Metadata and Embedding

  • README.md - Section: # MODIFYING METADATA - Adding/modifying metadata during download
  • README.md - Section: ## Post-Processing Options: - Embedding thumbnails, metadata, chapters

For Authentication and Cookies

  • README.md - Section: ## Authentication Options: - Username/password, cookies, netrc
  • README.md - Section: # CONFIGURATION - Subsection: ### Authentication with netrc
  • Use for sites requiring login

For Troubleshooting

  • wiki/FAQ.md - Frequently asked questions and common issues
  • README.md - Section: ## Workarounds: - Handling rate limits, geo-restrictions, errors
  • README.md - Section: ## Extractor Options: - Site-specific options
  • wiki/Extractors.md - List of supported sites and extractor-specific details

For YouTube-Specific Issues

  • wiki/PO-Token-Guide.md - YouTube PO Token authentication (for bot detection issues)
  • wiki/EJS.md - YouTube cipher decryption setup
  • README.md - Section: ## SponsorBlock Options: - SponsorBlock integration for YouTube

For Playlists and Channels

  • README.md - Section: ## Video Selection: - Playlist filtering, item selection
  • Use --playlist-start, --playlist-end, --playlist-items options
  • Archive functionality to track downloaded items

For Configuration Files

  • README.md - Section: # CONFIGURATION - Configuration file locations and syntax
  • Configuration file examples and environment variables

For Advanced Usage

  • wiki/Plugins.md - Using community plugins for additional functionality
  • wiki/Plugin-Development.md - Creating custom plugins
  • README.md - Section: # EMBEDDING - Using yt-dlp as a Python library

For Proxy and Network Issues

  • README.md - Section: ## Network Options: - Proxy configuration, network settings
  • README.md - Section: ## Geo-restriction: - Bypassing geo-blocks

Common Usage Patterns

When the user asks to:

  • Download a video → Check # USAGE AND OPTIONS and ## Download Options:
  • Extract audio → Check ## Post-Processing Options: and look for -x examples
  • Download best quality → Check # FORMAT SELECTION for format sorting
  • Download playlists → Check ## Video Selection: for playlist options
  • Fix download errors → Check wiki/FAQ.md and ## Workarounds:
  • Customize filenames → Check # OUTPUT TEMPLATE
  • Download with cookies → Check ## Authentication Options:
  • Handle YouTube issues → Check wiki/PO-Token-Guide.md and wiki/EJS.md

Related Skills

For audio transcription workflows:

  • parakeet - Transcribe downloaded audio to text (SRT format)
  • llm - Clean up transcripts into articles using audio-to-article.yaml template

Example workflow (download → transcribe → article):

yt-dlp -x --audio-format mp3 "URL"
uvx parakeet-mlx audio.mp3
python3 srt_to_text.py audio.srt | llm -t audio-to-article.yaml

Important Notes

  1. Always check README.md first - It contains the complete command-line reference
  2. Use the wiki for troubleshooting - FAQ.md covers most common issues
  3. Format selection is powerful - The # FORMAT SELECTION section has extensive examples
  4. YouTube requires special handling - See wiki/PO-Token-Guide.md and wiki/EJS.md for modern YouTube downloads
  5. Post-processing requires ffmpeg - Many features depend on ffmpeg being installed

Quick Reference

Installation

# macOS via Homebrew
brew install yt-dlp

# Python pip
pip install yt-dlp

# Update
yt-dlp -U

Basic Commands

# Download video (best quality)
yt-dlp URL

# Extract audio
yt-dlp -x --audio-format mp3 URL

# Download playlist
yt-dlp -o "%(playlist_index)s-%(title)s.%(ext)s" PLAYLIST_URL

# List available formats
yt-dlp -F URL

# Download specific format
yt-dlp -f FORMAT_ID URL

File Locations

  • README.md - Complete command-line reference and documentation
  • wiki/FAQ.md - Frequently asked questions and troubleshooting
  • wiki/Installation.md - Detailed installation instructions
  • wiki/PO-Token-Guide.md - YouTube authentication guide
  • wiki/EJS.md - YouTube cipher decryption setup
  • wiki/Extractors.md - Supported sites and extractor details
  • wiki/Plugins.md - Plugin usage guide
  • wiki/Plugin-Development.md - Plugin development guide

When in Doubt

  1. Read the relevant section from README.md
  2. Check wiki/FAQ.md for common issues
  3. Use yt-dlp --help for complete option list
  4. For site-specific issues, check wiki/Extractors.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.17%
按下载量换算20

windsurf

21.59%
按下载量换算15

trae

17.94%
按下载量换算13

OpenCode

13.28%
按下载量换算9

Codex

7.27%
按下载量换算5

Antigravity

3.13%
按下载量换算2

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills