<< All versions
Skill v1.0.1
currentAutomated scan100/100daxaur/openpaw/c-voice
2 files
──Details
PublishedMay 30, 2026 at 10:37 PM
Content Hashsha256:82c9fb9f6fd162ca...
Git SHAa2562d1c5cb2
Bump Typepatch
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 60 lines · 1.6 KB
version: "1.0.1" name: c-voice description: Convert speech to text using sag (ElevenLabs STT) and synthesize speech using say (macOS built-in TTS). Enables voice input transcription and audio output. tags: [voice, speech, tts, stt, elevenlabs, say, sag, audio]
What This Skill Does
Enables Claude to transcribe spoken audio to text via sag (powered by ElevenLabs) and to speak text aloud using the macOS say command.
Available CLI Tools
sag — Speech-to-Text (ElevenLabs)
bash
# Transcribe an audio filesag transcribe --file recording.mp3# Record from microphone and transcribesag record --output transcript.txt# Transcribe with a specific language hintsag transcribe --file audio.wav --language en# Output transcript to stdoutsag transcribe --file audio.m4a --stdout
say — Text-to-Speech (macOS built-in)
bash
# Speak text aloudsay "Hello, how can I help you today?"# Use a specific voicesay -v Samantha "Your report is ready."# Save spoken audio to a filesay -o output.aiff "Text to synthesize"# List available voicessay -v ?# Control speaking rate (words per minute)say -r 180 "Speaking at a custom rate"
Usage Guidelines
- Use
sagto process audio files the user provides or to capture mic input - Use
sayto read back responses, summaries, or alerts aloud - Prefer
say -v Samanthaor-v Alexfor natural-sounding output on macOS
Notes
sagrequires a valid ElevenLabs API key configured in environmentsayis built into macOS — no installation needed- Supported audio input formats for
sag: MP3, WAV, M4A, FLAC