Skip to main content

live-transcribe

Start real-time microphone transcription using ElevenLabs Scribe v2 Realtime. Use when user wants to start live transcription, dictation, or real-time speech capture. Triggers on: 'ืชืชื—ื™ืœ ืชืžืœื•ืœ', 'ืชืžืœืœ ื‘ื–ืžืŸ ืืžืช', 'start transcribing', 'live transcribe', 'ื”ืงืœื˜ ืžื” ืฉืื ื™ ืื•ืžืจ'. After starting, tell user they can say 'ืื•ืงื™ ื–ื” ืžืกืคื™ืง ื‘ื•ื ื ืขืฆื•ืจ ืืช ื”ืชืžืœื•ืœ' to stop, or use /live-transcribe-stop.

Jump to install

Source facts

Repository
aviz85/claude-skills-library
Last source activity
May 26, 2026 at 15:03
Detected SKILL.md language
English
Stars
49
Forks
14

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions ยท Read-only preview
name
live-transcribe
description
Start real-time microphone transcription using ElevenLabs Scribe v2 Realtime. Use when user wants to start live transcription, dictation, or real-time speech capture. Triggers on: 'ืชืชื—ื™ืœ ืชืžืœื•ืœ', 'ืชืžืœืœ ื‘ื–ืžืŸ ืืžืช', 'start transcribing', 'live transcribe', 'ื”ืงืœื˜ ืžื” ืฉืื ื™ ืื•ืžืจ'. After starting, tell user they can say 'ืื•ืงื™ ื–ื” ืžืกืคื™ืง ื‘ื•ื ื ืขืฆื•ืจ ืืช ื”ืชืžืœื•ืœ' to stop, or use /live-transcribe-stop.
# Live Transcribe โ€” Start Start real-time microphone transcription. The script captures audio, streams to ElevenLabs Scribe v2 Realtime via WebSocket, and writes committed text to a temp file continuously. ## Start command ```bash source ~/.claude/skills/transcribe/scripts/.env && \ ELEVENLABS_API_KEY="$ELEVENLABS_API_KEY" \ nohup python3 ~/.claude/scripts/realtime-transcribe.py > /tmp/realtime-transcribe.log 2>&1 & ``` Wait ~4 seconds, then read the first line of `/tmp/realtime-transcribe.log` for the startup JSON: ```json {"status": "started", "pid": 12345, "output_file": "/tmp/transcribe-20260526-143022.txt", ...} ``` ## Before starting Check if one is already running: ```bash test -f /tmp/realtime-transcribe.pid && kill -0 $(cat /tmp/realtime-transcribe.pid) 2>/dev/null && echo "ALREADY RUNNING" ``` If already running, tell the user and offer to stop first. ## What to tell the user 1. Transcription is running 2. The output file path 3. Ways to stop: say "ืื•ืงื™, ื–ื” ืžืกืคื™ืง, ื‘ื•ื ื ืขืฆื•ืจ ืืช ื”ืชืžืœื•ืœ", or ask the agent to stop, or `/live-transcribe-stop` 4. They can ask to read the transcript anytime ## Audio cues Pre-recorded sounds play automatically: - **Start:** "ื”ืชื—ืœืชื™ ืชืžืœื•ืœ!" (before recording begins) - **Stop:** "ืกื™ื™ืžืชื™ ืืช ื”ืชืžืœื•ืœ." (after recording ends) - **Reminder:** "ืื ื™ ืขื“ื™ื™ืŸ ืžืชืžืœืœ." (every 30 minutes)
View on GitHub