{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fathom",
    "name": "Fathom",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lucassynnott/fathom",
    "canonicalUrl": "https://clawhub.ai/lucassynnott/fathom",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fathom",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fathom",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "examples/config-snippet.json",
      "scripts/get-summary.sh",
      "scripts/get-transcript.sh",
      "scripts/list-calls.sh",
      "scripts/search-calls.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "fathom",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T04:16:48.708Z",
      "expiresAt": "2026-05-10T04:16:48.708Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fathom",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fathom",
        "contentDisposition": "attachment; filename=\"fathom-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fathom"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fathom"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fathom",
    "agentPageUrl": "https://openagent3.xyz/skills/fathom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Fathom Skill",
        "body": "Connect to Fathom AI to fetch call recordings, transcripts, and summaries."
      },
      {
        "title": "1. Get Your API Key",
        "body": "Go to developers.fathom.ai\nCreate an API key\nCopy the key (format: v1XDx...)"
      },
      {
        "title": "2. Configure",
        "body": "# Option A: Store in file (recommended)\necho \"YOUR_API_KEY\" > ~/.fathom_api_key\nchmod 600 ~/.fathom_api_key\n\n# Option B: Environment variable\nexport FATHOM_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "3. Test Connection",
        "body": "./scripts/setup.sh"
      },
      {
        "title": "List Recent Calls",
        "body": "./scripts/list-calls.sh                    # Last 10 calls\n./scripts/list-calls.sh --limit 20         # Last 20 calls\n./scripts/list-calls.sh --after 2026-01-01 # Calls after date\n./scripts/list-calls.sh --json             # Raw JSON output"
      },
      {
        "title": "Get Transcript",
        "body": "./scripts/get-transcript.sh 123456789      # By recording ID\n./scripts/get-transcript.sh 123456789 --json\n./scripts/get-transcript.sh 123456789 --text-only"
      },
      {
        "title": "Get Summary",
        "body": "./scripts/get-summary.sh 123456789         # By recording ID\n./scripts/get-summary.sh 123456789 --json"
      },
      {
        "title": "Search Calls",
        "body": "./scripts/search-calls.sh \"product launch\" # Search transcripts\n./scripts/search-calls.sh --speaker \"Lucas\"\n./scripts/search-calls.sh --after 2026-01-01 --before 2026-01-15"
      },
      {
        "title": "API Reference",
        "body": "EndpointMethodDescription/meetingsGETList meetings with filters/recordings/{id}/transcriptGETFull transcript with speakers/recordings/{id}/summaryGETAI summary + action items/webhooksPOSTRegister webhook for auto-sync\n\nBase URL: https://api.fathom.ai/external/v1\nAuth: X-API-Key header"
      },
      {
        "title": "Filters for list-calls",
        "body": "FilterDescriptionExample--limit NNumber of results--limit 20--after DATECalls after date--after 2026-01-01--before DATECalls before date--before 2026-01-15--cursor TOKENPagination cursor--cursor eyJo..."
      },
      {
        "title": "Output Formats",
        "body": "FlagDescription--jsonRaw JSON from API--tableFormatted table (default for lists)--text-onlyPlain text (transcripts only)"
      },
      {
        "title": "Get your last call's summary",
        "body": "# Get latest call ID\nCALL_ID=$(./scripts/list-calls.sh --limit 1 --json | jq -r '.[0].recording_id')\n\n# Get summary\n./scripts/get-summary.sh $CALL_ID"
      },
      {
        "title": "Export all calls from last week",
        "body": "./scripts/list-calls.sh --after $(date -d '7 days ago' +%Y-%m-%d) --json > last_week_calls.json"
      },
      {
        "title": "Find calls mentioning a topic",
        "body": "./scripts/search-calls.sh \"quarterly review\""
      },
      {
        "title": "Troubleshooting",
        "body": "ErrorSolution\"No API key found\"Run setup or set FATHOM_API_KEY\"401 Unauthorized\"Check API key is valid\"429 Rate Limited\"Wait and retry\"Recording not found\"Verify recording ID exists"
      },
      {
        "title": "Webhook Setup (Advanced)",
        "body": "For automatic transcript ingestion, see the webhook setup guide:\n\n./scripts/setup-webhook.sh --url https://your-endpoint.com/webhook\n\nRequires a publicly accessible HTTPS endpoint."
      }
    ],
    "body": "Fathom Skill\n\nConnect to Fathom AI to fetch call recordings, transcripts, and summaries.\n\nSetup\n1. Get Your API Key\nGo to developers.fathom.ai\nCreate an API key\nCopy the key (format: v1XDx...)\n2. Configure\n# Option A: Store in file (recommended)\necho \"YOUR_API_KEY\" > ~/.fathom_api_key\nchmod 600 ~/.fathom_api_key\n\n# Option B: Environment variable\nexport FATHOM_API_KEY=\"YOUR_API_KEY\"\n\n3. Test Connection\n./scripts/setup.sh\n\nCommands\nList Recent Calls\n./scripts/list-calls.sh                    # Last 10 calls\n./scripts/list-calls.sh --limit 20         # Last 20 calls\n./scripts/list-calls.sh --after 2026-01-01 # Calls after date\n./scripts/list-calls.sh --json             # Raw JSON output\n\nGet Transcript\n./scripts/get-transcript.sh 123456789      # By recording ID\n./scripts/get-transcript.sh 123456789 --json\n./scripts/get-transcript.sh 123456789 --text-only\n\nGet Summary\n./scripts/get-summary.sh 123456789         # By recording ID\n./scripts/get-summary.sh 123456789 --json\n\nSearch Calls\n./scripts/search-calls.sh \"product launch\" # Search transcripts\n./scripts/search-calls.sh --speaker \"Lucas\"\n./scripts/search-calls.sh --after 2026-01-01 --before 2026-01-15\n\nAPI Reference\nEndpoint\tMethod\tDescription\n/meetings\tGET\tList meetings with filters\n/recordings/{id}/transcript\tGET\tFull transcript with speakers\n/recordings/{id}/summary\tGET\tAI summary + action items\n/webhooks\tPOST\tRegister webhook for auto-sync\n\nBase URL: https://api.fathom.ai/external/v1\nAuth: X-API-Key header\n\nFilters for list-calls\nFilter\tDescription\tExample\n--limit N\tNumber of results\t--limit 20\n--after DATE\tCalls after date\t--after 2026-01-01\n--before DATE\tCalls before date\t--before 2026-01-15\n--cursor TOKEN\tPagination cursor\t--cursor eyJo...\nOutput Formats\nFlag\tDescription\n--json\tRaw JSON from API\n--table\tFormatted table (default for lists)\n--text-only\tPlain text (transcripts only)\nExamples\nGet your last call's summary\n# Get latest call ID\nCALL_ID=$(./scripts/list-calls.sh --limit 1 --json | jq -r '.[0].recording_id')\n\n# Get summary\n./scripts/get-summary.sh $CALL_ID\n\nExport all calls from last week\n./scripts/list-calls.sh --after $(date -d '7 days ago' +%Y-%m-%d) --json > last_week_calls.json\n\nFind calls mentioning a topic\n./scripts/search-calls.sh \"quarterly review\"\n\nTroubleshooting\nError\tSolution\n\"No API key found\"\tRun setup or set FATHOM_API_KEY\n\"401 Unauthorized\"\tCheck API key is valid\n\"429 Rate Limited\"\tWait and retry\n\"Recording not found\"\tVerify recording ID exists\nWebhook Setup (Advanced)\n\nFor automatic transcript ingestion, see the webhook setup guide:\n\n./scripts/setup-webhook.sh --url https://your-endpoint.com/webhook\n\n\nRequires a publicly accessible HTTPS endpoint."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lucassynnott/fathom",
    "publisherUrl": "https://clawhub.ai/lucassynnott/fathom",
    "owner": "lucassynnott",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fathom",
    "downloadUrl": "https://openagent3.xyz/downloads/fathom",
    "agentUrl": "https://openagent3.xyz/skills/fathom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom/agent.md"
  }
}