Jump to related tools in the same category or review the original source on GitHub.

Media & Streaming @snail3d Updated 2/26/2026

Tubeclaw OpenClaw Skill - ClawHub

Do you want your AI agent to automate Tubeclaw workflows? This free skill from ClawHub helps with media & streaming tasks without building custom tools from scratch.

What this skill does

Analyze any YouTube video, extract key insights, remove fluff, and provide.

Install

npx clawhub@latest install tubeclaw

Full SKILL.md

Open original

TubeClaw - YouTube Video Analyzer

Analyze any YouTube video, extract key insights, remove fluff, and provide actionable summaries with relevant links.

What It Does

  • 📥 Fetches YouTube video transcripts
  • 🧠 Analyzes content for key insights
  • ✂️ Removes advertising/sponsorship fluff
  • 🔗 Extracts mentioned resources/tools/links
  • 📝 Provides clean, actionable summary

Usage

Command Line

node analyze.js --url "https://youtube.com/watch?v=..."

Programmatic

const { analyzeVideo } = require('./analyze');

const result = await analyzeVideo('https://youtube.com/watch?v=...');
console.log(result.summary);
console.log(result.keyPoints);
console.log(result.resources);

Requirements

  • Node.js 14+
  • OpenClaw/Clawdbot with youtube-transcript skill
  • AI model access (Claude/OpenAI) for analysis

How It Works

  1. Extract Transcript - Uses video-transcript-downloader skill
  2. Clean Content - Removes ads, sponsorships, filler words
  3. Analyze - AI extracts key insights and topics
  4. Find Resources - Identifies mentioned tools, links, GitHub repos
  5. Summarize - Generates actionable summary

Example Output

{
  "title": "Video Title",
  "channel": "Channel Name",
  "summary": "Clean summary without fluff...",
  "keyPoints": [
    "Main insight 1",
    "Main insight 2"
  ],
  "resources": [
    {
      "name": "Tool Name",
      "url": "https://...",
      "context": "Why it's mentioned"
    }
  ],
  "topics": ["AI", "Coding", "Tools"]
}

License

MIT - OpenClaw

Original URL: https://github.com/openclaw/skills/blob/main/skills/snail3d/tubeclaw

Related skills

If this matches your use case, these are close alternatives in the same category.