c-voice
About
c-voice enables Claude to transcribe speech to text using ElevenLabs' STT via `sag` and synthesize speech using macOS's built-in TTS via `say`. It's ideal for adding voice input/output capabilities to Claude-powered applications. The skill supports audio file transcription, microphone recording, and customizable text-to-speech voices.
Quick Install
Claude Code
Recommendednpx skills add daxaur/openpaw -a claude-code/plugin add https://github.com/daxaur/openpawgit clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-voiceCopy and paste this command in Claude Code to install this skill
Documentation
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
GitHub Repository
Related Skills
executing-plans
DesignUse the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.
requesting-code-review
DesignThis skill dispatches a code-reviewer subagent to analyze code changes against requirements before proceeding. It should be used after completing tasks, implementing major features, or before merging to main. The review helps catch issues early by comparing the current implementation with the original plan.
connect-mcp-server
DesignThis skill provides a comprehensive guide for developers to connect MCP servers to Claude Code using HTTP, stdio, or SSE transports. It covers installation, configuration, authentication, and security for integrating external services like GitHub, Notion, and custom APIs. Use it when setting up MCP integrations, configuring external tools, or working with Claude's Model Context Protocol.
web-cli-teleport
DesignThis skill helps developers choose between Claude Code Web and CLI interfaces based on task analysis, then enables seamless session teleportation between these environments. It optimizes workflow by managing session state and context when switching between web, CLI, or mobile. Use it for complex projects requiring different tools at various stages.
