Control Spotify playback — shuffle liked songs, search and play tracks, check what's playing, skip, pause, volume. Uses spotify-cli wrapping the Spotify Web API. <example> Context: User wants to shuffle their music user: "shuffle my liked songs" </example> <example> Context: User asks what's playing user: "what's playing on Spotify?" </example> <example> Context: User wants a specific song user: "play Run DMC Walk This Way" </example> <example> Context: User wants to skip user: "next track" </example> <example> Context: User wants to pause user: "pause the music" </example>
From psnnpx claudepluginhub aladac/claude-pluginsThis skill uses the workspace's default tool permissions.
spotify.shGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Configures VPN and dedicated connections like Direct Connect, ExpressRoute, Interconnect for secure on-premises to AWS, Azure, GCP, OCI hybrid networking.
Control Spotify playback via spotify-cli wrapper script.
SKILL="~/Projects/personality-plugin/skills/spotify/spotify.sh"
# Shuffle liked songs
bash $SKILL shuffle
# What's playing?
bash $SKILL now
# Search and play
bash $SKILL find "Run DMC Walk This Way"
# Playback controls
bash $SKILL pause
bash $SKILL resume
bash $SKILL toggle
bash $SKILL next
bash $SKILL prev
# Browse liked songs
bash $SKILL liked # first 20
bash $SKILL liked 50 # first 50
bash $SKILL liked 20 40 # 20 tracks starting at offset 40
# Volume
bash $SKILL vol 50
# Queue and devices
bash $SKILL queue
bash $SKILL devices
| Command | Description |
|---|---|
shuffle | Enable shuffle + play liked songs collection |
now / status | Current track, artist, progress, device |
find <query> / play <query> | Search and play first match |
pause | Pause playback |
resume | Resume playback |
toggle | Toggle play/pause |
next / skip | Skip to next track |
prev / previous | Go to previous track |
liked [limit] [offset] | List liked songs (paginated) |
vol <0-100> | Set volume level |
devices | List available playback devices |
queue | View current playback queue |
spotify-cli installed (cargo install spotify-cli)spotify-cli auth login)~/.config/spotify-cli/config.toml1167656834spotify:user:1167656834:collectionplay is an alias for find — both search and play the first resultshuffle enables shuffle mode then starts the liked songs collectionspotify-cli subcommands