fathom-core-workflow-a

Featured

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".

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

Install

View on GitHub

Quality Score: 99/100

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

Skill Content

# Fathom Core Workflow: Meeting Analytics ## Overview Build automated meeting analytics: extract action items, sync to project management tools, analyze meeting patterns, and create follow-up workflows. ## Instructions ### Step 1: Batch Meeting Export ```python from fathom_client import FathomClient from datetime import datetime, timedelta client = FathomClient() # Get all meetings from last 7 days week_ago = (datetime.utcnow() - timedelta(days=7)).isoformat() + "Z" meetings = client.list_meetings( limit=50, created_after=week_ago, include_summary="true", ) for meeting in meetings: print(f"Meeting: {meeting['title']}") print(f" Date: {meeting['created_at']}") print(f" Summary: {meeting.get('summary', 'N/A')[:100]}...") for item in meeting.get("action_items", []): print(f" Action: {item['text']} -> {item.get('assignee', 'unassigned')}") print() ``` ### Step 2: Action Item Extraction Pipeline ```python def extract_action_items(meetings: list[dict]) -> list[dict]: items = [] for meeting in meetings: for action in meeting.get("action_items", []): items.append({ "meeting_title": meeting["title"], "meeting_date": meeting["created_at"], "action_text": action["text"], "assignee": action.get("assignee", "unassigned"), "meeting_id": meeting["id"], }) return items # Sync to task tracker def sync_to_linear(items:...

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 Solid

fathom-core-workflow-b

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".

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-performance-tuning

Optimize Fathom API performance with caching and batch processing. Trigger with phrases like "fathom performance", "fathom caching", "optimize fathom".

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