Fathom reference architecture
425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill fathom-reference-architectureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
'Reference architecture for Fathom meeting intelligence integrations.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.8 KB, as published. Nobody here has run it
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.