Fetch meetings, transcripts, summaries, and action items from the Fathom API. Use when a user asks to retrieve Fathom recordings, sync meeting transcripts, or fetch recent calls.
Fetches meeting data directly from Fathom API including transcripts, AI summaries, action items, and participant info.
python3 ~/.claude/skills/fathom/scripts/fetch.py [options]
| Command | Description |
|---------|-------------|
| --list | List recent meetings with IDs |
| --id <id> | Fetch specific meeting by recording ID |
| --today | Fetch all meetings from today |
| --since <date> | Fetch meetings since date (YYYY-MM-DD) |
| Option | Description |
|--------|-------------|
| --analyze | Run transcript-analyzer on fetched meetings |
| --download-video | Download video recording (requires ffmpeg) |
| --output <path> | Output directory (default: ~/Brains/brain) |
| --limit <n> | Max meetings to list (default: 10) |
python3 ~/.claude/skills/fathom/scripts/fetch.py --list
python3 ~/.claude/skills/fathom/scripts/fetch.py --today
python3 ~/.claude/skills/fathom/scripts/fetch.py --today --analyze
python3 ~/.claude/skills/fathom/scripts/fetch.py --since 2025-01-01
python3 ~/.claude/skills/fathom/scripts/fetch.py --id abc123def456
python3 ~/.claude/skills/fathom/scripts/fetch.py --id abc123def456 --download-video
Each meeting is saved as markdown with:
---
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...
Files are saved as: YYYYMMDD-meeting-title-slug.md
Example: 20250106-weekly-standup.md
Install dependencies (first time):
pip install requests python-dotenv
For video download (optional):
# ffmpeg required for video downloads
brew install ffmpeg # macOS
# or apt install ffmpeg (Linux)
API key stored in ~/.claude/skills/fathom/scripts/.env:
FATHOM_API_KEY=your-api-key
--analyze flag to automatically process transcripts--download-video flag to download meeting recordings
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity