Agent skill
c-voice
Convert speech to text using `sag` (ElevenLabs STT) and synthesize speech using `say` (macOS built-in TTS). Enables voice input transcription and audio output.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-voice
SKILL.md
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)
# Transcribe an audio file
sag transcribe --file recording.mp3
# Record from microphone and transcribe
sag record --output transcript.txt
# Transcribe with a specific language hint
sag transcribe --file audio.wav --language en
# Output transcript to stdout
sag transcribe --file audio.m4a --stdout
say — Text-to-Speech (macOS built-in)
# Speak text aloud
say "Hello, how can I help you today?"
# Use a specific voice
say -v Samantha "Your report is ready."
# Save spoken audio to a file
say -o output.aiff "Text to synthesize"
# List available voices
say -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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?