Skills › Operations › Meeting Notes & Action Items
Meeting Notes & Action Items
Turn a meeting recording URL into structured notes with decisions, action items, and owners.
Superpowers: handler_audio · handler_generate
When to use: You have a meeting recording (any audio URL) and need structured notes fast.
Steps
Transcribe the recording
Superpower: handler_audio
POST /v2/superpowers/handler_audio
{
"task": "transcribe",
"audio_url": "https://example.com/meeting-recording.mp3"
}
Accepts mp3, wav, m4a, ogg, webm. Returns full transcript with speaker detection if available.
Detect key topics and moments
Superpower: handler_audio
POST /v2/superpowers/handler_audio
{
"task": "topics",
"audio_url": "https://example.com/meeting-recording.mp3"
}
Identifies when topics change — useful for structuring notes from long meetings.
Extract structured notes and action items
Superpower: handler_generate
POST /v2/superpowers/handler_generate
{
"task": "chat",
"prompt": "Extract from this meeting transcript:
1. Key decisions made (bullet list)
2. Action items ([Owner] will [task] by [date if mentioned])
3. Open questions / unresolved items
4. One-sentence summary
Transcript: [transcript from step 1]"
}
From previous step: result.transcript from step 1 → inject into prompt.
Outcome: Structured meeting notes: summary, key decisions, action items with owners, open questions.
Fetch this skill via API
GET /v2/skills/meeting-notes
Authorization: Bearer sk-hndlr-...