원클릭으로
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 직업 분류 기준
Create or update SKILL.md packages with deterministic frontmatter, clear trigger descriptions, and valid command/script execution mappings.
Narrative summarization, storytelling, and long-form synthesis in Sigrid's voice — named after the Viking court poets who kept memory alive through story.
Maintain stable user and project facts across sessions using workspace memory files and runtime memory state.
Schedule reminders and recurring tasks with the `cron` tool (add/list/remove/enable/disable/run).
Read, write, and search local Obsidian vault markdown files via the filesystem.
Remote-control tmux sessions for interactive CLIs by sending keystrokes and capturing pane output.
| name | spotify |
| description | Control Spotify playback, search tracks/albums/playlists, and manage queues via the Spotify Web API. |
| always | false |
| script | spotify |
| requirements | {"env":["SPOTIFY_CLIENT_ID","SPOTIFY_CLIENT_SECRET"]} |
| 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"