소스 정보
- 저장소
- gbencke/dotfiles
- 최근 소스 활동
- 2026년 7월 9일 11:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gbencke/dotfiles --skill yt-dlp명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | yt-dlp |
| description | Download audio and video from YouTube and 1000+ other platforms using yt-dlp. |
This skill provides a clean interface to yt-dlp for downloading audio and video content from YouTube and other platforms. It's designed to be used by AI agents and automation systems, with a focus on reliability, clear error handling, and consistent output.
The skill exposes a single command on the command line:
yt-dlp [OPTIONS] <URL>
Where <URL> is a YouTube, Vimeo, or other supported platform URL.
The skill supports all yt-dlp options. The most commonly used options are:
-x or --extract-audio - Extract audio from video--audio-format <format> - Audio format (mp3, aac, wav, best)-f <format> - Select format (e.g., "bv*+ba" for best video/audio)-F - List all available formats--embed-metadata - Embed video metadata--embed-thumbnail - Embed video thumbnail--recode-video <format> - Re-encode video (e.g., mp4)-o <template> - Custom output template (e.g., "%(title)s.%(ext)s")-a <file> - Download URLs from file--download-archive <file> - Skip already downloaded videos--no-overwrites - Don't overwrite existing files--no-cache-dir - Disable caching--cookies <file> - Use cookies from file--cookies-from-browser <browser> - Extract cookies from browser (chrome, firefox, etc.)The skill uses the standard yt-dlp configuration file located at $HOME/.config/yt-dlp/config (on Linux/Mac) or %APPDATA%\yt-dlp\config (on Windows).
Example configuration file:
--extract-audio
--audio-format mp3
--audio-quality 0
--embed-metadata
--embed-thumbnail
--no-cache-dir
-o "%(uploader)s - %(title)s.%(ext)s"
--download-archive /home/user/youtube-archive/archive.txt
This configuration will:
The skill returns:
The downloaded file is saved to the current working directory unless otherwise specified with -o.
--download-archive to avoid duplicate downloads--no-cache-dir to ensure consistent behavior across agent runs-x --audio-format mp3 consistently--embed-metadata --embed-thumbnail to create self-contained media files-a instead of looping individually# Download audio as MP3
yt-dlp -x --audio-format mp3 "https://www.youtube.com/watch?v=example"
# Download best quality video and merge with audio
yt-dlp -f "bv*+ba" "https://www.youtube.com/watch?v=example"
# Download playlist properly
yt-dlp --download-archive archive.txt "https://www.youtube.com/playlist?list=example"
# Extract cookies from Chrome and download
yt-dlp --cookies-from-browser chrome "https://www.youtube.com/watch?v=example"
# Download from list of URLs
yt-dlp -a urls.txt
This is a simple wrapper around the yt-dlp command-line tool. The skill does not modify yt-dlp behavior but provides:
The tool is intended to be more reliable and predictable when used by agents compared to direct shell execution.