Skip to content
Skillv1.0.0

fathom-local-dev-loop

Set up local development for Fathom API integrations with mock meeting data. Use when building meeting analytics tools, testing webhook handlers, or iterating on transcript processing pipelines. Trigg

by gabrielmoreira(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from gabrielmoreira/agent-skills-mirror (mirrors/repos/jeremylongshore@tons-of-skills-marketplace/skills/.curated/fathom-local-dev-loop/SKILL.md). Install upstream with npx skills add gabrielmoreira/agent-skills-mirror --skill fathom-local-dev-loop. Copyright stays with the author (MIT).

Fathom Local Dev Loop

Overview

Use Fathom integrations in the normal local development loop: narrow change, synthetic validation, review, focused tests, and reversible commit.

Prerequisites

  • A clean or recoverable branch, development credential, synthetic meeting/CRM fixtures, repository rules, and test commands.

Instructions

  1. Make one scoped integration/configuration change using development-only data and identity.
  2. Inspect the diff, run focused mock/unit checks, and execute a bounded synthetic workflow test.
  3. Commit reviewed changes separately and promote only through normal protected workflow.

Output

  • A small reviewed change with test evidence and a normal rollback path, without production meeting or contact data.

Error Handling

Condition Safe response
Synthetic test exposes real data Stop, restrict access, and follow the data procedure.
CRM mapping/test fails Revert or correct within scope; do not use production records to diagnose.
Working tree is mixed Separate unrelated changes before committing.

Examples

Update one mapping using a synthetic meeting/action, run its focused test, inspect the redacted result, and commit it separately. If the test fails or unrelated files change, revert/split the work rather than disabling checks or pointing local tooling at production.

Project Structure

fathom-integration/
├── src/
│   ├── fathom_client.py
│   ├── transcript_processor.py
│   └── webhook_handler.py
├── tests/
│   ├── fixtures/
│   │   ├── meeting.json
│   │   └── transcript.json
│   └── test_processor.py
├── .env.local
└── requirements.txt

Mock Meeting Data

MOCK_MEETING = {
    "id": "mtg-123",
    "title": "Product Review Q1",
    "created_at": "2026-03-20T14:00:00Z",
    "duration_seconds": 1800,
    "participants": ["alice@example.com", "bob@example.com"],
    "summary": "Discussed Q1 roadmap priorities. Agreed to focus on API improvements.",
    "action_items": [
        {"text": "Alice to draft API spec by Friday", "assignee": "alice@example.com"},
        {"text": "Bob to review competitor analysis", "assignee": "bob@example.com"}
    ]
}

MOCK_TRANSCRIPT = {
    "segments": [
        {"speaker": "Alice", "text": "Let us review the Q1 priorities.", "start_time": 0.0},
        {"speaker": "Bob", "text": "I think the API work should come first.", "start_time": 5.2},
    ]
}

Development Script

# Run with mock data (no API calls)
FATHOM_MOCK=true python3 src/transcript_processor.py

# Run with real API
python3 src/transcript_processor.py

Resources

Next Steps

See fathom-sdk-patterns for production API wrappers.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/gabrielmoreira-agent-skills-mirror-fathom-local-dev-loop/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

gabrielmoreira-agent-skills-mirror-fathom-local-dev-loop.ocm.jsonjson
{
  "ocm": "1",
  "id": "gabrielmoreira-agent-skills-mirror-fathom-local-dev-loop",
  "kind": "skill",
  "name": "fathom-local-dev-loop",
  "description": "Set up local development for Fathom API integrations with mock meeting data. Use when building meeting analytics tools, testing webhook handlers, or iterating on transcript processing pipelines. Trigger with phrases like \"fathom dev setup\", \"fathom local testing\", \"develop with fathom\", \"fathom mock data\".",
  "publisher": "gabrielmoreira",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "meeting-intelligence",
      "ai-notes",
      "fathom",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Set up local development for Fathom API integrations with mock meeting data. Use when building meeting analytics tools, testing webhook handlers, or iterating on transcript processing pipelines. Trigger with phrases like \"fathom dev setup\", \"fathom local testing\", \"develop with fathom\", \"fathom mock data\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/gabrielmoreira/agent-skills-mirror",
      "path": "mirrors/repos/jeremylongshore@tons-of-skills-marketplace/skills/.curated/fathom-local-dev-loop/SKILL.md",
      "ref": "d5c793801e2fc9c29aa3531805809b3460b19d09",
      "url": "https://github.com/gabrielmoreira/agent-skills-mirror/blob/d5c793801e2fc9c29aa3531805809b3460b19d09/mirrors/repos/jeremylongshore@tons-of-skills-marketplace/skills/.curated/fathom-local-dev-loop/SKILL.md",
      "key": "gabrielmoreira/agent-skills-mirror/mirrors/repos/jeremylongshore@tons-of-skills-marketplace/skills/.curated/fathom-local-dev-loop/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(python3:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fathom Local Dev Loop\n\n## Overview\n\nUse Fathom integrations in the normal local development loop: narrow change, synthetic validation, review, focused tests, and reversible commit.\n\n## Prerequisites\n\n- A clean or recoverable branch, development credential, synthetic meeting/CRM fixtures, repository rules, and test commands.\n\n## Instructions\n\n1. Make one scoped integration/configuration change using development-only data and identity.\n2. Inspect the diff, run focused mock/unit checks, and execute a bounded synthetic workflow test.\n3. Commit reviewed changes separately and promote only through",
  "cost": {
    "context_tokens": 686
  }
}

Fetch it by URL: GET /api/v1/registry/gabrielmoreira-agent-skills-mirror-fathom-local-dev-loop/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.