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.
npx agentmods add instructions/mbailey/voicemode/claude-mdgit clone --depth 1 https://github.com/mbailey/voicemodeWrote 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.
[](https://agentmods.dev/instructions/mbailey/voicemode/claude-md)<a href="https://agentmods.dev/instructions/mbailey/voicemode/claude-md"><img src="https://agentmods.dev/badge/instructions/mbailey/voicemode/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02166 | $0.02166 |
| Opus 5 | $0.01083 | $0.01083 |
| Sonnet 5 | $0.00433 | $0.00433 |
| Haiku 4.5 | $0.00217 | $0.00217 |
Grade A, and why
voicemode CLAUDE.md 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Voice Interaction
Load the voicemode skill for voice conversation support: /voicemode:voicemode
Project Overview
VoiceMode is a Python package that provides voice interaction capabilities for AI assistants through the Model Context Protocol (MCP). It enables natural voice conversations with Claude Code and other AI coding assistants by integrating speech-to-text (STT) and text-to-speech (TTS) services.
Key Commands
Development & Testing
# Install in development mode with dependencies
make dev-install
# Run all unit tests
make test
# Or directly: uv run pytest tests/ -v --tb=short
# Run specific test
uv run pytest tests/test_voice_mode.py -v
# Clean build artifacts
make clean
Building & Publishing
# Build Python package
make build-package
# Build development version (auto-versioned)
make build-dev
# Test package installation
make test-package
# Release workflow (bumps version, tags, pushes) — see "Releases & Changelog" below before running
make release
Documentation
# Serve docs locally at http://localhost:8000
make docs-serve
# Build documentation site
make docs-build
# Check docs for errors (strict mode)
make docs-check
Releases & Changelog
The changelog is the release notes. Keep it accurate continuously — it is not written at release time.
Versioning
- Semantic Versioning,
X.Y.Z. New backward-compatible features → minor bump (e.g.8.6.1→8.7.0); fixes only → patch. - Source of truth:
voice_mode/__version__.py— auto-updated by the release script. Never edit it by hand (it says so itself).pyproject.tomlreads it via[tool.hatch.version]. - The release script also bumps
server.json,installer/pyproject.toml, and.claude-plugin/plugin.json(the plugin gets ap0suffix, e.g.8.7.0p0). Don't bump these manually either.
The CHANGELOG is continuously maintained
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.
- 4d ago First seen · 199 lines · 2,166 tokens per session scan A 839c63641993
voicemode CLAUDE.md is an instructions file published in the GitHub repository mbailey/voicemode (1,347 stars, last pushed 3d ago), licensed MIT. It adds 2,166 tokens to every session, about $0.0108 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.
Other instructions, from other repositories
Kokoro-FastAPI AGENTS.md
AGENTS.md instructions for remsky/Kokoro-FastAPI, covering agents.md, layout, commands, conventions and gotchas.
speech-swift AGENTS.md
AGENTS.md instructions for soniqo/speech-swift, covering agent instructions, communication style, workflow, running tests and benchmarks — sequential and memory-aware and git conventions.
Trellis AGENTS.md
AGENTS.md instructions for mindfold-ai/Trellis, covering trellis instructions, gitnexus — code intelligence, always do, never do and resources.
cyrus copilot-instructions.md
Copilot instructions for cyrusagents/cyrus: Note, there is a need to maintain the use of '--print' when running the claude exec commands because that is what makes it non-interactive.
ios-simulator-skill CLAUDE.md
Instructions for conorluddy/ios-simulator-skill, covering claude.md - developer guide, project overview, project structure, architecture patterns and pattern 1: class-based script design.
claude-conductor CLAUDE.md
Instructions for superbasicstudio/claude-conductor, covering claude.md, critical context (read first), project architecture, core component and planned documentation modules.