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'.

설치로 이동

소스 정보

저장소
aviz85/claude-skills-library
최근 소스 활동
2026년 5월 26일 15:03
감지된 SKILL.md 언어
영어
스타
49
포크
14

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
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
GitHub에서 보기