From claude-stt
Checks Python 3.10+ availability, installs missing dependencies, and runs the setup script to configure claude-stt speech-to-text tool with a hotkey for activation.
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-stt:setupFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# claude-stt Setup This skill guides users through setting up claude-stt by checking prerequisites and installing dependencies. ## Instructions Follow these steps IN ORDER. Do not skip ahead. ### Step 1: Check Python Installation Run this command to check Python version: **Evaluate the result:** - If output is `NOT_FOUND` or command fails: Python is not installed. Go to Step 2. - If version is 3.9.x or lower: Python is too old. Go to Step 2. - If version is 3.10 or higher: Python is ready. Skip to Step 3. ### Step 2: Install/Upgrade Python (if needed) If Python is missing or belo...
This skill guides users through setting up claude-stt by checking prerequisites and installing dependencies.
Follow these steps IN ORDER. Do not skip ahead.
Run this command to check Python version:
python3 --version 2>/dev/null || python --version 2>/dev/null || echo "NOT_FOUND"
Evaluate the result:
NOT_FOUND or command fails: Python is not installed. Go to Step 2.If Python is missing or below 3.10, run the appropriate installation command (do not just display it as text). The user will approve it via Claude's permission prompt.
macOS:
First check if Homebrew is installed:
command -v brew >/dev/null && echo "brew installed" || echo "brew not installed"
If Homebrew is installed, run:
brew install [email protected]
If Homebrew is NOT installed, run:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then after Homebrew installs, run brew install [email protected].
Linux (Ubuntu/Debian):
sudo apt update && sudo apt install -y python3.12 python3.12-venv python3-pip
Linux (Fedora/RHEL):
sudo dnf install -y python3.12 python3-pip
Windows:
Windows requires manual installation. Tell the user:
After installation completes, verify Python is now available:
python3 --version 2>/dev/null || python --version 2>/dev/null
If verification shows 3.10+, proceed to Step 3. If it still fails, ask the user to check their PATH or restart their terminal.
Once Python 3.10+ is confirmed, run the setup script using the detected Python command:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/setup.py
(Use python instead of python3 if that's what was detected in Step 1)
The setup script will automatically:
Wait for it to complete. This may take 1-2 minutes on first run.
"Permission denied" or Accessibility errors (macOS):
macOS requires Accessibility permission for keyboard input.
1. Open System Settings > Privacy & Security > Accessibility
2. Find your terminal app (Terminal, iTerm, etc.) and enable it
3. Re-run: /claude-stt:setup
"No module named pip" error:
python3 -m ensurepip --upgrade
Then re-run setup.
PortAudio errors (audio not working):
macOS:
brew install portaudio
Linux:
sudo apt install libportaudio2 # Debian/Ubuntu
sudo dnf install portaudio # Fedora
When setup completes successfully, you'll see:
Setup complete.
Press ctrl+shift+space to start, press again to stop.
The daemon is now running. Use /claude-stt:status to check status anytime.
npx claudepluginhub rymalia/claude-stt3plugins reuse this command
First indexed Jan 16, 2026
/installInstalls VoiceMode, FFmpeg, and local voice services (Whisper, Kokoro) for voice conversations in Claude Code.
/setupInitializes or resumes Conductor project setup by creating foundational documentation (product definition, tech stack, workflow, style guides) through interactive Q&A.
/setupChecks whether the local Codex CLI is ready and optionally toggles the stop-time review gate. If Codex is not installed, prompts the user to install it via npm.
/setupGuides enterprise admins through configuring Claude Office add-in to use their own cloud backend (Vertex AI, Bedrock, Azure AI Foundry, or custom gateway), handles admin consent, and generates deployable M365 manifest(s).
/setupDetects and cleans up ghost installations of the claude-hud plugin in Claude Code, checking cache, registry, and temp files across macOS/Linux and Windows.
/setupInteractive setup wizard that detects installed AI providers, configures auth, and optimizes token usage for the Octopus ecosystem. Runs on first install or manual invocation.