feat(spotify): implement milestone M1 scaffold

This commit is contained in:
2026-04-12 01:28:47 -05:00
parent a91b82ae32
commit f7dfb7d71d
13 changed files with 1118 additions and 0 deletions

18
docs/spotify.md Normal file
View File

@@ -0,0 +1,18 @@
# Spotify
The Spotify skill adds a local helper for Spotify Web API work from OpenClaw.
Current scope:
- search Spotify tracks
- list the current user's playlists
- create private or public playlists
- add and remove track URIs
- search and add tracks
- import tracks from text lists, M3U/M3U8 playlists, and local folders
The skill uses OAuth2 Authorization Code with PKCE. It does not need a Spotify client secret and does not use browser automation for Spotify operations.
Implementation is in `skills/spotify/`.
Setup and live-smoke details will be completed with the auth and command implementation.