Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:2
forks:0
updated:May 6, 2026 at 14:06
File Explorer
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | groq-stt |
| description | Transcribe audio files using Groq API (Whisper). |
| metadata | {"version":"1.0.9"} |
Standalone direct Node.js client for Groq's Whisper transcription API. The canonical client is scripts/transcribe.mjs; scripts/transcribe.sh is the shell entrypoint wrapper. There are no curl fallbacks or JSON parser dependencies.
GROQ_API_KEY=xxx ./scripts/transcribe.sh audio.ogg [language] [model]
GROQ_API_KEY=xxx ./scripts/transcribe.sh --file audio.ogg --lang ru --model whisper-large-v3-turbo
language — optional language code; omitted means provider auto-detection.model — optional; default: whisper-large-v3-turbo.GROQ_API_KEY is missing.--file, -f — audio file path.--lang, --language, -l — optional language code.--model, -m — Groq transcription model.--help, -h — usage.fetch, FormData, and Blob.whisper-large-v3-turbo.response_format=text so stdout stays clean for attachment handlers.transcribe_groq: transcribe.sh {file} {lang} {model}.