Handles voice-to-voice conversations on WhatsApp. Automatically transcribes incoming audio and responds with local TTS audio. Use when the user wants to \"talk\" instead of type.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill whatsapp-voice-to-voice-chat --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Whatsapp Voice To Voice Chat?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-whatsapp-voice-to-voice-chat)More formats (shields.io, HTML) on the badges page.
---
name: whatsapp-voice-to-voice-chat
description: "Handles voice-to-voice conversations on WhatsApp. Automatically transcribes incoming audio and responds with local TTS audio. Use when the user wants to \"talk\" instead of type."
category: "Media"
author: community
version: "1.0.0"
icon: image
---
# Walkie-Talkie Mode
This skill automates the voice-to-voice loop on WhatsApp using local transcription and local TTS.
## Workflow
1. **Incoming Audio**: When a user sends an audio/ogg/opus file:
- Use `tools/transcribe_voice.sh` to get the text.
- Process the text as a normal user prompt.
2. **Outgoing Response**:
- Instead of a text reply, generate speech using `bin/sherpa-onnx-tts`.
- Send the resulting `.ogg` file back to the user as a voice note.
## Triggers
- User sends an audio message.
- User says "activa modo walkie-talkie" or "hablemos por voz".
## Constraints
- Use local tools only (ffmpeg, whisper-cpp, sherpa-onnx-tts).
- Maintain a fast response time (RTF < 0.5).
- Always reply with BOTH text (for clarity) and audio.
## Manual Execution (Internal)
To respond with voice manually:
```bash
bin/sherpa-onnx-tts /tmp/reply.ogg "Tu mensaje aquí"
```
Then send `/tmp/reply.ogg` via `message` tool with `filePath`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!