# Mute

> Mute the microphone during a voice chat session. The capture loop pauses until unmuted.

- Skill: `majiayu000/mute` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/mute`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/mute/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/mute

---


# Mute Microphone

Pause microphone capture during a voice chat session.

## Steps

1. Check that a voice session is active (use Bash):
   ```bash
   source ~/.claude-talk/venvs/wlk/bin/activate
   claude-talk state get SESSION
   ```
   If it returns non-zero or the value is not "active", tell the user: "No voice chat session is active. Start one with `/claude-talk:start`."

2. Set muted state (use Bash):
   ```bash
   source ~/.claude-talk/venvs/wlk/bin/activate
   claude-talk state set MUTED true
   claude-talk state set STATUS muted
   ```

3. Confirm: "Microphone muted. Run `/claude-talk:unmute` to resume."

