一键导入
transcribe
Convert audio files (M4A, WAV, MP3) to Markdown transcripts. USE WHEN transcribe, audio to text, meeting recording, voice memo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert audio files (M4A, WAV, MP3) to Markdown transcripts. USE WHEN transcribe, audio to text, meeting recording, voice memo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," or "hypothesis." For tracking implementation, see AnalyticsTracking. USE WHEN ab test, split test, experiment setup, A/B test, multivariate.
When the user wants to set up, improve, or audit analytics tracking and measurement. Also use when the user mentions "set up tracking," "GA4," "Google Analytics," "conversion tracking," "event tracking," "UTM parameters," "tag manager," "GTM," "analytics implementation," or "tracking plan." For A/B test measurement, see AbTestSetup. USE WHEN analytics, tracking, GA4, measurement, Google Analytics.
Structure raw ideas into articulate outlines using Dan Koe's frameworks. USE WHEN articulate, structure ideas, outline talk, outline article, think through piece, brainstorm structure, how should I say this, organize my thoughts, structure this post, help me outline.
Balaji Srinivasan slide design system. USE WHEN balaji slides, balaji style, evidence slides, balaji presentation, split layout slides, create balaji deck, artifact-driven slides.
When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' or 'competitive landing pages.' USE WHEN competitor, alternatives page, vs page, comparison.
When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' or 'copy sweep.' USE WHEN edit copy, proofread, copy review, grammar check.
| name | Transcribe |
| description | Convert audio files (M4A, WAV, MP3) to Markdown transcripts. USE WHEN transcribe, audio to text, meeting recording, voice memo. |
Convert audio files to clean Markdown transcripts. Auto-selects best backend.
/transcribe <audio-file>
/transcribe <audio-file> --azure # Force Azure gpt-4o-mini-transcribe (best quality)
/transcribe <audio-file> --groq # Force Groq whisper-large-v3-turbo (fastest)
/transcribe <audio-file> --local # Force local whisper.cpp (free)
AZURE_OPENAI_KEY + AZURE_OPENAI_ENDPOINT set (gpt-4o-mini-transcribe, lowest WER)GROQ_API_KEY set (216x realtime, cheapest API)When invoked, run:
~/.claude/skills/Transcribe/Tools/Transcribe.sh "<audio-file>" [--groq|--azure|--local]
Output saved to same directory as source: {name}-transcript.md
| 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 |
| 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 |
Set AZURE_TRANSCRIBE_DEPLOYMENT env var to use a different Azure deployment (e.g., whisper for old behavior).