fathom-sdk-patterns
Production-ready Fathom API client patterns in Python and TypeScript. Use when building reusable Fathom clients, implementing meeting data pipelines, or wrapping the Fathom REST API. Trigger with phrases like "fathom API patterns", "fathom client wrapper", "fathom Python client", "fathom TypeScript". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill fathom-sdk-patterns --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Fathom SDK Patterns ## Python Client ```python import os, requests from dataclasses import dataclass from typing import Optional @dataclass class FathomConfig: api_key: str base_url: str = "https://api.fathom.ai/external/v1" timeout: int = 30 class FathomClient: def __init__(self, config: Optional[FathomConfig] = None): self.config = config or FathomConfig(api_key=os.environ["FATHOM_API_KEY"]) s
What does the fathom-sdk-patterns skill do?
Production-ready Fathom API client patterns in Python and TypeScript. Use when building reusable Fathom clients, implementing meeting data pipelines, or wrapping the Fathom REST API. Trigger with phrases like "fathom API patterns", "fathom client wrapper", "fathom Python client", "fathom TypeScript". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill fathom-sdk-patterns --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,596 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
