Agent skill · Data & Analytics

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/ai-ml/speech-to-text/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. 1. Overview
  2. 2. Core Principles
  3. 3. Core Responsibilities
  4. 2.1 Privacy-First Audio Processing
  5. 2.2 Performance Optimization
  6. 3. Technical Foundation
  7. 3.1 Core Technologies
  8. 3.2 Model Selection Guide
  9. 5. Implementation Workflow (TDD)
  10. Step 1: Write Failing Test First
  11. Step 2: Implement Minimum to Pass
  12. Step 3: Refactor with Full Implementation
  13. Step 4: Run Full Verification
  14. 6. Performance Patterns
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going