Stop the STT daemon
/plugin marketplace add jarrodwatts/claude-stt/plugin install claude-stt@jarrodwatts-claude-sttStop the speech-to-text daemon.
When the user runs /claude-stt:stop:
Find the working Python command:
python3 --version 2>/dev/null && echo "USE_PYTHON3" || python --version 2>/dev/null && echo "USE_PYTHON" || echo "NOT_FOUND"
USE_PYTHON3, use python3 for subsequent commandsUSE_PYTHON, use python for subsequent commandsNOT_FOUND, tell user: "Python not found. Please run /claude-stt:setup first."Using the detected Python command:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/exec.py -m claude_stt.daemon stop
(Replace python3 with python if that's what was detected)
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/exec.py -m claude_stt.daemon status
claude-stt daemon stopped.
To start again: /claude-stt:start