con un clic
groq-stt
Transcribe audio files using Groq API (Whisper).
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 files using Groq API (Whisper).
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.
ABCd context protocol across ABC root files (AGENTS.md, BACKLOG.md, CHANGELOG.md), human entrypoint README.md files tree, and /docs. Use after meaningful project changes, backlog drift, documentation refactors, self-evolving context maintenance, or a forced context reconciliation pass.
Build, refactor, review, or debug Svelte 5 components that use Bits UI primitives. Use when working with bits-ui dialogs, popovers, dropdowns, comboboxes, selects, tabs, date/time controls, menus, tooltips, portals, render delegation, or Bits UI type helpers.
Collaborative idea-to-design and inquiry protocol. Use for product/architecture exploration, research-style question shaping, feature design, standards, specs, UX concepts, module boundaries, and non-trivial behavior changes when uncertainty matters.
Pragmatic senior-engineer operating contract for coding agents. Use for coding, implementation, refactoring, debugging, code review, tests, validation, repository maintenance, file edits, or technical investigation.
Horizontal Gene Transfer protocol for skills. Synchronizes best practices and architectural patterns across the skill library.
Manage a guarded release flow that commits prepared release work on dev, opens a dev-to-main pull request with a release-focused PR summary, waits for checks, merges on success, tags, and optionally publishes an existing npm package. Use when the user asks to prepare or execute a dev→main release PR, hotfix release PR, or Dev2Main PR Summary workflow.
| name | groq-stt |
| description | Transcribe audio files using Groq API (Whisper). |
| metadata | {"version":"1.0.18"} |
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}.