Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage YouTube Music library, playlists, and discovery via ytmusicapi.
Manage YouTube Music library, playlists, and discovery via ytmusicapi.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
This skill uses the ytmusicapi Python library to interact with YouTube Music.
Python 3.x ytmusicapi package: pip install ytmusicapi Authentication file (oauth.json or browser.json) in the skill folder.
Install the library: pip install ytmusicapi Generate Authentication (The "cURL Handshake"): Open Microsoft Edge and visit music.youtube.com (ensure you are logged in). Press F12 to open DevTools, go to the Network tab. Click your Profile Icon -> Library on the page. Look for a request named browse in the network list. Right-click the browse request -> Copy -> Copy as cURL (bash). Paste that cURL command into a file named headers.txt in the skill folder. Run the following Python snippet to generate browser.json: from ytmusicapi.auth.browser import setup_browser with open('headers.txt', 'r') as f: setup_browser('browser.json', f.read()) Ensure browser.json is located in the skill folder. Verify: python -c "from ytmusicapi import YTMusic; yt = YTMusic('browser.json'); print(yt.get_library_songs(limit=1))"
List songs/albums: yt.get_library_songs(), yt.get_library_albums() Add/Remove: yt.rate_song(videoId, 'LIKE'), yt.edit_song_library_status(feedbackToken)
Create: yt.create_playlist(title, description) Add Tracks: yt.add_playlist_items(playlistId, [videoIds]) Remove Tracks: yt.remove_playlist_items(playlistId, [videoIds])
Get Lyrics: yt.get_lyrics(browseId) Get Related: yt.get_watch_playlist(videoId) -> related
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.