원클릭으로
youtube-watcher
Fetch and summarize YouTube video transcripts. Use when asked to watch, summarize, or answer questions about a YouTube video.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch and summarize YouTube video transcripts. Use when asked to watch, summarize, or answer questions about a YouTube video.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Advanced browser automation patterns. Connect to existing Chrome, handle SPAs, manage sessions, extract data efficiently.
How to use Firecrawl for web search and clean page scraping inside FRIDAY. Use when an agent needs reliable web context, when Tavily caps out, or when fetch_page returns thin/JS-shell content.
Assess task complexity before responding. Simple tasks get fast answers. Complex tasks get deep analysis.
Structured coding workflow — plan before coding, test after, verify before delivering. Use for any code task.
Build beautiful modern UIs — landing pages, dashboards, components. Quality bar is a real startup site, not a tutorial project.
Make AI-generated text sound human and natural. Apply when writing emails, cover letters, tweets, messages, or any text that should not sound like AI wrote it.
| name | youtube-watcher |
| description | Fetch and summarize YouTube video transcripts. Use when asked to watch, summarize, or answer questions about a YouTube video. |
| agents | ["research_agent","deep_research_agent"] |
When Travis sends a YouTube link or says "summarize this video", "watch this", "what's this video about":
Run this command via the terminal/exec tool:
yt-dlp --write-auto-sub --sub-lang en --skip-download --print-json "VIDEO_URL" 2>/dev/null | python3 -c "
import json, sys
data = json.load(sys.stdin)
subs = data.get('subtitles', {}).get('en') or data.get('automatic_captions', {}).get('en', [])
if subs:
# Get the vtt/json subtitle URL
for s in subs:
if s.get('ext') == 'json3':
print(s['url'])
break
else:
print(subs[0]['url'])
else:
print('NO_SUBS')
"
Simpler approach — just get the subtitle text directly:
yt-dlp --write-auto-sub --sub-lang en --skip-download -o "/tmp/yt_sub" "VIDEO_URL" 2>/dev/null && cat /tmp/yt_sub.en.vtt 2>/dev/null | grep -v "^$" | grep -v "^WEBVTT" | grep -v "^Kind:" | grep -v "^Language:" | grep -v "^[0-9][0-9]:" | head -200
yt-dlp --print "%(title)s|%(uploader)s|%(duration_string)s|%(view_count)s" "VIDEO_URL" 2>/dev/null
Returns: title | channel | duration | views