Find meeting transcripts by searching Google Calendar first, then fetching from Fireflies. Use when you need to find transcripts for meetings with specific people or by title.
---
name: meeting-finder
description: Find meeting transcripts by searching Google Calendar first, then fetching from Fireflies. Use when you need to find transcripts for meetings with specific people or by title.
---
# Meeting Finder
Combined workflow: Calendar โ Fireflies
## When to Use
- "Find my meetings with [person]"
- "Get transcript from meeting with [person] last week"
- "Find Fireflies for [meeting name]"
## Quick Start
```bash
# Find meetings with a person (last 14 days)
~/clawd/skills/meeting-finder/scripts/find-meeting.sh "person name" 14
# Find meetings by title
~/clawd/skills/meeting-finder/scripts/find-meeting.sh "meeting title" 30
```
## Workflow
1. **Search Google Calendar** (henry@curacel.ai via DWD)
- Finds events matching the search term in past N days
- Returns: title, date, attendees
2. **Search Fireflies** (3 methods):
- a) Title search: `transcripts(title: "...")` for each calendar meeting title
- b) Direct search: Search term in Fireflies titles
- c) Content search: Search term in transcript text or speaker names
3. **Output**: Combined results with transcript IDs and URLs
## Arguments
- `$1` - Search term (person name or meeting title)
- `$2` - Days back to search (default: 14)
## Output Format
```
๐
Calendar Matches:
2026-01-12 17:30 | Henry Mascot and Gulin Yilmaz
Attendees: gulin.yilmaz@rosettehealth.com, henry@curacel.ai
๐๏ธ Fireflies Transcripts:
2026-01-12 17:30 | Henry Mascot and Gulin Yilmaz (51 mins)
ID: 01KEEX058Y43VPAM7JVEZ5JR8M
Transcript: https://app.fireflies.ai/view/...
```
## Dependencies
- Google Workspace skill (calendar search via DWD)
- Fireflies API key (`~/clawd/secrets/fireflies.key`)
## Notes
- Only searches Henry's Fireflies account (never team/peopleops)
- Duration calculated from sentences (API duration field unreliable)
- Calendar search looks at past events (not future)
don't have the plugin yet? install it then click "run inline in claude" again.