بنقرة واحدة
sources
Sources — add, edit, or remove streams and genres
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Sources — add, edit, or remove streams and genres
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
DJ — auto-picks the best genre for your session
Shuffle — pick a completely random genre and station
Mood — tell the DJ how you're feeling and it picks the right music
Play music — start or switch genre/station
Previous — go back to the last stream you were on
Vibe — reads your session and picks the perfect genre
| name | sources |
| description | Sources — add, edit, or remove streams and genres |
| model | sonnet |
| allowed-tools | Bash, Read, Edit, Write |
| maxTurns | 8 |
This skill is part of the claude-music plugin. Only invoke when the user explicitly uses the slash command.
Manage the music streams and genres available in the claude-music plugin. This is a conversational editor — the user tells you what they want to change and you handle the YAML.
${CLAUDE_PLUGIN_ROOT}/config/sources.ymlFirst, read the current sources file:
cat "${CLAUDE_PLUGIN_ROOT}/config/sources.yml"
Then display a clean summary for the user:
Your music sources:
For each genre, show:
At the end, tell the user what they can do:
You can ask me to:
- Add a stream — e.g. "add a stream to jazz called KCSM with url http://..."
- Add a genre — e.g. "add a new genre called rock"
- Remove a stream — e.g. "remove Nightwave Plaza from lofi"
- Remove a genre — e.g. "remove the electronic genre"
- Enable a genre — uncomment a commented-out genre (like electronic)
When the user asks to make a change:
${CLAUDE_PLUGIN_ROOT}/config/sources.yml. Preserve the existing YAML structure: top-level genre keys, 2-space indent for - name: list items, 4-space indent for url: properties.Append a new - name: / url: entry under that genre's list. Use 2-space indent for list items, 4-space indent for properties:
genre:
- name: Station Name
url: http://stream.url/path
Add a new top-level key with the same structure as above.
Remove the - name: and url: lines for that stream.
Remove the entire genre block.
Uncomment all lines in the block (remove # prefix).