From Hyper Marketing
Fetches YouTube transcripts and repurposes video content into summaries, blog posts, social posts, quotes, or show notes. Also generates thumbnails and SEO-optimized titles/descriptions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hyper-marketing:youtubeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch the full transcript of any YouTube video and turn it into whatever the user needs — summaries, blog posts, social content, quotes, show notes, or raw text. Then package videos for upload: high-CTR thumbnails, SEO titles, and descriptions.
references/composition-tips.mdreferences/thumbnails.mdreferences/youtube-thumbnail-best-practices.mdscripts/analyze_thumbnail_concepts.pyscripts/clone_top_thumbnail_style.pyscripts/generate_seo_description.pyscripts/generate_seo_titles.pyscripts/generate_thumbnail.pyscripts/research_top_thumbnails.pyFetch the full transcript of any YouTube video and turn it into whatever the user needs — summaries, blog posts, social content, quotes, show notes, or raw text. Then package videos for upload: high-CTR thumbnails, SEO titles, and descriptions.
| User intent | Where to go |
|---|---|
| Transcript, summary, repurposing, quotes, chapters | This guide (below) |
| Thumbnails, style cloning, SEO titles/descriptions | references/thumbnails.md |
youtube_video_transcripts_fetch and youtube_videos_read.If youtube_video_transcripts_fetch is not in the tool list, stop and tell the user to enable the YouTube toolkit in Hyper.
| Tool | When to use | Returns |
|---|---|---|
youtube_video_transcripts_fetch | You need the raw transcript text or timestamped segments. Fast, reliable, always get this first. | Full text string + segments with start/duration timestamps |
youtube_videos_read | You need AI-powered extraction from the video — summaries, Q&A, topic segmentation, translation, visual descriptions. | Free-form answer to your instruction |
Default: start with youtube_video_transcripts_fetch. Use youtube_videos_read when you need something the raw text can't give you (e.g. visual descriptions, translation, or a structured extraction from a very long video).
youtube_video_transcripts_fetch takes 15–30 seconds. It spins up an isolated sandbox. Tell the user it's running and to expect a short wait — don't make them think it's stuck."NZLAdOL9fP8" and "https://www.youtube.com/watch?v=NZLAdOL9fP8" both work.youtube_video_transcripts_fetch handles these fine. Only use youtube_videos_read on long videos if you specifically need AI-powered extraction — it can hit token limits on very long content.youtube_video_transcripts_fetch fails, try youtube_videos_read as a fallback — it uses a different extraction method.youtube_video_transcripts_fetch(
video_id_or_url="https://www.youtube.com/watch?v=NZLAdOL9fP8",
language="en" # optional — omit to auto-detect
)
Response structure:
{
"success": true,
"video_id": "NZLAdOL9fP8",
"language": "English (auto-generated)",
"text": "Full transcript as one string...",
"segments": [
{ "text": "This week we launched Hyper MCP.", "start": 0.0, "duration": 3.2 },
{ "text": "It brings Hyper's built-in tools...", "start": 3.2, "duration": 4.1 }
],
"total_duration": 342.0
}
Use text for most tasks. Use segments when you need timestamps (e.g. chapters, clip references, karaoke captions).
youtube_videos_read(
url="https://www.youtube.com/watch?v=NZLAdOL9fP8",
instruction="Summarize the key points. Then list the main features demonstrated, with timestamps."
)
Good instruction examples:
"Extract every claim made about pricing or cost.""List the action items mentioned, in order.""Translate this to Spanish.""What tools or products does the speaker mention by name?""Identify the main sections of this video and give me a timestamp for each."Once you have the text, ask the user what they need — or infer it from context:
| What the user wants | What to produce |
|---|---|
| Blog post | Restructure the transcript into intro → sections → CTA. Clean up filler words. Add subheadings. |
| LinkedIn / Twitter post | Extract the 1–2 sharpest insights. Rewrite in first person if it's the user's own video. |
| Summary | 3–5 bullet points of key takeaways. |
| Show notes / description | Title, 2-sentence summary, timestamped chapters, links mentioned. |
| Quote extraction | Pull verbatim quotes with start timestamps from the segments array. |
| Repurpose for email | Rewrite as a narrative email — opening hook, key insight, CTA. |
| Research / competitive analysis | Summarize what the speaker claims, what products they recommend, and what pain points they describe. |
For making or refreshing thumbnails, cloning the style of top-ranking thumbnails, adding the user's face, and generating SEO titles/descriptions, read references/thumbnails.md. Every thumbnail workflow is a sandbox script under scripts/ (generate_thumbnail.py, research_top_thumbnails.py, clone_top_thumbnail_style.py, analyze_thumbnail_concepts.py, generate_seo_titles.py, generate_seo_description.py) — the reference doc is the routing table and the rules for using them.
Input: "Get the transcript of https://www.youtube.com/watch?v=NZLAdOL9fP8 and write a LinkedIn post from it"
Flow:
youtube_video_transcripts_fetch(video_id_or_url="https://www.youtube.com/watch?v=NZLAdOL9fP8")textInput: "Summarize this video for me: [URL]"
Flow:
youtube_video_transcripts_fetch(video_id_or_url="[URL]")Input: "Make me a thumbnail like the top videos for 'AI agents'"
Flow:
references/thumbnails.mdscripts/clone_top_thumbnail_style.py with query="AI agents" and the user's topicchosen_rank to generate| When to hand off | Skill |
|---|---|
| Mining comments from YouTube videos for customer research | customer-research |
| Finding top YouTube videos by topic | Use youtube_videos_search_top directly |
| Generating video content | video-generation |
npx claudepluginhub hyperfx-ai/marketing-skills --plugin hyper-marketingOptimizes YouTube videos for search by guiding title, description, tags, and thumbnail creation. Useful for improving channel visibility and Google search ranking.
Processes YouTube videos to extract transcripts, generate infographics, create audio/video summaries, and run comprehensive (kitchen sink) processing.
Writes retention-optimized YouTube scripts with hooks, chapters, CTAs, visual directions, and SEO metadata.