一键导入
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"