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

fathom-video-cli

v0.1.4

Published

Agent-first CLI + skill for Fathom's official API

Readme

fathom-video-cli

Agent-first TypeScript CLI + skill for the official Fathom API.

This implementation is intentionally official-API-first:

  • list/filter meetings
  • fetch transcripts
  • fetch summaries
  • list teams
  • list team members
  • create/delete webhooks
  • derived agent helpers on top of that official surface:
    • meetings get
    • meetings grep
    • meetings export

As of March 11, 2026, I do not see an official Fathom CLI. Fathom does publish an official API and official TypeScript SDK, but this CLI uses a thin typed REST client instead of the beta SDK so it can keep a stricter agent contract.

Install

Global:

npm i -g fathom-video-cli

One-shot:

npx -y fathom-video-cli doctor --json

Local:

cd platform-adapters/fathom/fathom-cli
npm install
npm link

Skill install:

npx -y skills add -g danielgwilson/fathom-cli --skill fathom

Requirements:

  • Node.js 22+

Auth

Use an API key from the official Fathom developer settings.

Preferred ephemeral auth:

export FATHOM_API_KEY="..."
fathom auth status --json

Store locally for repeated use:

fathom auth set
fathom auth status --json

Non-interactive / agent automation:

printf '%s' "$FATHOM_API_KEY" | fathom auth set --stdin

The saved config lives at ~/.config/fathom/config.json with 0600 permissions.

Tip: if you keep the key in a local .env, Node 22+ can load it without adding any CLI dependency:

node --env-file ../.env "$(command -v fathom)" doctor --json

Main commands

Read-first workflow:

fathom doctor --json
fathom meetings list --limit 25 --json
fathom meetings get 123456789 --with summary,transcript --json
fathom recordings transcript 123456789 --json
fathom recordings summary 123456789 --json

Public share URL workflow:

fathom meetings get 'https://fathom.video/share/...' --with transcript --json

That path can work even without an API key, because the CLI resolves public share links through Fathom's public share page.

Search/filter workflow:

fathom meetings list --team Operations --created-after 2026-03-01 --json
fathom meetings list --query "customer discovery" --all --limit 100 --json
fathom meetings grep "renewal timeline" --limit 25 --json

Export workflow:

fathom meetings export --all --zip
fathom meetings export --team Operations --format json,md,txt --out-dir ./fathom-export

Official admin surfaces:

fathom teams --json
fathom team-members --team Operations --json
fathom webhooks create \
  --destination-url https://example.com/fathom-webhook \
  --triggered-for my_recordings \
  --include transcript,summary

Design notes

  • meetings get is a derived helper. Fathom does not publish a single-meeting fetch endpoint.
  • Public share URLs are resolved through Fathom's public share page, even when no API key is configured.
  • Share-url resolution may not expose an official recording_id or summary payload. In those cases the CLI returns source: "public_share_page" and official_recording_id: null.
  • meetings grep is also derived. It uses the official meetings list with transcript/summary enrichment when needed.
  • There is no official whoami endpoint, so this CLI does not pretend there is one.
  • recordings transcript and recordings summary support Fathom’s async callback mode via --destination-url.

Agent-first contract

See docs/CONTRACT_V1.md.

Publishing (maintainers)

This package is scaffolded for npm trusted publishing from GitHub Actions.

  • CI workflow: .github/workflows/ci.yml
  • publish workflow: .github/workflows/publish.yml
  • maintainer notes: fathom-trusted-publishing-notes.md