
Live Transcribe Read
- 11 installs
- 44 repo stars
- Updated July 8, 2026
- aviz85/claude-skills-library
Live Transcribe Read is a Claude skill that reads the most recent live-transcribe session's transcript from the realtime log file.
About
Live Transcribe Read reads the latest real-time transcription captured by the live-transcribe skill. It pulls committed text from the realtime log file, strips metadata, and reports whether the session is still recording or finished. The retrieved text can then be summarized, translated, or turned into action items on request.
- Reads the most recent live-transcribe session's text from the realtime log file
- Extracts committed spoken text and reports whether the session is still active or finished
- Lets the user then summarize, translate, or extract action items from the transcript
Live Transcribe Read by the numbers
- 11 all-time installs (skills.sh)
- Ranked #1,471 of 2,719 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
live-transcribe-read capabilities & compatibility
- Capabilities
- transcription · transcript retrieval
- Use cases
- transcription · translation
- Pricing
- Free
What live-transcribe-read says it does
Read the most recent transcription file from a live-transcribe session.
The real-time transcript lives in the **log file**, not the .txt file.
The text is available in the main context after reading — proceed with whatever the user asks
npx skills add https://github.com/aviz85/claude-skills-library --skill live-transcribe-readAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 11 |
|---|---|
| repo stars | ★ 44 |
| Last updated | July 8, 2026 |
| Repository | aviz85/claude-skills-library ↗ |
What it does
Reading back the latest live-transcribe transcript from the realtime log and reporting whether it is still active.
Who is it for?
Retrieving and showing the latest live-transcribe transcript text.
Skip if: Starting or stopping a transcription session.
When should I use this skill?
When the user asks to see, read, summarize, or translate a transcription captured via live-transcribe.
What you get
The committed transcript text, plus whether the session is still updating or complete.
- the cleaned transcript text
- session active/finished status
Files
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
if test -f /tmp/realtime-transcribe.pid && kill -0 $(cat /tmp/realtime-transcribe.pid) 2>/dev/null; then
echo "ACTIVE — file is still being updated"
else
echo "FINISHED — file is complete"
fiRead the file
Use grep to extract committed text from the log, stripping [committed] prefixes. Skip the first JSON status line and [session started] markers.
What to tell the user
1. The transcription text 2. Whether it's still being updated or finished 3. If still active: they can check again later for more content 4. If no files found: tell them no transcription has been recorded yet
Working with the transcription
The user may ask to do things with the text beyond just reading it:
- Summarize, translate, extract action items, format, etc.
- The text is available in the main context after reading — proceed with whatever the user asks