Skip to main content

live-transcribe-read

Read the latest real-time transcription. Use when user asks to see, read, or show a transcription that was captured via live-transcribe. Triggers on: 'ืชืงืจื™ื ืชืžืœื•ืœ', 'ืžื” ืชืžืœืœืชื™', 'ื”ืชืžืœื•ืœ ื”ืื—ืจื•ืŸ', 'show transcription', 'what did I say', 'read the transcript', 'ืžื” ื ื›ืชื‘ ื‘ืชืžืœื•ืœ', 'ืชืจืื” ืœื™ ืืช ื”ืชืžืœื•ืœ'. Also use when user references transcription content without being explicit โ€” e.g. 'summarize what I said', 'translate the transcription'.

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-read
description
Read the latest real-time transcription. Use when user asks to see, read, or show a transcription that was captured via live-transcribe. Triggers on: 'ืชืงืจื™ื ืชืžืœื•ืœ', 'ืžื” ืชืžืœืœืชื™', 'ื”ืชืžืœื•ืœ ื”ืื—ืจื•ืŸ', 'show transcription', 'what did I say', 'read the transcript', 'ืžื” ื ื›ืชื‘ ื‘ืชืžืœื•ืœ', 'ืชืจืื” ืœื™ ืืช ื”ืชืžืœื•ืœ'. Also use when user references transcription content without being explicit โ€” e.g. 'summarize what I said', 'translate the transcription'.
# 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. ```bash # 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 ```bash 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" fi ``` ## Read 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
View on GitHub