Skip to content
Skillv1.0.0

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

by ComeOnOliver(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from ComeOnOliver/skillshub (skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-core-workflow-b/SKILL.md). Install upstream with npx skills add ComeOnOliver/skillshub --skill fathom-core-workflow-b. Copyright stays with the author (MIT).

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

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

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

CREATE TABLE fathom_meetings (
    id VARCHAR PRIMARY KEY,
    title VARCHAR NOT NULL,
    created_at TIMESTAMP NOT NULL,
    duration_seconds INTEGER,
    summary TEXT,
    participant_count INTEGER,
    action_item_count INTEGER,
    synced_to_crm BOOLEAN DEFAULT FALSE,
    synced_at TIMESTAMP
);

Resources

Next Steps

For error troubleshooting, see fathom-common-errors.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/comeonoliver-skillshub-fathom-core-workflow-b/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

comeonoliver-skillshub-fathom-core-workflow-b.ocm.jsonjson
{
  "ocm": "1",
  "id": "comeonoliver-skillshub-fathom-core-workflow-b",
  "kind": "skill",
  "name": "fathom-core-workflow-b",
  "description": "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\".",
  "publisher": "ComeOnOliver",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "saas",
      "meeting-intelligence",
      "ai-notes",
      "fathom",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/ComeOnOliver/skillshub",
      "path": "skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-core-workflow-b/SKILL.md",
      "ref": "def8531e65114c0fca8fb8551c1871ee0eed705c",
      "url": "https://github.com/ComeOnOliver/skillshub/blob/def8531e65114c0fca8fb8551c1871ee0eed705c/skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-core-workflow-b/SKILL.md",
      "key": "ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-core-workflow-b/SKILL.md"
    },
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(python3:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fathom Core Workflow: CRM Sync & Follow-Up\n\n## Overview\n\nAutomate post-meeting workflows: sync meeting notes to CRM opportunities, send follow-up emails with action items, and maintain a meeting history database.\n\n## Instructions\n\n### Meeting-to-CRM Sync\n\n```python\ndef sync_meeting_to_crm(meeting: dict, crm_client):\n    summary = meeting.get(\"summary\", \"\")\n    action_items = meeting.get(\"action_items\", [])\n    participants = meeting.get(\"participants\", [])\n\n    # Find matching CRM contact/opportunity by participant email\n    for email in participants:\n        contact = crm_client.find_contac",
  "cost": {
    "context_tokens": 489
  }
}

Fetch it by URL: GET /api/v1/registry/comeonoliver-skillshub-fathom-core-workflow-b/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.