원클릭으로
spotify
Control Spotify playback, search tracks/albums/playlists, and manage queues via the Spotify Web API.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Control Spotify playback, search tracks/albums/playlists, and manage queues via the Spotify Web API.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
| name | spotify |
| description | Control Spotify playback, search tracks/albums/playlists, and manage queues via the Spotify Web API. |
| always | false |
| metadata | {"clawlite":{"emoji":"🎵","auth":{"requiredEnv":["SPOTIFY_CLIENT_ID","SPOTIFY_CLIENT_SECRET"],"optionalEnv":["SPOTIFY_ACCESS_TOKEN"]}}} |
Use this skill when the user wants to control Spotify playback or search for music.
Spotify Web API requires OAuth 2.0. Set:
SPOTIFY_CLIENT_ID and SPOTIFY_CLIENT_SECRET (from https://developer.spotify.com/dashboard)SPOTIFY_ACCESS_TOKEN (short-lived; refresh with refresh token as needed)Alternatively use spotify-player CLI if installed: spotify_player command.
https://api.spotify.com/v1
Headers: Authorization: Bearer $SPOTIFY_ACCESS_TOKEN
GET /me/player # current playback state
PUT /me/player/play # resume/start playback
PUT /me/player/pause # pause
POST /me/player/next # skip to next track
POST /me/player/previous # skip to previous
PUT /me/player/volume?volume_percent=N
GET /search?q=QUERY&type=track,album,playlist&limit=10
GET /tracks/{track_id}
GET /albums/{album_id}
GET /playlists/{playlist_id}
POST /me/player/queue?uri=spotify:track:ID # add to queue
GET /me/playlists # user's playlists
GET /me/top/tracks?time_range=medium_term
spotify_player playback play
spotify_player playback pause
spotify_player playback next
spotify_player search --query "artist:Radiohead"