# Voice Recognition

> Voice Recognition Skill

- Skill: `aly-joseph/voice-recognition` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add aly-joseph/voice-recognition`
- Raw SKILL.md: https://api.skillmd.com/api/skills/aly-joseph/voice-recognition/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Aly-Joseph (https://skillmd.com/u/aly-joseph)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/aly-joseph/voice-recognition

---

# Voice Recognition Skill

## Overview
The Voice Recognition skill enables JARVIS to listen to and understand user voice commands using Speech Recognition technology.

## Slug
`voice-recognition`

## Features
- Real-time voice input capture
- Speech-to-text conversion
- Multi-language support
- Noise filtering and processing
- Command interpretation

## Implementation
- **Module**: `voice.py`
- **Primary Library**: `SpeechRecognition`
- **Audio Input**: `PyAudio`

## Configuration
```python
from voice import listen

# Listen for user voice input
command = listen()
print(f"You said: {command}")
```

## Voice Commands
- "Jarvis, listen"
- "Jarvis, repeat that"
- "What did you hear?"

## Performance
- Latency: < 1 second
- Accuracy: 85-95% (varies by language)
- Supported Languages: 8+ languages

## Dependencies
- SpeechRecognition
- PyAudio
- numpy

## Author
Aly-Joseph

## Version
1.0.0

## Last Updated
2026-01-31

