Openfelix youtube-info

Extract 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 query. Never call youtube-search before this — it opens the browser unnecessarily.

install
source · Clone the upstream repo
git clone https://github.com/fspecii/openfelix
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/fspecii/openfelix "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/youtube-info" ~/.claude/skills/fspecii-openfelix-youtube-info && rm -rf "$T"
manifest: skills/youtube-info/SKILL.md
source content

YouTube Info

Fetches the description and full transcript (captions) from a YouTube video so the assistant can answer questions about the video's content.

Input

A YouTube URL, video ID (11-char), or search query (falls back to top search result).

Output

  • Video title, channel, duration
  • Full description (inline)
  • 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.