npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/fathom-pack

v1.0.0

Published

Claude Code skill pack for Fathom - 18 skills covering AI meeting assistant, note-taking, and call summaries

Readme

Fathom Skill Pack

18 production-grade Claude Code skills for AI meeting intelligence with Fathom

What Is Fathom?

Fathom is an AI meeting assistant that automatically records, transcribes, and summarizes video meetings. The platform provides:

  • AI meeting notes with automatic summaries and action items
  • Full transcripts with speaker identification and timestamps
  • Webhooks for real-time meeting data delivery
  • CRM integrations for automatic meeting logging to Salesforce, HubSpot, etc.
  • REST API at api.fathom.ai/external/v1 with X-Api-Key authentication

API keys are per-user and can access meetings you recorded or that were shared to your team. Rate limit: 60 requests per minute. Webhooks deliver meeting data automatically when recordings are processed.

This skill pack provides real API calls and webhook patterns for every stage of Fathom integration.

Installation

/plugin install fathom-pack@claude-code-plugins-plus

Skills Included

Getting Started (S01-S04)

| Skill | Description | |-------|-------------| | fathom-install-auth | API key generation, environment setup, OAuth for public apps | | fathom-hello-world | List meetings, get transcripts, retrieve summaries and action items | | fathom-local-dev-loop | Mock meeting data, test processors, development scripts | | fathom-sdk-patterns | Python and TypeScript API clients with typed responses |

Core Workflows (S05-S08)

| Skill | Description | |-------|-------------| | fathom-core-workflow-a | Meeting analytics pipeline: batch export, action item extraction | | fathom-core-workflow-b | CRM sync, automated follow-up emails, meeting history database | | fathom-common-errors | Auth failures, empty transcripts, webhook issues, rate limits | | fathom-debug-bundle | API diagnostics for support cases |

Operations (S09-S12)

| Skill | Description | |-------|-------------| | fathom-rate-limits | 60 req/min limit handling, batch processing patterns | | fathom-security-basics | API key management, meeting data PII handling | | fathom-prod-checklist | Production readiness for meeting integrations | | fathom-upgrade-migration | API version tracking and schema change detection |

Pro Skills (P13-P18)

| Skill | Description | |-------|-------------| | fathom-ci-integration | GitHub Actions for integration testing | | fathom-deploy-integration | Cloud Function webhook handlers | | fathom-webhooks-events | Webhook configuration, payload handling, real-time processing | | fathom-performance-tuning | Caching, batch processing within rate limits | | fathom-cost-tuning | Plan comparison, API optimization strategies | | fathom-reference-architecture | Meeting intelligence platform architecture |

Quick Start

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.

Key Fathom Links

License

MIT