← All skills
Tencent SkillHub Β· Developer Tools

Youtube Master

Get YouTube video info, statistics, descriptions, thumbnails, and optionally transcripts. Uses YouTube Data API (free) for basic info and Apify (optional) fo...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Get YouTube video info, statistics, descriptions, thumbnails, and optionally transcripts. Uses YouTube Data API (free) for basic info and Apify (optional) fo...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, get_transcript.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 19 sections Open source page

🎬 YouTube Master

Get comprehensive YouTube video data including metadata, statistics, descriptions, thumbnails, and optionally transcripts.

Why This Skill?

YouTube videos require multiple APIs to get complete data. This skill intelligently uses: YouTube Data API (FREE) β†’ Video metadata, stats, description Apify API (OPTIONAL) β†’ Only when transcripts requested

πŸ’° Cost Effective

Default: YouTube API only (free quota) Transcript: Only 1 Apify request when explicitly requested No wasted API calls

⚑ Fast Performance

YouTube API: ~200ms response Apify: Only loads when needed

πŸ“Š Complete Data

DataSourceTitleβœ… YouTube APIDescriptionβœ… YouTube APIChannel Nameβœ… YouTube APIView Countβœ… YouTube APILike Countβœ… YouTube APIComment Countβœ… YouTube APIUpload Dateβœ… YouTube APIThumbnail URLβœ… YouTube APITagsβœ… YouTube APITranscriptβœ… Apify (on demand)

How It Works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Input: URL└────────┬/ID β”‚ β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β–Ό β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ YouTube API β”‚ ◄── FREE, always runs β”‚ (viewCount, β”‚ β”‚ description, β”‚ β”‚ title, etc.) β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”Œβ”€β”€β”€β”€β”΄β”€β”€β”€β”€β” β”‚ β”‚ β–Ό β–Ό β”Œβ”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ -- β”‚ β”‚ --transcript β”‚ β”‚info β”‚ β”‚ is requested β”‚ β”‚only β”‚ β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”¬β”€β”€β”€β”˜ β”‚ β”‚ β–Ό β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ β”‚ Apify API β”‚ ◄── Only runs if β”‚ β”‚ (transcript) β”‚ explicitly asked β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β–Ό β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Full Output β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Option 1: Environment Variables

export YOUTUBE_API_KEY="AIzaSy..." export APIFY_TOKEN="apify_api_..."

Option 2: Credentials File (Recommended)

Add to ~/.openclaw/workspace/credentials/api-credentials.json: { "google": { "api_key": "AIzaSy..." }, "apify": { "api_key": "apify_api_..." } }

Getting YouTube API Key

Go to Google Cloud Console Create a project Enable YouTube Data API v3 Create credentials (API Key) Free quota: 10,000 units/day

Getting Apify Token

Go to Apify Sign up / Login Copy API token from Settings

Default (Info Only - FREE)

python3 get_transcript.py "VIDEO_ID" python3 get_transcript.py "https://www.youtube.com/watch?v=VIDEO_ID"

With Transcript (Uses Apify)

python3 get_transcript.py "VIDEO_ID" --transcript python3 get_transcript.py "VIDEO_ID" -t python3 get_transcript.py "VIDEO_ID" --transcript --lang tr

Info Only

python3 get_transcript.py "VIDEO_ID" --info-only

Basic Video Info

python3 get_transcript.py dQw4w9WgXcQ

Video + Transcript

python3 get_transcript.py Oi3Z1wlZXhg --transcript --lang tr

Save to File

python3 get_transcript.py VIDEO_ID > output.txt

YouTube Data API (Free)

10,000 units/day (default) Video list: 1 unit per request Enough for ~10,000 video queries/day

Apify

Free tier available Only charged when transcript requested

Files

get_transcript.py - Main script

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • get_transcript.py Scripts