live-transcribe-read

Installation
SKILL.md

Live Transcribe — Read

Read the most recent transcription file from a live-transcribe session.

Finding the latest transcription

The real-time transcript lives in the log file, not the .txt file. The log updates continuously during recording.

# Primary source — real-time log (updates live during recording)
cat /tmp/realtime-transcribe.log 2>/dev/null

# Extract only the spoken text (strip metadata lines)
grep '^\[committed\]' /tmp/realtime-transcribe.log 2>/dev/null | sed 's/^\[committed\] //'

The .txt file (/tmp/transcribe-*.txt) may contain a final dump but does NOT update in real-time. Always prefer the log file.

Check if transcription is still active

Installs
5
GitHub Stars
44
First Seen
13 days ago
live-transcribe-read — aviz85/claude-skills-library