@jarrodwatts/claude-stt
Daemon-based design: A background process (STTDaemon) runs continuously, listening for hotkey events and coordinating audio capture, transcription, and text output.
Install
Add @jarrodwatts/claude-stt to Claude Code with the PolySkill CLI: polyskill add @jarrodwatts/claude-stt
Instructions
# CLAUDE.md This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. ## Commands ```bash # Install dependencies (uv preferred) uv sync --python 3.12 --extra dev # Or bootstrap without uv (creates local .venv) python scripts/setup.py --dev --skip-audio-test --skip-model-download --no-start # Run tests uv run python -m unittest discover -s tests # Run single test uv run python -m unittest tests.test_config # Test locally with Claude Code claude --plugin-dir . # Lint (ruff) uv run ruff check src/ ``` ## Architecture **Daemon-based design**: A backgro…
Keywords: github, speech-to-text, audio-transcription, daemon-process, hotkey-listener, background-service, real-time-transcription, audio-capture, coding-automation