Control YouTube Music with natural language - search, play, pause, skip, volume, shuffle
Install
npx skillscat add miwgel/youtube-music-openclaw Install via the SkillsCat registry.
SKILL.md
YouTube Music Control (Kaset)
Playback Commands
osascript -e 'tell application "Kaset" to <command>'| Command | Description |
|---|---|
play |
Play/resume |
pause |
Pause |
next track |
Next song |
previous track |
Previous song |
set volume N |
Volume 0-100 |
toggle mute |
Mute on/off |
toggle shuffle |
Shuffle on/off |
like track |
Like current |
get player info |
Get state as JSON |
Search and Play
# 1. Search (returns JSON array with id, title)
{baseDir}/bin/youtube-search "artist or song name"
# 2. Play by ID
{baseDir}/bin/play-video VIDEO_IDWhen user wants to play something, search first, pick a random result, then play it.