How this command is triggered — by the user, by Claude, or both
Slash command
/talk:stopThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Stop Claude Talk Stop any currently playing text-to-speech audio. First, determine the plugin directory by finding where this command file is located. The plugin root is the parent of the `commands` directory. Replace `<PLUGIN_ROOT>` with the actual plugin directory path. This will immediately silence any speech in progress.
Stop any currently playing text-to-speech audio.
First, determine the plugin directory by finding where this command file is located. The plugin root is the parent of the commands directory.
python3 <PLUGIN_ROOT>/run.py stop
Replace <PLUGIN_ROOT> with the actual plugin directory path.
This will immediately silence any speech in progress.
npx claudepluginhub primary-vector/claude-marketplace --plugin claude-talk/stop-serverStops the TTS server by killing PID from file if running or using pkill on python3 tts_server.py, removes PID file, prints status.
/stopToggles pause/resume of the current vibe session. Updates session and status JSON files, invokes explainer, and outputs structured confirmation with progress details.
/stopStops the heartbeat daemon by running `bun run ${CLAUDE_PLUGIN_ROOT}/src/index.ts --stop` and reports the output to the user.
/stopStops the Claude Nights Watch daemon gracefully with SIGTERM, timeouts to SIGKILL if needed, and cleans up PID files and locks. Halts autonomous task execution monitoring.
/stopStops running sparkrun inference workloads by recipe name, cluster ID, or all containers on a cluster. Prompts for target if unspecified and confirms with status.
/stopGracefully stops active OMA autonomous workflow, summarizes completed work, open tasks, blockers, and generates structured recovery plan with checkpoint update.