Install
$ agentstack add skill-ericwang915-pythonclaw-spotify ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Spotify
Control Spotify playback via the Spotify Web API.
When to Use
✅ USE this skill when:
- "Play some jazz music"
- "Skip this song"
- "What's currently playing?"
- "Search for songs by The Beatles"
- "Pause the music"
- "Add this song to my queue"
When NOT to Use
❌ DON'T use this skill when:
- Downloading or saving music → Spotify API doesn't support downloads
- Apple Music or YouTube Music → different APIs/tools
- Playing local audio files → use system media player
- Music recognition → use specialised tools (Shazam, etc.)
Setup
- Create a Spotify app at https://developer.spotify.com/dashboard
- Set redirect URI to
http://localhost:8888/callback - Get your Client ID and Client Secret
- Configure in
pythonclaw.json:
"skills": {
"spotify": {
"clientId": "your-client-id",
"clientSecret": "your-client-secret"
}
}
- Run the auth flow once to get a refresh token:
python {skill_path}/spotify_ctl.py auth
Alternative: spotify-player CLI
If you have spotify_player installed (Rust-based TUI):
brew install spotify_player # macOS
Then use it directly:
spotify_player playback play
spotify_player playback pause
spotify_player search "query"
Commands
Current playback
python {skill_path}/spotify_ctl.py now-playing
Search
python {skill_path}/spotify_ctl.py search "The Beatles" --type track
python {skill_path}/spotify_ctl.py search "Chill Vibes" --type playlist
Playback control
python {skill_path}/spotify_ctl.py play
python {skill_path}/spotify_ctl.py pause
python {skill_path}/spotify_ctl.py next
python {skill_path}/spotify_ctl.py previous
Play a specific track or playlist
python {skill_path}/spotify_ctl.py play --uri spotify:track:4iV5W9uYEdYUVa79Axb7Rh
python {skill_path}/spotify_ctl.py play --uri spotify:playlist:37i9dQZF1DXcBWIGoYBM5M
Queue a track
python {skill_path}/spotify_ctl.py queue spotify:track:4iV5W9uYEdYUVa79Axb7Rh
Volume
python {skill_path}/spotify_ctl.py volume 50
Notes
- Requires Spotify Premium for playback control
- An active Spotify device must be running (desktop app, mobile, or web player)
- The auth token expires and auto-refreshes via the refresh token
- Search results return Spotify URIs which can be used for playback
Resources
| File | Description | |------|-------------| | spotify_ctl.py | Spotify Web API controller |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ericwang915
- Source: ericwang915/PythonClaw
- License: MIT
- Homepage: https://github.com/ericwang915/PythonClaw
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.