voicemode: Skill for Claude Code

.claude/skills/voicemode-dj/SKILL.md

voicemode-dj is a skill for Claude Code from mbailey/voicemode. It costs 17 tokens per session (383 once invoked), scanned A, original, MIT.

A background-music control skill for VoiceMode voice sessions using the mpv media player. It can play files or URLs and control playback, volume, and chapter navigation.

In plain words
What is it for?
Use it to start or stop music, check what is playing, change volume, move between chapters, search the music library, or play a Music For Programming episode.
Why use it?
It lets a developer manage music without leaving a voice session or manually controlling the media player. It also provides a default Music For Programming episode when programming music is requested.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is mbailey/voicemode's own configuration. It tells Claude Code how to work on voicemode itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything voicemode configures →

Part of the voicemode plugin — 5 skills, 3 commands, 1 agent, 5 hooks, 1 MCP server shipped together

About the project

VoiceMode adds natural spoken conversations to Claude Code and other agents that support MCP. Developers use it when their hands or eyes are busy, with optional local speech services for offline or privacy-focused use, and the catalogue provides skills, hooks, commands, plugins, instructions, agents, settings, and MCP integration for the workflow.

mbailey/voicemode · 1,350 stars · on GitHub · voicemode.dev

Reuse

Borrowing it

Nothing to install: this file belongs to mbailey/voicemode. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mbailey/voicemode/master/.claude/skills/voicemode-dj/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mbailey/voicemode

Made for: Claude Code.

Or install voicemode, the plugin that ships this one along with the rest of its 5 skills, 3 commands, 1 agent, 5 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for voicemode-dj

README.md
[![agentmods](https://agentmods.dev/badge/skills/mbailey/voicemode/voicemode-dj.svg)](https://agentmods.dev/skills/mbailey/voicemode/voicemode-dj)
Your own site
<a href="https://agentmods.dev/skills/mbailey/voicemode/voicemode-dj"><img src="https://agentmods.dev/badge/skills/mbailey/voicemode/voicemode-dj.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 383 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00017 $0.00383
Opus 5 $0.00009 $0.00192
Sonnet 5 $0.00003 $0.00077
Haiku 4.5 $0.00002 $0.00038

Measured 8d ago against content hash 217504e4ddda, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

voicemode-dj 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 8d 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.

.claude/skills/voicemode-dj/SKILL.md · 52 lines

What it actually says

VoiceMode DJ

Background music control during VoiceMode sessions via voicemode dj commands.

Default: Music For Programming

When asked to play music for coding/programming, default to Music For Programming episode 49:

voicemode dj mfp play 49

This plays Julien Mier's mix with chapter navigation support. Use voicemode dj mfp list to see all available episodes.

Quick Reference

voicemode dj play <file|url>     # Start playback
voicemode dj stop                # Stop playback
voicemode dj mfp play 49         # Play MFP episode (Julien Mier)
voicemode dj status              # What's playing
voicemode dj next / prev         # Chapter navigation
voicemode dj volume [0-100]      # Get/set volume
voicemode dj find <query>        # Search library

Documentation

Programmatic Access

from voice_mode import DJController, MfpService, MusicLibrary

Configuration

~/.voicemode/voicemode.env:

VOICEMODE_DJ_VOLUME=50   # Default startup volume
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. 8d ago First seen · 52 lines · 17 tokens per session scan A 217504e4ddda

Subscribe to this mod's changes

voicemode-dj is a skill published in the GitHub repository mbailey/voicemode (1,350 stars, last pushed 3d ago), licensed MIT. It adds 17 tokens to every session and 383 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

post-to-xhs

A publishing guide for 小红书, a Chinese social-media platform. It covers posting image-and-text content or a longer formatted article, using supplied content or a webpage.

xpzouying/xiaohongshu-mcp · 96 tokens

screenshot-game-view

Capture a screenshot of the Unity Editor's Game View by reading its internal render texture directly. Image size matches the current Game View resolution; the tool corrects Y-flip on DirectX / Metal so the output is always upright. Requires an open Game View window.

IvanMurzak/Unity-MCP · 58 tokens

screenshot-scene-view

Capture a screenshot from the Unity Editor Scene View at the requested size. Renders via the Scene View's active camera onto a temporary RenderTexture. Requires an open Scene View.

IvanMurzak/Unity-MCP · 42 tokens

create-video-seedance-2-fal

Generate a single 4-15s vertical video clip with ByteDance Seedance 2.0 reference-to-video via fal.ai. Multi-image reference (avatar + product + setting), native lip-synced VO + ambient audio (generate-audio on by default), internal multi-cut handling within one render. Routes through the GooseWorks FAL proxy (bills…

gooseworks-ai/goose-skills · 117 tokens

create-workflow-diagram

Create FigJam/Miro-style workflow diagrams as high-quality PNG images from plain-text workflow descriptions. Renders beautiful HTML diagrams with connected nodes, arrows, and labels, then screenshots them for sharing.

gooseworks-ai/goose-skills · 45 tokens

demo-builder

Builds personalized demo assets for top prospects using the founder's product API/MCP/SDK. Researches prospect, proposes demo concepts, builds working prototype, tests it, and generates comparison report with live demo link.

gooseworks-ai/goose-skills · 46 tokens