Skip to content
Skillv1.0.0

fathom-upgrade-migration

Handle Fathom API changes and version migrations. Trigger with phrases like "upgrade fathom", "fathom api changes", "fathom migration".

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

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

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/fathom-pack/skills/fathom-upgrade-migration/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill fathom-upgrade-migration. Copyright stays with the author (MIT).

Fathom Upgrade & Migration

Prerequisites

  • Current/target version inventory, compatibility notes, synthetic fixtures, acceptance criteria, and rollback owner.

Instructions

  1. Inventory configuration, credentials, CRM mappings, access, retention, and consent behavior.
  2. Test the target in development/staging with synthetic meetings and records.
  3. Compare aggregate quality, delivery, error, access, and policy results before a bounded canary.
  4. Pause or roll back on regression and retain the prior configuration until sign-off.

Output

  • A staged upgrade record with evidence, owner, observation window, and rollback revision.

Examples

Upgrade the integration in staging, run mock/unit and synthetic workflow checks against prior and target versions, and compare aggregate sync/follow-up behavior. Roll back on consent, access, mapping, or reliability regression; do not replay customer meetings to validate a migration.

Overview

Fathom is an AI meeting assistant that records, transcribes, and summarizes meetings. The API operates under /external/v1 and exposes endpoints for meetings, transcripts, and action items. Tracking API changes is important because Fathom iterates rapidly on transcript schema fields (speaker attribution, sentiment data, highlight clips) and breaking changes to response shapes can silently corrupt downstream integrations that consume meeting data for CRM sync or analytics pipelines.

Version Detection

const FATHOM_BASE = "https://api.fathom.video/external/v1";

interface FathomVersionCheck {
  apiVersion: string;
  knownFields: string[];
  detectedFields: string[];
  newFields: string[];
  removedFields: string[];
}

async function detectFathomApiChanges(apiKey: string): Promise<FathomVersionCheck> {
  const res = await fetch(`${FATHOM_BASE}/meetings?limit=1`, {
    headers: { Authorization: `Bearer ${apiKey}` },
  });
  const data = await res.json();
  const knownFields = ["id", "title", "created_at", "duration", "attendees", "transcript_url"];
  const detectedFields = data.meetings?.[0] ? Object.keys(data.meetings[0]) : [];
  return {
    apiVersion: res.headers.get("x-api-version") ?? "v1",
    knownFields,
    detectedFields,
    newFields: detectedFields.filter((f) => !knownFields.includes(f)),
    removedFields: knownFields.filter((f) => !detectedFields.includes(f)),
  };
}

Migration Checklist

  • Review Fathom product updates for API changes and deprecations
  • Audit all endpoints referencing /external/v1 in codebase
  • Verify meeting list response schema matches current field expectations
  • Check transcript endpoint for new speaker attribution fields
  • Validate action item extraction format (structured vs. plain text)
  • Update OAuth token refresh flow if auth endpoints changed
  • Test webhook payloads for meeting completion events
  • Verify pagination parameters (cursor vs. offset) are current
  • Update CRM sync mappings if meeting metadata fields renamed
  • Run integration tests against Fathom sandbox environment

Schema Migration

// Fathom transcript response evolved: flat text → speaker-attributed segments
interface OldTranscript {
  meeting_id: string;
  text: string;
  created_at: string;
}

interface NewTranscript {
  meeting_id: string;
  segments: Array<{
    speaker: string;
    text: string;
    start_time: number;
    end_time: number;
    confidence: number;
  }>;
  summary: string;
  action_items: Array<{ text: string; assignee?: string }>;
  created_at: string;
}

function migrateTranscript(old: OldTranscript): NewTranscript {
  return {
    meeting_id: old.meeting_id,
    segments: [{ speaker: "Unknown", text: old.text, start_time: 0, end_time: 0, confidence: 1.0 }],
    summary: "",
    action_items: [],
    created_at: old.created_at,
  };
}

Rollback Strategy

class FathomClient {
  private baseUrl: string;
  private fallbackUrl: string;

  constructor(private apiKey: string) {
    this.baseUrl = "https://api.fathom.video/external/v1";
    this.fallbackUrl = "https://api.fathom.video/external/v1"; // same base, version in path
  }

  async getMeetings(limit = 20): Promise<any> {
    try {
      const res = await fetch(`${this.baseUrl}/meetings?limit=${limit}`, {
        headers: { Authorization: `Bearer ${this.apiKey}` },
      });
      if (!res.ok) throw new Error(`Fathom API ${res.status}`);
      return await res.json();
    } catch (err) {
      console.warn("Primary endpoint failed, attempting fallback:", err);
      const res = await fetch(`${this.fallbackUrl}/meetings?limit=${limit}`, {
        headers: { Authorization: `Bearer ${this.apiKey}`, Accept: "application/json; version=legacy" },
      });
      return await res.json();
    }
  }
}

Error Handling

Migration Issue Symptom Fix
Transcript schema changed Missing segments array, only flat text returned Update parser to handle both old flat and new segmented formats
Webhook payload mismatch meeting.completed event missing expected fields Re-register webhook with updated event schema version
OAuth scope expansion 403 Forbidden on transcript endpoint Re-authorize with updated scopes (meetings.read, transcripts.read)
Pagination cursor invalid 400 Bad Request with cursor token Switch from offset-based to cursor-based pagination if API changed
Rate limit headers changed 429 without Retry-After header Implement exponential backoff instead of relying on header

Resources

Next Steps

For CI pipeline integration, see fathom-ci-integration.

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/jeremylongshore-tons-of-skills-marketplace-fathom-upgrad-9b0bbd/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.

jeremylongshore-tons-of-skills-marketplace-fathom-upgrad-9b0bbd.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-fathom-upgrad-9b0bbd",
  "kind": "skill",
  "name": "fathom-upgrade-migration",
  "description": "Handle Fathom API changes and version migrations. Trigger with phrases like \"upgrade fathom\", \"fathom api changes\", \"fathom migration\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "meeting-intelligence",
      "ai-notes",
      "fathom",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Handle Fathom API changes and version migrations. Trigger with phrases like \"upgrade fathom\", \"fathom api changes\", \"fathom migration\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/fathom-pack/skills/fathom-upgrade-migration/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/fathom-pack/skills/fathom-upgrade-migration/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/fathom-pack/skills/fathom-upgrade-migration/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fathom Upgrade & Migration\n\n## Prerequisites\n\n- Current/target version inventory, compatibility notes, synthetic fixtures, acceptance criteria, and rollback owner.\n\n## Instructions\n\n1. Inventory configuration, credentials, CRM mappings, access, retention, and consent behavior.\n2. Test the target in development/staging with synthetic meetings and records.\n3. Compare aggregate quality, delivery, error, access, and policy results before a bounded canary.\n4. Pause or roll back on regression and retain the prior configuration until sign-off.\n\n## Output\n\n- A staged upgrade record with evidence, ow",
  "cost": {
    "context_tokens": 1446
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-fathom-upgrad-9b0bbd/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.