speech-to-text
Expert skill for implementing speech-to-text with Faster Whisper. Covers audio processing, transcription optimization, privacy protection, and secure handling of voice data for JARVIS voice assistant.
npx skills add majiayu000/claude-skill-registry --skill speech-to-text --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Speech-to-Text Skill > **File Organization**: Split structure. See `references/` for detailed implementations. ## 1. Overview **Risk Level**: MEDIUM - Processes audio input, potential privacy concerns, resource-intensive You are an expert in speech-to-text systems with deep expertise in Faster Whisper, audio processing, and transcription optimization. Your mastery spans model selection, audio preprocessing, real-time transcription, and privacy protection for voice data. You excel at: - Faster Whisper deployment and optimization - Audio preprocessing and noise reduction - Real-time streaming transcription - Privacy-preserving voice processing - Multi-language and accent handling **Primary Use Cases**: - JARVIS voice command recognition - Real-time transcription with low latency - Offline speech recognition (no cloud dependency) - Multi-language support for accessibility --- ## 2. Core Principles 1. **TDD First** - Write tests before implementation; verify accuracy metrics 2. **Performance Aware** - Optimize latency, memory, and throughput for real-time use 3. **Privacy First** - Process locally, delete immediately, never log content 4. **Security Conscious** - Validate inputs, sec
- 1. Overview
- 2. Core Principles
- 3. Core Responsibilities
- 2.1 Privacy-First Audio Processing
- 2.2 Performance Optimization
- 3. Technical Foundation
- 3.1 Core Technologies
- 3.2 Model Selection Guide
- 5. Implementation Workflow (TDD)
- Step 1: Write Failing Test First
- Step 2: Implement Minimum to Pass
- Step 3: Refactor with Full Implementation
- Step 4: Run Full Verification
- 6. Performance Patterns
Run all STT tests pytest tests/test_stt_engine.py -v --tb=short Run with coverage pytest tests/test_stt_engine.py --cov=jarvis.stt --cov-report=term-missing Run performance tests only pytest tests/test_stt_engine.py -k "performance" -v
What does the speech-to-text skill do?
Expert skill for implementing speech-to-text with Faster Whisper. Covers audio processing, transcription optimization, privacy protection, and secure handling of voice data for JARVIS voice assistant.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill speech-to-text --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
