fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
Best use case
fathom-cost-tuning is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
Teams using fathom-cost-tuning should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/fathom-cost-tuning/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How fathom-cost-tuning Compares
| Feature / Agent | fathom-cost-tuning | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# Fathom Cost Tuning
## 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
```typescript
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
```typescript
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
- [Fathom Pricing](https://fathom.video/pricing)
- [Fathom API Documentation](https://docs.fathom.video)
## Next Steps
See `fathom-performance-tuning`.Related Skills
workhuman-performance-tuning
Workhuman performance tuning for employee recognition and rewards API. Use when integrating Workhuman Social Recognition, or building recognition workflows with HRIS systems. Trigger: "workhuman performance tuning".
workhuman-cost-tuning
Workhuman cost tuning for employee recognition and rewards API. Use when integrating Workhuman Social Recognition, or building recognition workflows with HRIS systems. Trigger: "workhuman cost tuning".
wispr-performance-tuning
Wispr Flow performance tuning for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr performance tuning".
wispr-cost-tuning
Wispr Flow cost tuning for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr cost tuning".
windsurf-performance-tuning
Optimize Windsurf IDE performance: indexing speed, Cascade responsiveness, and memory usage. Use when Windsurf is slow, indexing takes too long, Cascade times out, or the IDE uses too much memory. Trigger with phrases like "windsurf slow", "windsurf performance", "optimize windsurf", "windsurf memory", "cascade slow", "indexing slow".
windsurf-cost-tuning
Optimize Windsurf licensing costs through seat management, tier selection, and credit monitoring. Use when analyzing Windsurf billing, reducing per-seat costs, or implementing usage monitoring and budget controls. Trigger with phrases like "windsurf cost", "windsurf billing", "reduce windsurf costs", "windsurf pricing", "windsurf budget".
webflow-performance-tuning
Optimize Webflow API performance with response caching, bulk endpoint batching, CDN-cached live item reads, pagination optimization, and connection pooling. Use when experiencing slow API responses or optimizing request throughput. Trigger with phrases like "webflow performance", "optimize webflow", "webflow latency", "webflow caching", "webflow slow", "webflow batch".
webflow-cost-tuning
Optimize Webflow costs through plan selection, CDN read optimization, bulk endpoint usage, and API usage monitoring with budget alerts. Use when analyzing Webflow billing, reducing API costs, or implementing usage monitoring for Webflow integrations. Trigger with phrases like "webflow cost", "webflow billing", "reduce webflow costs", "webflow pricing", "webflow budget".
vercel-performance-tuning
Optimize Vercel deployment performance with caching, bundle optimization, and cold start reduction. Use when experiencing slow page loads, optimizing Core Web Vitals, or reducing serverless function cold start times. Trigger with phrases like "vercel performance", "optimize vercel", "vercel latency", "vercel caching", "vercel slow", "vercel cold start".
vercel-cost-tuning
Optimize Vercel costs through plan selection, function efficiency, and usage monitoring. Use when analyzing Vercel billing, reducing function execution costs, or implementing spend management and budget alerts. Trigger with phrases like "vercel cost", "vercel billing", "reduce vercel costs", "vercel pricing", "vercel expensive", "vercel budget".
veeva-performance-tuning
Veeva Vault performance tuning for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva performance tuning".
veeva-cost-tuning
Veeva Vault cost tuning for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva cost tuning".