用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/danstrem2/clawdbot-skill-master-pack --skill ytmusic-librarian命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync Use when: adding authentication, clerk auth, user authentication, sign in, sign up.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
基于 SOC 职业分类
正在显示 SKILL.md
| name | ytmusic-librarian |
| description | Manage YouTube Music library, playlists, and discovery via ytmusicapi. |
This skill uses the ytmusicapi Python library to interact with YouTube Music.
ytmusicapi package: pip install ytmusicapioauth.json or browser.json) in the skill folder.Install the library:
pip install ytmusicapi
Generate Authentication (The "cURL Handshake"):
F12 to open DevTools, go to the Network tab.browse in the network list.browse request -> Copy -> Copy as cURL (bash).headers.txt in the skill folder.browser.json:
from ytmusicapi.auth.browser import setup_browser
with open('headers.txt', 'r') as f:
setup_browser('browser.json', f.read())
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))"
yt.get_library_songs(), yt.get_library_albums()yt.rate_song(videoId, 'LIKE'), yt.edit_song_library_status(feedbackToken)yt.create_playlist(title, description)yt.add_playlist_items(playlistId, [videoIds])yt.remove_playlist_items(playlistId, [videoIds])yt.get_lyrics(browseId)yt.get_watch_playlist(videoId) -> related