Back to Registry View Author Profile
Official Verified
Tubeclaw
Skill by snail3d
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/snail3d/tubeclawOr
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
- Extract Transcript - Uses video-transcript-downloader skill
- Clean Content - Removes ads, sponsorships, filler words
- Analyze - AI extracts key insights and topics
- Find Resources - Identifies mentioned tools, links, GitHub repos
- 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
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-snail3d-tubeclaw": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.