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