Intelligent meeting recording and transcription assistant with automated minutes generation, action item extraction, and sentiment analysis. Supports audio transcription, speaker diarization, meeting summarization, and task extraction. Use when users need to record meetings, transcribe audio, generate meeting minutes, extract action items, or analyze meeting content.
76
93%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
An intelligent meeting assistant that records, transcribes, and analyzes meetings to generate actionable insights.
from scripts.meeting_recorder import MeetingRecorder
# Initialize recorder
recorder = MeetingRecorder()
# Start recording
recorder.start_recording("/tmp/meeting_audio.wav")
# Stop and transcribe
transcript = recorder.stop_and_transcribe()
print(f"Transcript: {transcript['text']}")from scripts.meeting_minutes import generate_minutes
# Generate structured minutes
minutes = generate_minutes(transcript_path="/tmp/transcript.json")
print(f"Summary: {minutes['summary']}")
print(f"Action Items: {minutes['action_items']}")from scripts.action_extractor import extract_actions
# Extract tasks from transcript
actions = extract_actions("/tmp/transcript.txt")
for action in actions:
print(f"- {action['task']} (Assigned: {action['assignee']})")c88d7d1
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.