$npx -y skills add kennethleungty/claude-music --skill pausePause — stop the music (alias for /stop)
| 1 | This skill is part of the claude-music plugin. Only invoke when the user explicitly uses the slash command. |
| 2 | |
| 3 | # Stop Music |
| 4 | |
| 5 | Stop background music and show a session recap. |
| 6 | |
| 7 | Run `"${CLAUDE_PLUGIN_ROOT}/scripts/music-controller.sh" stop`. |
| 8 | |
| 9 | - If `"already_stopped"`: just say **♪ No music playing. ♪** |
| 10 | - Otherwise format a recap using the JSON fields. Use `duration_minutes` for session duration (show "< 1 min" if 0), `station_count`, `genre`, `today_sessions`, `today_minutes`, and `today_genres` (each genre with its minutes, sorted by most listened). |
| 11 | |
| 12 | Output format — use this exact markdown structure: |
| 13 | |
| 14 | **♪ Claude Music · Session Recap** |
| 15 | |
| 16 | **This session** — {genre} for {duration_minutes} min, {station_count} station(s) |
| 17 | |
| 18 | **Today so far** — {today_sessions} session(s), {today_minutes} min total ({genres list e.g. "ambient 30 min, jazz 15 min"}) |
| 19 | |
| 20 | *{fun one-liner that varies, e.g. "Good vibes only.", "Your ears deserved that.", "The code was better with music.", "Same time tomorrow?", "That was a vibe."}* |