โ† All skills
Tencent SkillHub ยท Developer Tools

Fathom

Access Fathom AI meeting recordings, transcripts, summaries, and action items via the Fathom API. Use when the user asks about meeting notes, call summaries,...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Access Fathom AI meeting recordings, transcripts, summaries, and action items via the Fathom API. Use when the user asks about meeting notes, call summaries,...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api-endpoints.md, scripts/sync-fathom.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Fathom

Pull meeting recordings, transcripts, summaries, and action items from Fathom AI Notetaker.

Setup

Store the API key in ~/.openclaw/secrets/fathom.env: FATHOM_API_KEY=your-api-key-here FATHOM_WEBHOOK_SECRET=your-webhook-secret-here Get API key from Fathom: Settings โ†’ Integrations โ†’ API โ†’ Generate Key.

API Reference

Base URL: https://api.fathom.ai/external/v1 Auth header: X-Api-Key: <FATHOM_API_KEY>

List Meetings

curl "https://api.fathom.ai/external/v1/meetings?limit=20" \ -H "X-Api-Key: $FATHOM_API_KEY" Key query params: limit (1-100, default 10) created_after / created_before (ISO 8601) recorded_by[] (email filter) include_transcript=true (include full transcript) include_action_items=true (include action items) include_summary=true (include AI summary) Response shape: { "items": [{ "title": "Meeting Name", "meeting_title": "Calendar Event Name", "url": "https://fathom.video/calls/123", "share_url": "https://fathom.video/share/abc", "created_at": "2026-02-17T20:00:00Z", "scheduled_start_time": "...", "scheduled_end_time": "...", "recording_start_time": "...", "recording_end_time": "...", "recording_id": 123, "transcript": "...", "default_summary": "...", "action_items": ["..."], "calendar_invitees": [{"name": "...", "email": "...", "is_external": true}], "recorded_by": {"name": "...", "email": "..."} }], "next_cursor": "..." }

Pagination

Use next_cursor from response as cursor param in next request.

Matching Fathom to Calendar

Match by time overlap (recording_start_time within event window ยฑ 15 min) or by title similarity. The calendar_invitees field shows who was invited; is_external flags non-org attendees.

Pull action items from recent calls

source ~/.openclaw/secrets/fathom.env curl -s "https://api.fathom.ai/external/v1/meetings?include_action_items=true&limit=20" \ -H "X-Api-Key: $FATHOM_API_KEY"

Get full transcript for a specific date range

curl -s "https://api.fathom.ai/external/v1/meetings?include_transcript=true&created_after=2026-02-17T00:00:00Z&created_before=2026-02-18T00:00:00Z" \ -H "X-Api-Key: $FATHOM_API_KEY"

Filter to external meetings only

After fetching, filter meetings where at least one calendar_invitees entry has is_external: true, or check the calendar_invitees_domains_type field for "one_or_more_external".

Sync script (calendar + Fathom โ†’ database)

See scripts/sync-fathom.js for a complete local sync script that: Refreshes Google OAuth token Pulls Google Calendar events for a date range Pulls Fathom meetings with action items Matches Fathom recordings to calendar events Upserts everything to Supabase (or any database) Adapt the database layer to your needs.

Webhooks

Fathom can POST to your endpoint when recordings complete. Verify with FATHOM_WEBHOOK_SECRET. Use this for real-time sync instead of polling.

Tips

Action items from Fathom are AI-generated โ€” review for accuracy recorded_by shows who ran the Fathom bot, not necessarily the meeting organizer Duplicate recordings happen when multiple team members run Fathom on the same call โ€” deduplicate by matching scheduled_start_time + similar titles The API returns meetings from all team members if using a team API key

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api-endpoints.md Docs
  • scripts/sync-fathom.js Scripts