meeting-minutes-processor
SKILL.md
Meeting Minutes Processor
Convert meeting audio → structured Markdown summary → (optional) Jira issues.
Workflow
Step 1: Transcribe Audio
If the user provides an audio file, run transcribe.py. It auto-detects the best available backend (local first):
# Auto-detect backend, Chinese language (default)
python3 scripts/transcribe.py <audio_file> --output transcript.txt
# Force a specific backend
python3 scripts/transcribe.py <audio_file> --backend faster-whisper --output transcript.txt
python3 scripts/transcribe.py <audio_file> --backend openai-whisper --output transcript.txt
python3 scripts/transcribe.py <audio_file> --backend openai-api --output transcript.txt