skills$openclaw/YT Meta - YouTube Metadata Extractor
lxgicstudios9.8kโ˜…

by lxgicstudios

YT Meta - YouTube Metadata Extractor โ€“ OpenClaw Skill

YT Meta - YouTube Metadata Extractor is an OpenClaw Skills integration for coding workflows. Extract YouTube video info, channel stats, playlists, comments. No API key required. Free CLI tool for content research and analysis.

9.8k stars3.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameYT Meta - YouTube Metadata Extractor
descriptionExtract YouTube video info, channel stats, playlists, comments. No API key required. Free CLI tool for content research and analysis. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/yt-meta
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/yt-meta
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains YT Meta - YouTube Metadata Extractor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
299 B
SKILL.md
2.1 KB
SKILL.md

name: YT Meta - YouTube Metadata Extractor description: Extract YouTube video info, channel stats, playlists, comments. No API key required. Free CLI tool for content research and analysis.

YT Meta

Extract YouTube metadata without API keys. Videos, channels, playlists, comments.

Installation

npm install -g yt-meta-cli

Commands

Video Metadata

yt-meta video dQw4w9WgXcQ
yt-meta video https://youtu.be/dQw4w9WgXcQ
yt-meta video "https://youtube.com/watch?v=VIDEO_ID"

Returns: title, description, views, likes, duration, upload date, tags, thumbnails.

Channel Info

yt-meta channel @mkbhd
yt-meta channel @channel --videos           # Include recent videos
yt-meta channel @channel --videos --limit 100
yt-meta playlist PLrAXtmErZgOei...
yt-meta playlist PLxxx --all               # Entire playlist

Search

yt-meta search "react hooks tutorial"
yt-meta search "javascript" --limit 50
yt-meta search "gaming" --sort views

Comments

yt-meta comments dQw4w9WgXcQ
yt-meta comments VIDEO_ID --limit 500
yt-meta comments VIDEO_ID --sort top

Output Formats

yt-meta video ID                 # JSON (default)
yt-meta playlist ID -o jsonl     # One per line
yt-meta search "query" -o csv    # Spreadsheet
yt-meta video ID -o table        # Terminal
yt-meta channel @x --save out.json

Example Output

{
  "id": "dQw4w9WgXcQ",
  "title": "Rick Astley - Never Gonna Give You Up",
  "channel": "Rick Astley",
  "views": 1400000000,
  "likes": 15000000,
  "duration": "3:33",
  "uploadDate": "2009-10-25",
  "tags": ["rick astley", "never gonna give you up"]
}

Common Use Cases

Analyze video performance:

yt-meta video VIDEO_ID -o json

Export channel's videos:

yt-meta channel @mkbhd --videos --limit 500 > videos.json

Research trending topics:

yt-meta search "ai tools 2024" --sort views -o csv

Built by LXGIC Studios

๐Ÿ”— GitHub ยท Twitter

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install YT Meta - YouTube Metadata Extractor?

Run openclaw add @lxgicstudios/yt-meta in your terminal. This installs YT Meta - YouTube Metadata Extractor into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/yt-meta. Review commits and README documentation before installing.