fathom-core-workflow-b

Solid

Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
98
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Fathom Core Workflow: CRM Sync & Follow-Up ## Overview Automate post-meeting workflows: sync meeting notes to CRM opportunities, send follow-up emails with action items, and maintain a meeting history database. ## Instructions ### Meeting-to-CRM Sync ```python def sync_meeting_to_crm(meeting: dict, crm_client): summary = meeting.get("summary", "") action_items = meeting.get("action_items", []) participants = meeting.get("participants", []) # Find matching CRM contact/opportunity by participant email for email in participants: contact = crm_client.find_contact(email=email) if contact: crm_client.log_activity( contact_id=contact["id"], type="meeting", subject=meeting["title"], body=f"Summary: {summary}\n\nAction Items:\n" + "\n".join(f"- {a['text']}" for a in action_items), date=meeting["created_at"], ) ``` ### Automated Follow-Up Email ```python def generate_followup_email(meeting: dict) -> str: actions = meeting.get("action_items", []) action_list = "\n".join(f"- {a['text']}" for a in actions) return f"""Hi team, Thanks for the meeting: {meeting['title']} Summary: {meeting.get('summary', 'No summary available')} Action Items: {action_list if action_list else '- None recorded'} Best regards""" ``` ### Meeting History Database ```sql CREATE TABLE fathom_meetings ( id VARCHAR PRIMARY KEY,...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

fathom-core-workflow-a

Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-hello-world

Retrieve meeting transcripts and summaries from the Fathom API. Use when fetching meeting data, testing API access, or learning Fathom API response structure. Trigger with phrases like "fathom hello world", "fathom first api call", "get fathom transcript", "fathom meeting data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-webhooks-events

Configure Fathom webhooks for real-time meeting notifications. Use when setting up automated meeting processing, receiving real-time transcripts, or triggering workflows when meetings complete. Trigger with phrases like "fathom webhook", "fathom notifications", "fathom real-time", "fathom event handler".

2,266 Updated today
jeremylongshore
AI & Automation Solid

fathom-reference-architecture

Reference architecture for Fathom meeting intelligence integrations. Trigger with phrases like "fathom architecture", "fathom design", "fathom integration pattern".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-deploy-integration

Deploy Fathom webhook handlers and meeting sync services. Trigger with phrases like "deploy fathom", "fathom webhook server", "fathom cloud function".

2,266 Updated today
jeremylongshore