← スキル一覧に戻る

youtube
by SBoudrias
Hobbyist bartender web app. Focused on Tiki and Youtube channel recipes.
⭐ 5🍴 1📅 2026年1月24日
SKILL.md
name: youtube description: Fetch video metadata from YouTube URLs using yt-dlp. Use when the user provides a YouTube URL or asks to get details from a YouTube video.
YouTube Video Context
Fetch video information from YouTube using yt-dlp.
Instructions
When the user provides a YouTube URL (youtube.com or youtu.be), use yt-dlp to fetch video metadata:
# Get full JSON metadata
yt-dlp --skip-download --dump-json "VIDEO_URL"
This returns JSON with:
title- Video titledescription- Full description (often contains recipes, timestamps, links)channel- Channel name (useful for source attribution)upload_date- Publication date
Quick commands
# Get just the description
yt-dlp --skip-download --print description "VIDEO_URL"
# Get title and description
yt-dlp --skip-download --print "%(title)s" --print description "VIDEO_URL"
Examples
User: "Create a recipe from https://youtube.com/watch?v=xyz"
- Fetch the video metadata with yt-dlp
- Extract the recipe from the description
- Use the channel name for attribution
スコア
総合スコア
65/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です