spotify

An integration for Spotify, a music streaming service. It uses Spotify’s Web API to search music, control playback, and manage queues.

In plain words
What is it for?
Use it to play, pause, skip, change volume, search tracks, albums, or playlists, inspect playback, manage the queue, and view playlists or top tracks.
Why use it?
It removes the need to perform supported playback and music searches manually in the Spotify app. It can use the current playback account and its available playlists and listening data.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/eobarretooo/clawlite/spotify
Any agent
npx skills add eobarretooo/ClawLite --skill spotify
Clone the repo
git clone --depth 1 https://github.com/eobarretooo/ClawLite

Made for: Claude Code, Codex.

Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 431 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00022 $0.00431
Opus 5 $0.00011 $0.00216
Sonnet 5 $0.00004 $0.00086
Haiku 4.5 $0.00002 $0.00043

Measured 2d ago against content hash eba0b68702a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

spotify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

clawlite/skills/spotify/SKILL.md · 58 lines

What it actually says

Spotify

Use this skill when the user wants to control Spotify playback or search for music.

Auth

Spotify Web API requires OAuth 2.0. Set:

Alternatively use spotify-player CLI if installed: spotify_player command.

Base URL

https://api.spotify.com/v1
Headers: Authorization: Bearer $SPOTIFY_ACCESS_TOKEN

Key endpoints

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 CLI (if available)

spotify_player playback play
spotify_player playback pause
spotify_player playback next
spotify_player search --query "artist:Radiohead"

Safety notes

  • Playback commands require an active Spotify Premium device.
  • Token expiry is 1 hour; handle 401 by refreshing.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 58 lines · 22 tokens per session scan A eba0b68702a3

Subscribe to this mod's changes

spotify is a skill published in the GitHub repository eobarretooo/ClawLite (49 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 431 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

musicbox

Use when the user wants to play/pause/skip music, control volume, seek, search songs/playlists, query NetEase Music data, or operate NetEase MusicBox. Drives MusicBox through the musicbox CLI + daemon; never simulates terminal keypresses to the curses TUI.

darknessomi/musicbox · 65 tokens

shortfilm-prompt

电影感 AI 视频提示词的 5 段式写法(Seedance / 小云雀 / Sora / 可灵 / 即梦通用),含 14 条翻车规避规则。挂给写视频提示词、分镜、短剧脚本的步骤。.

jnMetaCode/agency-orchestrator · 66 tokens

oma-video

Short-form, explainer, and demo video generation via a key-optional 3-tier router. Composes scripts, oma-voice narration, oma-image/oma-slide/stock visuals, key-free captions, and a per-run agent-authored Remotion composition (always-latest Remotion + remotion-dev/skills) into reproducible run directories. Routes…

first-fluke/oh-my-agent · 163 tokens

oma-image

Multi-vendor AI image generation with authentication-aware parallel dispatch. Routes to Codex (gpt-image-2 via ChatGPT OAuth), Antigravity (Gemini-family "nano-banana" image models via agy CLI + Gemini Code Assist; exact model chosen internally by agy), and Pollinations (flux/zimage, free with signup). Use for image…

first-fluke/oh-my-agent · 90 tokens

oma-voice

Local-first text-to-speech and speech-to-text via the Voicebox MCP server. Generates speech from cloned or preset voice profiles for agent notifications, content voiceovers, and audio asset creation, and transcribes audio files for meeting notes or memos. Runs entirely on-device with no cloud, no API keys, no per-call…

first-fluke/oh-my-agent · 96 tokens

image-gen

Generate images from text prompts via DashScope/Qwen. Use when creating, drawing, or illustrating images.

alibaba/anolisa · 24 tokens