Skip to content
Skillv1.0.0

fathom-cost-tuning

Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".

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 (skills/.curated/fathom-cost-tuning/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill fathom-cost-tuning. Copyright stays with the author (MIT).

Fathom Cost Tuning

Prerequisites

  • An aggregate usage/cost baseline, budget owner, recording/consent policy, quality/delivery SLO, and synthetic evaluation fixture.

Instructions

  1. Measure aggregate meeting volume, processing, sync/follow-up behavior, errors, and cost by approved scope.
  2. Change one reversible setting and compare against the baseline and consent/delivery safeguards.
  3. Retain the change only after owner approval; restore the prior setting on regression.

Output

  • A measured cost decision with owner, data/consent/delivery guardrails, and rollback threshold.

Examples

Evaluate a development workflow with synthetic meeting metadata, reduce duplicate processing or unnecessary integration calls, and compare aggregate cost/latency/error metrics. Revert on quality, consent, or CRM-sync regression; do not disable audit, retention, or access controls to save cost.

Overview

Fathom pricing scales with per-seat licensing for team features, with primary cost drivers being transcript storage volume and recording hours consumed. Every meeting generates a transcript and AI summary that persist in storage. For organizations running dozens of meetings daily, unchecked transcript accumulation and redundant API polling for meeting data create unnecessary spend. Optimizing retrieval patterns and storage lifecycle directly reduces both API costs and plan overhead.

Cost Breakdown

Component Cost Driver Optimization
Seat licenses Per-user/month for Team plan Audit active seats quarterly; remove inactive users
Transcript storage Accumulated meeting transcripts Archive transcripts older than 90 days to local storage
Recording hours Meeting duration across all users Disable recording for standup/informal meetings
API polling Repeated list/get calls for meeting data Use webhooks for push notifications instead of polling
CRM sync events Per-meeting sync to Salesforce/HubSpot Batch CRM writes; skip internal-only meetings

API Call Reduction

class FathomTranscriptCache {
  private cache = new Map<string, { transcript: string; summary: string }>();

  async getTranscript(meetingId: string, apiFn: () => Promise<any>): Promise<any> {
    // Transcripts are immutable after generation — cache permanently
    if (this.cache.has(meetingId)) return this.cache.get(meetingId);
    const result = await apiFn();
    this.cache.set(meetingId, result);
    return result;
  }

  async listMeetings(params: { include_summary: boolean }): Promise<any[]> {
    // Always use include_summary=true to avoid N+1 calls
    // Fetches summaries inline with the list response
    const response = await fetch('/api/meetings?include_summary=true');
    return response.json();
  }
}

Usage Monitoring

class FathomUsageTracker {
  private apiCalls = 0;
  private readonly rateLimit = 60; // 60 req/min
  private windowStart = Date.now();

  async throttledCall<T>(fn: () => Promise<T>): Promise<T> {
    if (Date.now() - this.windowStart > 60_000) {
      this.apiCalls = 0;
      this.windowStart = Date.now();
    }
    if (this.apiCalls >= this.rateLimit) {
      const waitMs = 60_000 - (Date.now() - this.windowStart);
      await new Promise(r => setTimeout(r, waitMs));
      this.apiCalls = 0;
      this.windowStart = Date.now();
    }
    this.apiCalls++;
    return fn();
  }

  getUsageReport(): { callsThisMinute: number; remainingCapacity: number } {
    return { callsThisMinute: this.apiCalls, remainingCapacity: this.rateLimit - this.apiCalls };
  }
}

Cost Optimization Checklist

  • Use webhooks for meeting completion events instead of polling
  • Always pass include_summary=true in list requests to avoid extra calls
  • Cache transcripts permanently — they never change after generation
  • Batch API processing within the 60 req/min rate limit
  • Audit team seats quarterly and remove inactive users
  • Archive transcripts older than 90 days to reduce storage costs
  • Disable auto-recording for informal or standup meetings
  • Skip CRM sync for internal-only meetings

Error Handling

Issue Cause Fix
429 rate limit hit Exceeding 60 req/min Implement throttling with sliding window
Duplicate transcript fetches Multiple services requesting same meeting Centralize through shared cache
Stale meeting list Polling on long intervals Switch to webhook-driven updates
CRM sync failures Batch too large or network timeout Chunk CRM writes into batches of 10
Storage costs climbing No transcript lifecycle policy Implement 90-day archive-to-local policy

Resources

Next Steps

See fathom-performance-tuning.

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-cost-tuning/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-cost-tuning.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-fathom-cost-tuning",
  "kind": "skill",
  "name": "fathom-cost-tuning",
  "description": "Optimize Fathom API usage and plan selection. Trigger with phrases like \"fathom cost\", \"fathom pricing\", \"fathom plan\".",
  "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": [
    "Optimize Fathom API usage and plan selection. Trigger with phrases like \"fathom cost\", \"fathom pricing\", \"fathom plan\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/fathom-cost-tuning/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/fathom-cost-tuning/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/fathom-cost-tuning/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fathom Cost Tuning\n\n## Prerequisites\n\n- An aggregate usage/cost baseline, budget owner, recording/consent policy, quality/delivery SLO, and synthetic evaluation fixture.\n\n## Instructions\n\n1. Measure aggregate meeting volume, processing, sync/follow-up behavior, errors, and cost by approved scope.\n2. Change one reversible setting and compare against the baseline and consent/delivery safeguards.\n3. Retain the change only after owner approval; restore the prior setting on regression.\n\n## Output\n\n- A measured cost decision with owner, data/consent/delivery guardrails, and rollback threshold.\n\n##",
  "cost": {
    "context_tokens": 1227
  }
}

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