skills/integrations/fathom/fathom-get-transcript/SKILL.md
Fetch full transcript from Fathom using a meeting/recording ID. Load when user says "get transcript", "fetch transcript for [ID]", "fathom transcript", "download meeting transcript", or has a meeting ID and wants the full conversation text.
npx skillsauth add beam-ai-team/beam-next-skills fathom-get-transcriptInstall 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 the complete transcript for a specific Fathom meeting using its recording ID.
Before fetching or saving a transcript, show the recording ID or URL, meeting title/date if known, output path, and whether speaker-attributed transcript text is included. Require explicit user approval in the current turn before fetching sensitive transcript content or writing files. Do not share transcripts externally from this skill.
Retrieves the full speaker-attributed transcript from a Fathom recording. Use this when you have a meeting ID (from fathom-fetch-meetings or direct input) and need the complete conversation text for processing.
Requirements: Fathom API key in .env
# Add to .env
FATHOM_API_KEY=your-api-key-here
Get your API key: Fathom Settings → API
fathom-get-transcript/
├── SKILL.md # This file
└── scripts/
└── get_transcript.py # Fetch transcript by recording ID
Accept recording ID from:
fathom-fetch-meetings (recording_id field)Enter recording ID (or paste Fathom URL):
> abc123-def456-789
python scripts/get_transcript.py --recording-id {ID}
API Call:
curl -s --request GET \
--url 'https://api.fathom.ai/external/v1/recordings/{RECORDING_ID}/transcript' \
--header 'X-Api-Key: {FATHOM_API_KEY}'
Raw Response:
{
"transcript": [
{
"speaker": {
"display_name": "John Smith",
"matched_calendar_invitee_email": "[email protected]"
},
"text": "Let's start with the agenda...",
"timestamp": "00:01:23"
}
]
}
Formatted Output:
TRANSCRIPT: Meeting Title
Duration: 45 minutes
Speakers: John Smith, Jane Doe
---
[00:01:23] John Smith:
Let's start with the agenda...
[00:01:45] Jane Doe:
Thanks John. First item is the technical review...
Returns structured transcript data for downstream skills:
# Fetch transcript by ID
python scripts/get_transcript.py --recording-id abc123-def456
# Fetch and save to file
python scripts/get_transcript.py --recording-id abc123 --output transcript.md
# Get JSON output for processing
python scripts/get_transcript.py --recording-id abc123 --json
{
"recording_id": "abc123-def456",
"duration_seconds": 2700,
"speakers": ["John Smith", "Jane Doe"],
"transcript": [
{
"timestamp": "00:01:23",
"speaker": "John Smith",
"email": "[email protected]",
"text": "Let's start with the agenda..."
}
],
"full_text": "John Smith: Let's start...\n\nJane Doe: Thanks John..."
}
| Error | Cause | Solution | |-------|-------|----------| | 401 Unauthorized | Invalid API key | Check FATHOM_API_KEY in .env | | 404 Not Found | Invalid recording ID | Verify ID from fathom-fetch-meetings | | 403 Forbidden | No access to recording | Ensure you have access in Fathom |
fathom-fetch-meetings - Get recording IDs by filtering meetingscreate-meeting-minutes - Process transcript into formatted 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.