Voice Transcribe
SkillDocs & knowledgeTranscribe inbound voice notes and audio messages to text before the chat engine processes them, so the agent can answer spoken messages. Use when a chat channel delivers an audio/voice attachment, or when the user asks the bot to handle voice notes.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Voice Transcribe skill
What this skill tells your AI
The instructions your AI receives, as published by thesmokedev/taskchad-os in optional-skills/communication/voice-transcribe/SKILL.md and read by ahel’s review.
Convert a voice note into text so the normal chat pipeline can handle it. This runs as a pre-processing step on inbound audio, before routing.
Pipeline
- Receive — the channel adapter saves the audio attachment to a temp path.
- Transcribe — run speech-to-text (preference order):
- OpenAI Whisper API if
OPENAI_API_KEYis set (fast, no local deps):curl -s https://api.openai.com/v1/audio/transcriptions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -F model=whisper-1 -F file=@note.ogg - Local
faster-whisperif no key is configured and CPU/GPU allows.
- OpenAI Whisper API if
- Inject — replace the message body with the transcript, tag it
[voice], and hand it to the router as if the user had typed it. - Clean up — delete the temp audio file after transcription.
Notes
- WhatsApp/Telegram voice notes are usually
.ogg(Opus). Whisper accepts it directly;faster-whispermay needffmpeginstalled. - Keep the original duration in metadata so the agent can say "got your 0:42 voice note" when useful.
- Transcription is read-only — no capability gate needed. The reply still goes
out through the normal gated
chat.sendpath. - Never persist raw audio beyond the transcription step unless the user opts in.
Signals
- GitHub stars
- 23
- Forks
- 5
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
voice-transcribe- Source
- github.com/thesmokedev/taskchad-os