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.