con un clic
transcribe
Transcribe audio/voice files using Groq Whisper API
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Transcribe audio/voice files using Groq Whisper API
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Register bot commands with Telegram so they appear in the command menu
Rebuild miniclaw and restart the background service
Interactive setup wizard for new miniclaw users who just forked the repo
Summarise recent conversations across all threads into auto memory (MEMORY.md + topic files)
Analyse chat history to update voice and typing style guide (voice.md in auto memory)
Create a semver release with changelog, git tag, and GitHub release
| name | transcribe |
| description | Transcribe audio/voice files using Groq Whisper API |
| allowed-tools | Bash(curl *) |
Transcribe a voice or audio file using the Groq Whisper API, then clean up the transcript into polished text.
Find the audio file path from the conversation context. It will be in a [File attached: ...] or [Replied-to message has file attached: ...] line. If no audio file is present, tell the user.
Run this curl command, replacing <FILE_PATH> with the actual file path:
curl -s https://api.groq.com/openai/v1/audio/transcriptions \
-H "Authorization: Bearer $GROQ_API_KEY" \
-F "file=@<FILE_PATH>" \
-F "model=whisper-large-v3-turbo" \
-F "response_format=json" \
-F "language=en"
The response is JSON: {"text": "transcribed content here"}.
If the request fails, check that $GROQ_API_KEY is set and the file exists. Report the error to the user.
Treat the transcribed text as if the user had typed it as a normal text message. Respond to it naturally.