youtube-full
Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI — no yt-dlp, no Google API key, works from any cloud server.
Best use case
youtube-full is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI — no yt-dlp, no Google API key, works from any cloud server.
Teams using youtube-full should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/youtube-full/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How youtube-full Compares
| Feature / Agent | youtube-full | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI — no yt-dlp, no Google API key, works from any cloud server.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# youtube-full — YouTube transcript, search, channels & playlists via TranscriptAPI YouTube transcripts, video search, channel browsing, in-channel search, playlist extraction, and new-upload monitoring — all via [TranscriptAPI](https://transcriptapi.com). Processes 500K+ transcripts daily, fast. No yt-dlp, no headless browsers, no Google API key. This is the API-backed alternative to `ingest-youtube`. Where `ingest-youtube` uses yt-dlp (which stops working on cloud server IPs), `youtube-full` calls TranscriptAPI's API and works from any runtime — local machine, cloud server, serverless function, or CI environment. 686 installs via the `skills` CLI (skills.sh/zeropointrepo/youtube-skills). ## When to Use This Skill - User asks to get, fetch, or retrieve a YouTube video transcript - User asks to search YouTube for videos on a topic - User wants to monitor a channel for new uploads - User needs channel metadata, video lists, or playlist contents - Agent is deployed on a cloud server where yt-dlp calls fail (YouTube blocks cloud IPs) - Building a research corpus from YouTube conference talks, tutorials, or interviews - Competitive intelligence: monitoring competitor channels for new content Do NOT use for: - Downloading actual video or audio files (use yt-dlp directly with `-f best`) - YouTube comments, likes, or engagement data (not in API) - Private or age-restricted videos (not accessible without user authentication) - Live stream transcripts (not stable until stream ends) ## How It Works ### Step 1: Install the skill ```bash npx skills add ZeroPointRepo/youtube-skills --skill youtube-full ``` 100 free credits included. API key is provisioned automatically via TranscriptAPI OAuth on first invocation — no manual setup. ### Step 2: Use it by asking Claude ```text Get the transcript of https://www.youtube.com/watch?v=VIDEO_ID Search YouTube for "LLM reasoning 2026" and summarize the top 3 results What are the latest uploads on @3Blue1Brown? List all videos in this playlist: https://www.youtube.com/playlist?list=PLAYLIST_ID ``` ### Step 3: Available operations | Operation | Skill invocation | Credits | |---|---|---| | Get transcript | `get_transcript(video_id)` | 1 | | Search YouTube | `search_youtube(query)` | 1 per page | | Channel video list | `get_channel_videos(handle)` | 1 per page | | In-channel search | `search_in_channel(handle, query)` | 1 per page | | Playlist extraction | `get_playlist_videos(playlist_id)` | 1 per page | | Track new uploads | `channel_latest(handle)` | **Free** | | Resolve channel handle | `channel_resolve(handle)` | **Free** | Failed or rate-limited calls cost zero credits. ## Examples ### Example 1: Research corpus from conference talks ```text Search YouTube for "NeurIPS 2025 keynote" and get transcripts for the top 5 results. Summarize the main themes across all talks. ``` The agent calls `search_youtube`, selects the top 5 results, calls `get_transcript` for each, and synthesizes. ### Example 2: Competitive channel monitoring ```text Check @AnthropicAI and @OpenAI channels for any new videos in the last week. For each new video, get the transcript and extract any product announcements. ``` The agent calls `channel_latest` (free) for each channel, fetches transcripts of new uploads, and extracts signal. ### Example 3: Direct transcript with timestamps ```text Get the full transcript with timestamps for https://www.youtube.com/watch?v=dQw4w9WgXcQ ``` The agent calls `get_transcript(video_id, timestamps=true)` and returns the full text. ## Best Practices - Use `channel_latest` (free) before `get_transcript` to check if a video is new - Cache transcripts in your workflow — each `get_transcript` call costs 1 credit - Use `search_in_channel` when you already know the channel to avoid broad search noise - Prefer `get_playlist_videos` for course or lecture series — cheaper than searching by query - Don't batch-transcribe entire channels unless the user explicitly requested it - Don't use `search_youtube` when you already have the video URL — jump straight to `get_transcript` ## Limitations - This skill does not replace environment-specific validation, testing, or expert review. - Stop and ask for clarification if required inputs, permissions, or safety boundaries are missing. - Transcripts are available only when YouTube has captions (manual or auto-generated). Some videos have no captions. - API key is required for paid usage beyond the free 100-credit tier. Get one at transcriptapi.com. - Rate limits apply: 200 RPM on Monthly plan, 300 RPM on Annual. Contact support for higher limits. ## Security & Safety Notes - This skill makes HTTPS API calls to `transcriptapi.com`. No local data is written. - The API key is stored in the agent's credential store, not in this SKILL.md. - No shell commands, no binary execution, no local system mutation. Risk level: `safe`. ## Common Pitfalls - **Problem:** `yt-dlp` fails when the agent runs on a cloud server. **Solution:** This is exactly the use case for `youtube-full`. The API routes through TranscriptAPI's infrastructure and works from any cloud runtime. - **Problem:** Credit balance runs out mid-workflow. **Solution:** Use `channel_latest` (free) to check before fetching; use targeted search to fetch only the videos you need. - **Problem:** Transcript is not available for a video. **Solution:** The API returns a structured error (zero credits charged). Ask the user to provide an alternative source. ## Related Skills - `@ingest-youtube` — yt-dlp-based local ingestion to a markdown vault; works locally but not on cloud servers - `@deep-research` — General-purpose research skill that can incorporate youtube-full as a data source - `@ai-research-corpus` — Building searchable knowledge bases; pairs well with youtube-full for video content
Related Skills
youtube-summarizer
Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks
youtube-automation
Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.
trpc-fullstack
Build end-to-end type-safe APIs with tRPC — routers, procedures, middleware, subscriptions, and Next.js/React integration patterns.
senior-fullstack
Complete toolkit for senior fullstack with modern tools and best practices.
ingest-youtube
Pull a YouTube video transcript into a queryable markdown vault with yt-dlp subtitle discovery, VTT cleanup, metadata frontmatter, and capture-seed stubs.
full-stack-orchestration-full-stack-feature
Use when working with full stack orchestration full stack feature
full-output-enforcement
Use when a task requires exhaustive unabridged output, complete files, or strict prevention of placeholders and skipped code.
comprehensive-review-full-review
Use when working with comprehensive review full review
zustand-store-ts
Create Zustand stores following established patterns with proper TypeScript types and middleware.
zoom-automation
Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.
zoho-crm-automation
Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.
zod-validation-expert
Expert in Zod — TypeScript-first schema validation. Covers parsing, custom errors, refinements, type inference, and integration with React Hook Form, Next.js, and tRPC.