Jump to related tools in the same category or review the original source on GitHub.

Media & Streaming @2mawi2 Updated 2/26/2026

🎵 Spotify OpenClaw Skill - ClawHub

Do you want your AI agent to automate Spotify workflows? This free skill from ClawHub helps with media & streaming tasks without building custom tools from scratch.

What this skill does

Control Spotify playback on macOS. Play/pause, skip tracks, control volume, play artists/albums/playlists. Use when a user asks to play music, control Spotify, change songs, or adjust Spotify volume.

Install

npx clawhub@latest install spotify

Full SKILL.md

Open original
namedescription
spotifyControl Spotify playback on macOS. Play/pause, skip tracks, control volume, play artists/albums/playlists. Use when a user asks to play music, control Spotify, change songs, or adjust Spotify volume.

Spotify CLI

Control Spotify on macOS. No API key required.

Commands

spotify play                     # Resume
spotify pause                    # Pause/toggle
spotify next                     # Next track
spotify prev                     # Previous track
spotify stop                     # Stop

spotify vol up                   # +10%
spotify vol down                 # -10%
spotify vol 50                   # Set to 50%

spotify status                   # Current track info

Play by Name

  1. Search web for Spotify URL: "Daft Punk" site:open.spotify.com
  2. Get ID from URL: open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi → ID is 4tZwfgrHOc3mvqYlEYSvVi
  3. Play with AppleScript:
# Artist
osascript -e 'tell application "Spotify" to play track "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi"'

# Album
osascript -e 'tell application "Spotify" to play track "spotify:album:4m2880jivSbbyEGAKfITCa"'

# Track
osascript -e 'tell application "Spotify" to play track "spotify:track:2KHRENHQzTIQ001nlP9Gdc"'

Notes

  • macOS only - uses AppleScript
  • Spotify desktop app must be running
  • Works with Sonos via Spotify Connect
Original URL: https://github.com/openclaw/skills/blob/main/skills/2mawi2/spotify

Related skills

If this matches your use case, these are close alternatives in the same category.