Agent skill
fathom-deploy-integration
Deploy Fathom webhook handlers and meeting sync services. Trigger with phrases like "deploy fathom", "fathom webhook server", "fathom cloud function".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/fathom-pack/skills/fathom-deploy-integration
SKILL.md
Fathom Deploy Integration
Webhook Handler (Cloud Function)
import functions_framework
from fathom_client import FathomClient
@functions_framework.http
def fathom_webhook(request):
event = request.get_json()
event_type = event.get("type")
if event_type == "meeting_content_ready":
recording_id = event["recording_id"]
client = FathomClient()
transcript = client.get_transcript(recording_id)
summary = client.get_summary(recording_id)
# Process and sync to CRM/database
return {"status": "processed"}
return {"status": "ignored"}
gcloud functions deploy fathom-webhook \
--runtime python311 \
--trigger-http \
--allow-unauthenticated \
--set-secrets=FATHOM_API_KEY=fathom-api-key:latest
Resources
Next Steps
For webhook setup, see fathom-webhooks-events.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?