From fathom-pack
Guides Fathom API security: key management in secrets, PII redaction in meeting transcripts via Python, privacy checklists.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin fathom-packThis skill is limited to using the following tools:
- API keys are per-user and access meetings you recorded OR shared to your team
Provides production readiness checklist for Fathom API integrations: secrets, rate limiting, error handling, webhooks, PII compliance, monitoring. Trigger on 'fathom production' phrases.
Secures Fireflies.ai API keys with env vars and git hooks; verifies webhook HMAC-SHA256 signatures in Node.js/Express or Python. Use for integration audits.
Applies Framer security best practices for API keys, plugin auth, server access: credential storage, client proxies, key rotation scripts, checklists.
Share bugs, ideas, or general feedback.
def redact_transcript(segments: list[dict]) -> list[dict]:
import re
email_pattern = re.compile(r"[\w.+-]+@[\w-]+\.[\w.-]+")
return [{
**seg,
"text": email_pattern.sub("[REDACTED_EMAIL]", seg["text"])
} for seg in segments]
For production readiness, see fathom-prod-checklist.