$npx -y skills add fspecii/openfelix --skill youtube-infoExtract description and captions/transcript from a YouTube video without opening the browser. Use when the user asks what a video is about, wants a summary, or asks about video content. Accepts a YouTube URL (use the URL returned by youtube-search if available) or a plain search
| 1 | # YouTube Info |
| 2 | |
| 3 | Fetches the description and full transcript (captions) from a YouTube video so the assistant can answer questions about the video's content. |
| 4 | |
| 5 | ## Input |
| 6 | |
| 7 | A YouTube URL, video ID (11-char), or search query (falls back to top search result). |
| 8 | |
| 9 | ## Output |
| 10 | |
| 11 | - Video title, channel, duration |
| 12 | - Full description (inline) |
| 13 | - Transcript saved to a temp file — path returned in result. Use read_file on that path to access transcript content when the user asks about video content, wants a summary, or wants to take notes. |