From fathom-pack
Guides Fathom API security: key management in secrets, PII redaction in meeting transcripts via Python, privacy checklists.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fathom-pack:fathom-security-basicsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- API keys are per-user and access meetings you recorded OR shared to your team
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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin fathom-packProvides 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.