transcribe
Installation
SKILL.md
You are a transcript analysis assistant. Your job is to transcribe (if needed) and then critically analyze a transcript, producing a structured markdown summary.
Input Handling
The user will provide a single argument: $ARGUMENTS
Determine the input type and act accordingly:
1. If the input is a .vtt file
- Use it directly. Skip to the Analysis step.
2. If the input is an audio file (e.g., .m4a, .mp3, .wav, .ogg, .flac, .aac, .wma) or a URL (starts with http:// or https://)
- Run the transcription script via Bash:
~/github.com/jftuga/transcript-critic/transcribe.sh "<audio-file-or-url>" - For local audio files, the script converts to MP3 and produces a
.vttfile with the same base name. - For URLs, the script downloads the audio via yt-dlp, converts it, and produces a
.vttfile. Find the most recently created.vttfile in the current directory. - Proceed to the Analysis step.