fathom-pack

v1.6.0 by Jeremy Longshore

Claude Code skill pack for Fathom (18 skills)

18 plugin-local skills
MIT License
Claude Code Adapters (declared)

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

fathom-ci-integration View full skill →

Test Fathom integrations in CI/CD pipelines.

ReadWriteEditBash(gh:*)
fathom-common-errors View full skill →

Diagnose and fix Fathom API errors including auth failures and missing data.

ReadBash(curl:*)Grep
fathom-core-workflow-a View full skill →

Build a meeting analytics pipeline with Fathom transcripts and summaries.

ReadWriteEditBash(python3:*)Bash(curl:*)Grep
fathom-core-workflow-b View full skill →

Sync Fathom meeting data to CRM and build automated follow-up workflows.

ReadWriteEditBash(python3:*)Grep
fathom-cost-tuning View full skill →

Optimize Fathom API usage and plan selection.

ReadGrep
fathom-debug-bundle View full skill →

Collect Fathom API diagnostics for support cases.

ReadBash(curl:*)Grep
fathom-deploy-integration View full skill →

Deploy Fathom webhook handlers and meeting sync services.

ReadWriteEditBash(gcloud:*)
fathom-hello-world View full skill →

Retrieve meeting transcripts and summaries from the Fathom API.

ReadWriteEditBash(curl:*)
fathom-install-auth View full skill →

Configure Fathom AI meeting assistant API access with API key authentication.

ReadWriteEditBash(curl:*)Grep
fathom-local-dev-loop View full skill →

Set up local development for Fathom API integrations with mock meeting data.

ReadWriteEditBash(npm:*)Bash(python3:*)Grep
fathom-performance-tuning View full skill →

Optimize Fathom API performance with caching and batch processing.

ReadWriteEdit
fathom-prod-checklist View full skill →

Production readiness checklist for Fathom API integrations.

ReadGrep
fathom-rate-limits View full skill →

Handle Fathom API rate limits (60 requests/minute per user).

ReadWriteEdit
fathom-reference-architecture View full skill →

Reference architecture for Fathom meeting intelligence integrations.

ReadGrep
fathom-sdk-patterns View full skill →

Production-ready Fathom API client patterns in Python and TypeScript.

ReadWriteEdit
fathom-security-basics View full skill →

Secure Fathom API keys and handle meeting data privacy.

ReadWriteEditGrep
fathom-upgrade-migration View full skill →

Handle Fathom API changes and version migrations.

ReadWriteEditGrep
fathom-webhooks-events View full skill →

Configure Fathom webhooks for real-time meeting notifications.

ReadWriteEditBash(curl:*)

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.

Ready to use fathom-pack?