Loading...
Loading...
Fetch meetings, transcripts, summaries, and action items from Fathom API. Use when user asks to get Fathom recordings, sync meeting transcripts, or fetch recent calls.
npx skill4agent add glebis/claude-skills fathompython3 ~/.claude/skills/fathom/scripts/fetch.py [options]| Command | Description |
|---|---|
| List recent meetings with IDs |
| Fetch specific meeting by recording ID |
| Fetch all meetings from today |
| Fetch meetings since date (YYYY-MM-DD) |
| Option | Description |
|---|---|
| Run transcript-analyzer on fetched meetings |
| Download video recording (requires ffmpeg) |
| Output directory (default: ~/Brains/brain) |
| Max meetings to list (default: 10) |
python3 ~/.claude/skills/fathom/scripts/fetch.py --listpython3 ~/.claude/skills/fathom/scripts/fetch.py --todaypython3 ~/.claude/skills/fathom/scripts/fetch.py --today --analyzepython3 ~/.claude/skills/fathom/scripts/fetch.py --since 2025-01-01python3 ~/.claude/skills/fathom/scripts/fetch.py --id abc123def456python3 ~/.claude/skills/fathom/scripts/fetch.py --id abc123def456 --download-video---
fathom_id: <id>
title: "Meeting Title"
date: YYYY-MM-DD
participants: [list]
duration: HH:MM
fathom_url: <url>
share_url: <url>
---
# Meeting Title
## Summary
{AI-generated summary from Fathom}
## Action Items
- [ ] Item 1 (@assignee)
- [ ] Item 2
## Transcript
**Speaker Name**: What they said...YYYYMMDD-meeting-title-slug.md20250106-weekly-standup.mdpip install requests python-dotenv# ffmpeg required for video downloads
brew install ffmpeg # macOS
# or apt install ffmpeg (Linux)~/.claude/skills/fathom/scripts/.envFATHOM_API_KEY=your-api-key--analyze--download-video