voice-mode
Activates voice conversation mode using Pocket TTS Docker container. Use when user says "voice mode", "let's talk", "talk to me", "speak your responses", or wants Claude to respond with spoken audio. Speaks all responses through TTS and plays via speakers.
npx skills add majiayu000/claude-skill-registry --skill voice-mode --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Voice Mode Voice conversation mode where all responses are spoken aloud via Pocket TTS. ## Setup The `tts.sh` script lives in this skill's `scripts/` directory. Resolve it relative to this SKILL.md: ``` SKILL_DIR="<absolute path to this skill's directory>" TTS="${SKILL_DIR}/scripts/tts.sh" ``` Use `${TTS}` for all commands below. ## Activation On activation, ALWAYS run these steps in order before anything else: 1. Check the TTS container is running: ```bash ${TTS} ensure ``` If this fails (exit code 1), tell the user the container is down and stop. Do NOT attempt to start it. 2. Confirm voice mode is active by speaking: ```bash ${TTS} play "Voice mode activated. I'm listening." -v eponine ``` ## Response Rules While voice mode is active: 1. **ALWAYS speak every response** using tts.sh: ```bash ${TTS} play "<response text>" -v eponine ``` 2. **Prefer concise responses** — aim for 1-3 sentences when used standalone. When combined with another skill, match the response length that skill requires. 3. **Write naturally for speech** — avoid markdown, bullet points, code blocks, URLs. Write as you'd speak in conversation. 4. **Also output text** — print a brief text version so the conve
- Setup
- Activation
- Response Rules
- Voice Selection
- Deactivation
- Configuration
- Dependencies
What does the voice-mode skill do?
Activates voice conversation mode using Pocket TTS Docker container. Use when user says "voice mode", "let's talk", "talk to me", "speak your responses", or wants Claude to respond with spoken audio. Speaks all responses through TTS and plays via speakers.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill voice-mode --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
