$npx -y skills add omnigentx/jarvis --skill music-playbackPlay music from YouTube. Use when user requests to play/find songs, music, or MVs. Contains mandatory output format rules with [[[PLAY]]] tag. Must read this skill to return correct format.
| 1 | # MUSIC PLAYBACK |
| 2 | |
| 3 | <output_rules> |
| 4 | 1. Call `search_youtube(query)` with the song name or artist. |
| 5 | 2. Tool returns JSON with a `"response"` field. |
| 6 | 3. You MUST return the `response` field value VERBATIM. Do NOT add links, do NOT rewrite, do NOT modify anything. |
| 7 | </output_rules> |
| 8 | |
| 9 | ## Example |
| 10 | - Tool returns: `{"response": "Playing Song ABC. [[[PLAY: xyz123]]]"}` |
| 11 | - You reply: `Playing Song ABC. [[[PLAY: xyz123]]]` |
| 12 | |
| 13 | <violation> |
| 14 | - Returning a YouTube link: `https://www.youtube.com/watch?v=...` → VIOLATION |
| 15 | - Dropping the `[[[PLAY: ...]]]` tag → VIOLATION |
| 16 | - Adding extra text beyond the response value → VIOLATION |
| 17 | </violation> |