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

Coding Agents & IDEs @honeybee1130 Updated 6/28/2026 1,022 downloads 0 stars Security: Pass

Yt Downloader OpenClaw Plugin & Skill | ClawHub

Looking to integrate Yt Downloader into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

Download YouTube videos as MP4 at highest quality. Use when user sends a YouTube URL and wants to download/save it. Triggers on YouTube links (youtube.com, youtu.be) with download intent. Stores videos as assets with labels and registers them for the dashboard.

Install

ClawHub CLI
openclaw skills install @honeybee1130/yt-downloader
Node.js (npx)
npx clawhub@latest install yt-downloader

Full SKILL.md

Open original
Metadata table.
namedescription
youtube-downloaderDownload YouTube videos as MP4 at highest quality. Use when user sends a YouTube URL and wants to download/save it. Triggers on YouTube links (youtube.com, youtu.be) with download intent. Stores videos as assets with labels and registers them for the dashboard.

SKILL.md content below is scrollable.

YouTube Downloader

Download YouTube videos as high-quality MP4 files and register them as assets.

Usage

When user sends a YouTube URL to download:

bash ~/. openclaw/workspace/skills/youtube-downloader/scripts/download.sh "YOUTUBE_URL" "label"

Parameters:

Example

User: "download this https://youtube.com/watch?v=abc123 and label it event-recap"

bash ~/.openclaw/workspace/skills/youtube-downloader/scripts/download.sh "https://youtube.com/watch?v=abc123" "event-recap"

Output

  • Video location: ~/.openclaw/workspace/assets/videos/{label}_{videoId}_{timestamp}.mp4
  • Registry: ~/.openclaw/workspace/assets/registry.json - JSON log of all downloaded assets

Registry Format

Each download adds an entry:

{
  "type": "video",
  "source": "youtube",
  "videoId": "abc123",
  "label": "event-recap",
  "filename": "event-recap_abc123_20260201_234500.mp4",
  "path": "/full/path/to/file.mp4",
  "url": "https://youtube.com/watch?v=abc123",
  "downloadedAt": "2026-02-01T23:45:00Z",
  "filesize": "150M"
}

Quality

Downloads best available quality:

  • Video: Highest resolution (up to 4K)
  • Audio: Best quality, merged
  • Format: MP4 (h264 + aac)

Limitations

  • No live streams
  • Private/deleted videos will fail
  • Age-restricted may need cookies
ClawHub Registry URL: https://clawhub.ai/honeybee1130/skills/yt-downloader

Related skills

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