fathom-pack
Claude Code skill pack for Fathom (18 skills)
Installation
Open Claude Code and run this command:
/plugin install fathom-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> 18 production-grade Claude Code skills for AI meeting intelligence with Fathom
Skills (18) plugin-local skills
Test Fathom integrations in CI/CD pipelines.
Diagnose and fix Fathom API errors including auth failures and missing data.
Build a meeting analytics pipeline with Fathom transcripts and summaries.
Sync Fathom meeting data to CRM and build automated follow-up workflows.
Optimize Fathom API usage and plan selection.
Collect Fathom API diagnostics for support cases.
Deploy Fathom webhook handlers and meeting sync services.
Retrieve meeting transcripts and summaries from the Fathom API.
Configure Fathom AI meeting assistant API access with API key authentication.
Set up local development for Fathom API integrations with mock meeting data.
Optimize Fathom API performance with caching and batch processing.
Production readiness checklist for Fathom API integrations.
Handle Fathom API rate limits (60 requests/minute per user).
Reference architecture for Fathom meeting intelligence integrations.
Production-ready Fathom API client patterns in Python and TypeScript.
Secure Fathom API keys and handle meeting data privacy.
Handle Fathom API changes and version migrations.
Configure Fathom webhooks for real-time meeting notifications.
How It Works
1. Install the Pack
/plugin install fathom-pack@claude-code-plugins-plus
2. Get Your API Key
Go to fathom.video > Settings > Integrations > API Access and generate a key.
3. Fetch Your First Meeting
export FATHOM_API_KEY="your-key"
curl -s -H "X-Api-Key: ${FATHOM_API_KEY}" \
"https://api.fathom.ai/external/v1/meetings?limit=1&include_summary=true" \
| jq '.meetings[0] | {title, summary, action_items}'
4. Set Up Webhooks
Follow fathom-webhooks-events to receive real-time meeting data automatically.