Install
$ agentstack add skill-phuaky-pai-skills-transcribe ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Transcribe - Audio to Markdown
Convert audio files to clean Markdown transcripts. Auto-selects best backend.
Usage
/transcribe
/transcribe --azure # Force Azure gpt-4o-mini-transcribe (best quality)
/transcribe --groq # Force Groq whisper-large-v3-turbo (fastest)
/transcribe --local # Force local whisper.cpp (free)
Auto-Selection Priority
- Azure — if
AZURE_OPENAI_KEY+AZURE_OPENAI_ENDPOINTset (gpt-4o-mini-transcribe, lowest WER) - Groq — if
GROQ_API_KEYset (216x realtime, cheapest API) - Local — whisper.cpp fallback (free, ~1x realtime)
Supported Formats
- M4A, WAV, MP3, FLAC, OGG, WEBM
Workflow
When invoked, run:
~/.claude/skills/Transcribe/Tools/Transcribe.sh "" [--groq|--azure|--local]
Output saved to same directory as source: {name}-transcript.md
Infrastructure
| Component | Path / Config | |-----------|---------------| | Transcribe.sh | ~/.claude/skills/Transcribe/Tools/Transcribe.sh | | Azure API | AZURE_OPENAI_KEY, AZURE_OPENAI_ENDPOINT, deployment: gpt-4o-mini-transcribe (default) with whisper fallback | | Groq API | GROQ_API_KEY env var, model: whisper-large-v3-turbo | | whisper-cli | ~/tools/whisper.cpp/build/bin/whisper-cli | | large-v3 model | ~/tools/whisper.cpp/models/ggml-large-v3.bin |
Cost Comparison
| Method | Cost | Speed | Quality | Best For | |--------|------|-------|---------|----------| | Azure (gpt-4o-mini-transcribe) | ~$0.30/hr | Fast | Best (lowest WER) | Default — best quality | | Groq (turbo) | $0.04/hr | 216x realtime | Good | Bulk/fast transcription | | Azure (whisper) | ~$0.36/hr | Fast | Good | Fallback | | Local (large-v3) | FREE | ~1x realtime | Good | Offline, full privacy | | Local (small.en) | FREE | ~3x faster | OK | Quick English drafts |
Override Deployment
Set AZURE_TRANSCRIBE_DEPLOYMENT env var to use a different Azure deployment (e.g., whisper for old behavior).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: phuaky
- Source: phuaky/pai-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.