---
name: C Music
slug: c-music
category: Automation
description: C Music controls Spotify playback and searches music through the `spogo` CLI. Use it to play, pause, skip, search tracks or playlists, manage the queue, and browse saved playlists.
github: "https://github.com/daxaur/openpaw/tree/main/skills/c-music"
language: TypeScript
stars: 167
forks: 11
install: "npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-music ~/.claude/skills/c-music"
installs_to: ~/.claude/skills/c-music
source_path: skills/c-music/SKILL.md
collection_size: 25
category_size: 2226
collection_url: "https://dirskills.com/collections/daxaur/openpaw"
added: 2026-09-08T05:34:33.274Z
last_synced: 2026-09-08T05:34:33.274Z
canonical_url: "https://dirskills.com/skills/c-music"
---

# C Music

C Music controls Spotify playback and searches music through the `spogo` CLI. Use it to play, pause, skip, search tracks or playlists, manage the queue, and browse saved playlists.

**Install:**

```bash
npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-music ~/.claude/skills/c-music
```

## README

## What This Skill Does

Enables Claude to control Spotify playback and search music via the `spogo` CLI tool.

## Available CLI Tool: `spogo`

### Common Commands

```bash
# Play/pause toggle
spogo play
spogo pause

# Skip to next or previous track
spogo next
spogo prev

# Search and play a track
spogo search track "Bohemian Rhapsody" --play

# Search an album and play it
spogo search album "Dark Side of the Moon" --play

# Search playlists
spogo search playlist "chill vibes"

# Play a specific playlist by name or URI
spogo playlist play "My Playlist"

# Add current track to queue
spogo queue add "spotify:track:TRACK_ID"

# Show current playback status
spogo status

# Set volume (0-100)
spogo volume 60

# List your saved playlists
spogo playlist list
```

## Usage Guidelines

- Use `spogo status` first to check what is currently playing
- When searching, confirm the result with the user before playing if ambiguous
- Volume is a 0–100 integer scale

## Notes

- Requires `spogo` configured with Spotify OAuth credentials
- Playback requires an active Spotify Premium account
- Spotify must be open on at least one device for commands to work
