技能 编程开发 Fathom会议智能集成架构

Fathom会议智能集成架构

v20260423
fathom-reference-architecture
本参考架构为Fathom会议智能数据提供了一个完整的集成蓝图。它详细描述了端到端的自动化数据流,包括通过Webhook接收原始数据,到使用云函数进行动作项提取,最终同步到PostgreSQL数据库和各类CRM系统(如Salesforce/HubSpot)。适用于需要构建实时、自动化业务流程的开发者。
获取技能
318 次下载
概览

Fathom Reference Architecture

Architecture

┌──────────────┐     ┌─────────────────┐     ┌──────────────────┐
│  Fathom AI   │────▶│  Webhook        │────▶│  Meeting DB      │
│  (Recordings)│     │  Handler        │     │  (PostgreSQL)    │
└──────────────┘     └─────────────────┘     └────────┬─────────┘
                                                       │
                     ┌─────────────────┐     ┌────────▼─────────┐
                     │  Action Item    │     │  CRM Sync        │
                     │  Extractor      │────▶│  (Salesforce/    │
                     └─────────────────┘     │   HubSpot)       │
                            │                └──────────────────┘
                     ┌──────▼──────────┐
                     │  Follow-up      │
                     │  Email Sender   │
                     └─────────────────┘

Project Structure

fathom-platform/
├── src/
│   ├── fathom_client.py
│   ├── webhook_handler.py
│   ├── transcript_processor.py
│   ├── action_extractor.py
│   ├── crm_sync.py
│   └── email_sender.py
├── sql/
│   └── schema.sql
├── tests/
│   ├── fixtures/
│   └── test_processor.py
└── deploy/
    ├── cloud-function/
    └── docker-compose.yaml

Key Design Decisions

Decision Choice Rationale
Data delivery Webhooks Real-time, no polling
Storage PostgreSQL Structured meeting data
Processing Cloud Function Serverless, scales with meeting volume
CRM sync Async queue Handles CRM rate limits

Resources

Next Steps

This completes the Fathom skill pack. Start with fathom-install-auth.

信息
Category 编程开发
Name fathom-reference-architecture
版本 v20260423
大小 2.77KB
更新时间 2026-04-26
语言