fathom-local-dev-loop

Solid

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
70
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Fathom Local Dev Loop ## 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 ```python 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 ```bash # 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 - [Fathom API Docs](https://developers.fathom.ai) ## Next Steps See `fathom-sdk-patterns` for production API wrappers.

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

fireflies-local-dev-loop

Configure local development workflow for Fireflies.ai GraphQL integrations. Use when setting up a development environment, mocking transcript data, or establishing a fast iteration cycle with the Fireflies API. Trigger with phrases like "fireflies dev setup", "fireflies local development", "fireflies dev environment", "develop with fireflies", "mock fireflies".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-deploy-integration

Deploy Fathom webhook handlers and meeting sync services. Trigger with phrases like "deploy fathom", "fathom webhook server", "fathom cloud function".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-ci-integration

Test Fathom integrations in CI/CD pipelines. Trigger with phrases like "fathom CI", "fathom github actions", "test fathom pipeline".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fondo-local-dev-loop

Configure local development workflows that integrate with Fondo for financial data, using Fondo exports with QuickBooks or accounting tools. Trigger: "fondo dev setup", "fondo export", "fondo QuickBooks", "fondo local data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-local-dev-loop

Configure Flexport local development with mock API responses and testing. Use when setting up a development environment, creating mock shipment data, or establishing a fast iteration cycle for Flexport logistics integration. Trigger: "flexport dev setup", "flexport local development", "flexport mock API".

2,266 Updated today
jeremylongshore