From voxclaw
Give your agent a voice. Send text to a Mac running VoxClaw and hear it spoken aloud with OpenAI neural voices or Apple TTS.
How this skill is triggered — by the user, by Claude, or both
Slash command
/voxclaw:voxclawThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants audible output from Codex or another agent.
Use this skill when the user wants audible output from Codex or another agent.
VoxClaw runs on macOS as a menu bar app and can speak text through:
voxclaw CLIvoxclaw://read?text=... URL scheme4140If the human provides a VoxClaw setup pointer, use the provided health_url and speak_url directly.
Connection order:
plugins/voxclaw/scripts/voxclaw-say --health when working in this repo.speak_url or health_url to the helper.http://localhost:4140/status.voxclaw CLI when needed.Never guess a .local hostname if the user already supplied a numeric LAN IP.
Default to the helper script instead of open-coded curl:
plugins/voxclaw/scripts/voxclaw-say "Hello from Codex"
plugins/voxclaw/scripts/voxclaw-say --health
plugins/voxclaw/scripts/voxclaw-say --url http://192.168.1.50:4140/read "Deployment complete"
plugins/voxclaw/scripts/voxclaw-say --voice nova --rate 1.2 "Build failed"
plugins/voxclaw/scripts/voxclaw-say --instructions "Read warmly" "Welcome back"
Health check:
curl -sS http://localhost:4140/status
Speak text:
curl -X POST http://localhost:4140/read \
-H 'Content-Type: application/json' \
-d '{"text":"Hello from Codex"}'
Optional fields:
voicerateinstructionsWhen VoxClaw is installed locally and the task is on the same Mac, the CLI is often the simplest path:
voxclaw "Hello from Codex"
Useful variants:
voxclaw --clipboard
voxclaw --file article.txt
voxclaw --voice nova "Build passed"
voxclaw --rate 1.3 "Build passed"
voxclaw --instructions "Read warmly" "Deployment complete"
voxclaw --send "Hello" # send to an already running listener
voxclaw --status
/status fails locally, tell the user VoxClaw is not running or the listener is disabled.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub malpern/codex-marketplace --plugin voxclaw