skills/integrations/fathom/fathom-fetch-meetings/SKILL.md
Fetch meeting recordings and transcripts from Fathom API filtered by attendee email domain. Load when user says "fetch meetings", "get fathom recordings", "fathom meetings for [domain]", "list meetings from fathom", "get transcripts", or mentions Fathom.
npx skillsauth add beam-ai-team/beam-next-skills fathom-fetch-meetingsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch and filter meeting recordings from Fathom API by client domain.
Before fetching Fathom meetings or transcripts, show the attendee/domain/date filter, include-summary/include-action-items/include-transcript flags, result limit, output path when used, and sensitive meeting data included. Require explicit user approval in the current turn before fetching transcript content or writing files. Listing metadata for a confirmed domain/date scope does not require additional approval.
Query Fathom to retrieve meetings filtered by attendee email domain. Returns meeting summaries, action items, and optionally full transcripts. Use this as the entry point for meeting processing workflows.
Requirements: Fathom API key in .env
# Add to .env
FATHOM_API_KEY=your-api-key-here
Get your API key: Fathom Settings → API
API Endpoint: https://api.fathom.ai/external/v1
Auth Header: X-Api-Key: {FATHOM_API_KEY}
Known Client Domains: | Client | Domain | |--------|--------| | Smartly | smartly.io | | Rivertrace | rivertrace.com | | Moverii | moverii.de | | Doula Givers | doulagivers.com |
Map client name to domain or ask user:
"Smartly" → smartly.io
"Rivertrace" → rivertrace.com
curl -s --request GET \
--url 'https://api.fathom.ai/external/v1/meetings?calendar_invitees_domains[]={DOMAIN}&include_summary=true&include_action_items=true' \
--header 'X-Api-Key: {FATHOM_API_KEY}'
Query Parameters:
| Parameter | Description |
|-----------|-------------|
| calendar_invitees_domains[] | Filter by attendee email domain |
| include_summary | Include AI-generated summary |
| include_transcript | Include full transcript |
| include_action_items | Include extracted action items |
| created_after | ISO 8601 date filter (e.g., 2025-01-01) |
| created_before | ISO 8601 date filter |
Found 3 meetings for smartly.io:
1. Weekly Sync - Dec 20, 2025
Summary: Discussed pipeline progress...
Recording ID: abc123-def456
2. Technical Review - Dec 18, 2025
Summary: Reviewed architecture decisions...
Recording ID: ghi789-jkl012
Select meeting to get full transcript (or 'skip'):
For a specific meeting:
curl -s --request GET \
--url 'https://api.fathom.ai/external/v1/recordings/{RECORDING_ID}/transcript' \
--header 'X-Api-Key: {FATHOM_API_KEY}'
Transcript Response:
{
"transcript": [
{
"speaker": {"display_name": "Name", "matched_calendar_invitee_email": "email"},
"text": "What they said",
"timestamp": "HH:MM:SS"
}
]
}
Returns meeting data including:
| Error | Cause | Solution | |-------|-------|----------| | 401 Unauthorized | Invalid API key | Check FATHOM_API_KEY in .env | | No meetings found | Wrong domain or date range | Verify domain, adjust date filters | | 403 Forbidden | API access disabled | Contact Fathom support |
fathom-get-transcript - Fetch transcript by recording IDcreate-meeting-minutes - Format transcript into minutesprocess-client-meeting - Full meeting workflowVersion: 1.0 Integration: Fathom API Owner: Hassaan Ahmed
tools
Build a Palantir-shape, PDF-native use-case proposal document for a sophisticated enterprise account: research-grounded use cases (each with description, challenge, impact, value), an operating-graph ontology page, a recommended PoC with a week-by-week plan, and a closing page that asks for one decision. Load when a client asks us to 'propose high-impact use cases', requests a use-case presentation/catalog for a function (finance, HR, ops), or when a technical evaluation team will review candidates to pick a PoC. NOT for single-account cold outreach (use prospect-brief), full process diagnostics (use operating-diagnostic), or priced proposals (use proposal-creation).
development
Convert Beam Figma slide designs into high-fidelity, editable HTML presentation decks. Use when Codex is asked to audit Figma slides, extract slide templates, rebuild Beam slides as HTML decks, decide whether Figma imagery should be exported or rebuilt in HTML/CSS, create Beam/Prism-compatible deck templates, or improve fidelity of existing Beam HTML slide rebuilds.
development
Use the Beam AI reusable slide library: individual HTML slide templates extracted from Beam Figma rebuilds, kept separate from deck themes and full deck templates. Load when the user asks for a slide library, specific Beam slide patterns, reusable Figma-inspired slides, Prism slide-library items, or slide-level HTML templates.
development
Use Beam AI deck and report design packs, HTML templates, and curated examples to create sales decks, customer intro decks, RPO decks, and DIN A4 use-case proposal reports. Load when the user asks for Beam-branded presentation templates, Prism-compatible deck templates, Beam report templates, customer intro decks, commercial proposals, or reusable HTML deck/report examples.