Agent skill
int-fathom
Search, retrieve, and summarize Fathom meeting recordings — transcripts, summaries, action items, and team info. Use this skill whenever the user mentions meetings, calls, recordings, meeting notes, transcripts, action items, follow-ups from calls, or anything related to Fathom. Also trigger on "o que foi discutido na reuniao", "resumo da call", "quem participou", "proximos passos da reuniao", "meeting recap", or any reference to past conversations/calls that might be recorded.
Install this agent skill to your Project
npx add-skill https://github.com/EvolutionAPI/evo-nexus/tree/main/.claude/skills/int-fathom
Metadata
Additional technical details for this skill
- clawdis
-
{ "emoji": "\ud83c\udf99\ufe0f", "requires": { "config": [ "skills.entries.fathom.apiKey" ] } }
SKILL.md
Fathom
Retrieve meeting recordings, transcripts, summaries, and action items from Fathom.
Setup
The skill needs a Fathom API key configured in openclaw.json under skills.entries.fathom:
{
"skills": {
"entries": {
"fathom": {
"apiKey": "your-fathom-api-key",
"env": {
"FATHOM_API_KEY": "your-fathom-api-key"
}
}
}
}
}
The API key is available at https://fathom.video/settings/api (requires Fathom Team or Enterprise plan).
Quick Commands
# List recent meetings
{baseDir}/scripts/fathom.sh meetings
# List meetings with summaries included
{baseDir}/scripts/fathom.sh meetings --include-summary
# List meetings with action items
{baseDir}/scripts/fathom.sh meetings --include-actions
# List meetings with full transcript
{baseDir}/scripts/fathom.sh meetings --include-transcript
# Filter by date range
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01" --before "2026-03-11"
# Filter by participant domain (e.g. external meetings only)
{baseDir}/scripts/fathom.sh meetings --domains-type one_or_more_external
# Filter by recorder email
{baseDir}/scripts/fathom.sh meetings --recorded-by "alice@company.com"
# Filter by team
{baseDir}/scripts/fathom.sh meetings --team "Engineering"
# Get summary for a specific recording
{baseDir}/scripts/fathom.sh summary <recording_id>
# Get transcript for a specific recording
{baseDir}/scripts/fathom.sh transcript <recording_id>
# List teams
{baseDir}/scripts/fathom.sh teams
# List team members (optionally filter by team)
{baseDir}/scripts/fathom.sh members [--team "TeamName"]
Common Workflows
Morning meeting recap
# Get yesterday's meetings with summaries and action items
{baseDir}/scripts/fathom.sh meetings --after "$(date -d 'yesterday' +%Y-%m-%d)" --include-summary --include-actions
Prepare for a follow-up
# Find meetings with a specific company/domain
{baseDir}/scripts/fathom.sh meetings --domains "acme.com" --include-summary --include-actions
Review full conversation
# First find the meeting
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01"
# Then get the full transcript
{baseDir}/scripts/fathom.sh transcript 123456789
Weekly team digest
# All meetings from the past week with summaries
{baseDir}/scripts/fathom.sh meetings --after "$(date -d '7 days ago' +%Y-%m-%d)" --include-summary --include-actions
Presenting Results
When presenting meeting data to the user, follow these guidelines:
- Summaries: Show the markdown-formatted summary directly. It's already well-structured.
- Action items: Present as a checklist with assignee, description, and link to the recording timestamp.
- Transcripts: Don't dump the full transcript unless asked. Instead, summarize key points or search for specific topics the user asked about.
- Meeting list: Show title, date, participants, and recording link. Keep it scannable.
- Links: Always include the Fathom recording URL so the user can watch the replay.
Response Format
The API returns JSON. Key fields per meeting:
title/meeting_title— meeting namerecording_id— unique ID (used to fetch summary/transcript)url— direct link to recording in Fathomshare_url— shareable linkcreated_at,scheduled_start_time,recording_start_time— timestampscalendar_invitees— list of participants with name, email, and whether externalrecorded_by— who recorded the meetingdefault_summary.markdown_formatted— the AI-generated summary (wheninclude_summary=true)action_items— list with description, assignee, completion status, and recording timestamp linktranscript— array of{speaker, text, timestamp}entries
Pagination
The meetings endpoint uses cursor-based pagination. The script handles this automatically when you pass --all to fetch every page. Without --all, it returns the first page only (default limit from API).
Notes
- Base URL:
https://api.fathom.ai/external/v1 - Auth:
X-Api-Keyheader - Rate limited (429 responses) — the script retries with backoff
- Transcript inclusion in list endpoint may be restricted for OAuth apps; use the dedicated
/recordings/{id}/transcriptendpoint instead - Dates should be ISO 8601 format (e.g.
2026-03-11T00:00:00Zor just2026-03-11)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
data-create-viz
Cria visualizações de dados de qualidade profissional com Python no tema Evolution (fundo escuro, acento
cs-customer-escalation
Empacota uma escalação para Devs, Produto ou Davidson com contexto completo. Use quando um bug precisa de atenção além do suporte normal, vários clientes reportam o mesmo problema, um cliente está ameaçando cancelar, ou um problema ficou sem resolução além do SLA. / Package an escalation for engineering, product, or leadership with full context. Use when a bug needs engineering attention beyond normal support, multiple customers report the same issue, a customer is threatening to churn, or an issue has sat unresolved past its SLA.
mkt-draft-content
Draft blog posts, social media, email newsletters, landing pages, press releases, and case studies with channel-specific formatting and SEO recommendations. Use when writing any marketing content, when you need headline or subject line options, or when adapting a message for a specific platform, audience, and brand voice.
gog-tasks
Create, manage, and prioritize tasks and todo items. Convert emails to tasks, set priorities (P0-P3) and categories (Work/Personal/Errands/Admin), review daily priorities, track blocked and overdue tasks. Use when user mentions tasks, todos, action items, or wants to convert emails to tasks. Requires confirmation before creating or deleting tasks.
discord-get-messages
Retrieve messages from Discord channels via the Discord API. Use this skill when the user wants to read, search, or analyze messages from a Discord channel.
cs-customer-research
Pesquisa multi-fonte sobre pergunta ou tópico de cliente com atribuição de fontes. Use quando um cliente pergunta algo que precisa ser verificado, investigando se um bug foi reportado antes, verificando o que foi dito anteriormente a uma conta específica, ou coletando contexto antes de redigir uma resposta. / Multi-source research on a customer question or topic with source attribution. Use when a customer asks something you need to look up, investigating whether a bug has been reported before, checking what was previously told to a specific account, or gathering background before drafting a response.
Didn't find tool you were looking for?