{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fathom-meetings",
    "name": "Fathom",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lauren-hayes-ai/fathom-meetings",
    "canonicalUrl": "https://clawhub.ai/lauren-hayes-ai/fathom-meetings",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fathom-meetings",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fathom-meetings",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-endpoints.md",
      "scripts/sync-fathom.js"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fathom-meetings"
    },
    "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-meetings",
    "agentPageUrl": "https://openagent3.xyz/skills/fathom-meetings/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom-meetings/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom-meetings/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",
        "body": "Pull meeting recordings, transcripts, summaries, and action items from Fathom AI Notetaker."
      },
      {
        "title": "Setup",
        "body": "Store the API key in ~/.openclaw/secrets/fathom.env:\n\nFATHOM_API_KEY=your-api-key-here\nFATHOM_WEBHOOK_SECRET=your-webhook-secret-here\n\nGet API key from Fathom: Settings → Integrations → API → Generate Key."
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://api.fathom.ai/external/v1\nAuth header: X-Api-Key: <FATHOM_API_KEY>"
      },
      {
        "title": "List Meetings",
        "body": "curl \"https://api.fathom.ai/external/v1/meetings?limit=20\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\"\n\nKey query params:\n\nlimit (1-100, default 10)\ncreated_after / created_before (ISO 8601)\nrecorded_by[] (email filter)\ninclude_transcript=true (include full transcript)\ninclude_action_items=true (include action items)\ninclude_summary=true (include AI summary)\n\nResponse shape:\n\n{\n  \"items\": [{\n    \"title\": \"Meeting Name\",\n    \"meeting_title\": \"Calendar Event Name\",\n    \"url\": \"https://fathom.video/calls/123\",\n    \"share_url\": \"https://fathom.video/share/abc\",\n    \"created_at\": \"2026-02-17T20:00:00Z\",\n    \"scheduled_start_time\": \"...\",\n    \"scheduled_end_time\": \"...\",\n    \"recording_start_time\": \"...\",\n    \"recording_end_time\": \"...\",\n    \"recording_id\": 123,\n    \"transcript\": \"...\",\n    \"default_summary\": \"...\",\n    \"action_items\": [\"...\"],\n    \"calendar_invitees\": [{\"name\": \"...\", \"email\": \"...\", \"is_external\": true}],\n    \"recorded_by\": {\"name\": \"...\", \"email\": \"...\"}\n  }],\n  \"next_cursor\": \"...\"\n}"
      },
      {
        "title": "Pagination",
        "body": "Use next_cursor from response as cursor param in next request."
      },
      {
        "title": "Matching Fathom to Calendar",
        "body": "Match by time overlap (recording_start_time within event window ± 15 min) or by title similarity. The calendar_invitees field shows who was invited; is_external flags non-org attendees."
      },
      {
        "title": "Pull action items from recent calls",
        "body": "source ~/.openclaw/secrets/fathom.env\ncurl -s \"https://api.fathom.ai/external/v1/meetings?include_action_items=true&limit=20\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\""
      },
      {
        "title": "Get full transcript for a specific date range",
        "body": "curl -s \"https://api.fathom.ai/external/v1/meetings?include_transcript=true&created_after=2026-02-17T00:00:00Z&created_before=2026-02-18T00:00:00Z\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\""
      },
      {
        "title": "Filter to external meetings only",
        "body": "After fetching, filter meetings where at least one calendar_invitees entry has is_external: true, or check the calendar_invitees_domains_type field for \"one_or_more_external\"."
      },
      {
        "title": "Sync script (calendar + Fathom → database)",
        "body": "See scripts/sync-fathom.js for a complete local sync script that:\n\nRefreshes Google OAuth token\nPulls Google Calendar events for a date range\nPulls Fathom meetings with action items\nMatches Fathom recordings to calendar events\nUpserts everything to Supabase (or any database)\n\nAdapt the database layer to your needs."
      },
      {
        "title": "Webhooks",
        "body": "Fathom can POST to your endpoint when recordings complete. Verify with FATHOM_WEBHOOK_SECRET. Use this for real-time sync instead of polling."
      },
      {
        "title": "Tips",
        "body": "Action items from Fathom are AI-generated — review for accuracy\nrecorded_by shows who ran the Fathom bot, not necessarily the meeting organizer\nDuplicate recordings happen when multiple team members run Fathom on the same call — deduplicate by matching scheduled_start_time + similar titles\nThe API returns meetings from all team members if using a team API key"
      }
    ],
    "body": "Fathom\n\nPull meeting recordings, transcripts, summaries, and action items from Fathom AI Notetaker.\n\nSetup\n\nStore the API key in ~/.openclaw/secrets/fathom.env:\n\nFATHOM_API_KEY=your-api-key-here\nFATHOM_WEBHOOK_SECRET=your-webhook-secret-here\n\n\nGet API key from Fathom: Settings → Integrations → API → Generate Key.\n\nAPI Reference\n\nBase URL: https://api.fathom.ai/external/v1 Auth header: X-Api-Key: <FATHOM_API_KEY>\n\nList Meetings\ncurl \"https://api.fathom.ai/external/v1/meetings?limit=20\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\"\n\n\nKey query params:\n\nlimit (1-100, default 10)\ncreated_after / created_before (ISO 8601)\nrecorded_by[] (email filter)\ninclude_transcript=true (include full transcript)\ninclude_action_items=true (include action items)\ninclude_summary=true (include AI summary)\n\nResponse shape:\n\n{\n  \"items\": [{\n    \"title\": \"Meeting Name\",\n    \"meeting_title\": \"Calendar Event Name\",\n    \"url\": \"https://fathom.video/calls/123\",\n    \"share_url\": \"https://fathom.video/share/abc\",\n    \"created_at\": \"2026-02-17T20:00:00Z\",\n    \"scheduled_start_time\": \"...\",\n    \"scheduled_end_time\": \"...\",\n    \"recording_start_time\": \"...\",\n    \"recording_end_time\": \"...\",\n    \"recording_id\": 123,\n    \"transcript\": \"...\",\n    \"default_summary\": \"...\",\n    \"action_items\": [\"...\"],\n    \"calendar_invitees\": [{\"name\": \"...\", \"email\": \"...\", \"is_external\": true}],\n    \"recorded_by\": {\"name\": \"...\", \"email\": \"...\"}\n  }],\n  \"next_cursor\": \"...\"\n}\n\nPagination\n\nUse next_cursor from response as cursor param in next request.\n\nMatching Fathom to Calendar\n\nMatch by time overlap (recording_start_time within event window ± 15 min) or by title similarity. The calendar_invitees field shows who was invited; is_external flags non-org attendees.\n\nCommon Workflows\nPull action items from recent calls\nsource ~/.openclaw/secrets/fathom.env\ncurl -s \"https://api.fathom.ai/external/v1/meetings?include_action_items=true&limit=20\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\"\n\nGet full transcript for a specific date range\ncurl -s \"https://api.fathom.ai/external/v1/meetings?include_transcript=true&created_after=2026-02-17T00:00:00Z&created_before=2026-02-18T00:00:00Z\" \\\n  -H \"X-Api-Key: $FATHOM_API_KEY\"\n\nFilter to external meetings only\n\nAfter fetching, filter meetings where at least one calendar_invitees entry has is_external: true, or check the calendar_invitees_domains_type field for \"one_or_more_external\".\n\nSync script (calendar + Fathom → database)\n\nSee scripts/sync-fathom.js for a complete local sync script that:\n\nRefreshes Google OAuth token\nPulls Google Calendar events for a date range\nPulls Fathom meetings with action items\nMatches Fathom recordings to calendar events\nUpserts everything to Supabase (or any database)\n\nAdapt the database layer to your needs.\n\nWebhooks\n\nFathom can POST to your endpoint when recordings complete. Verify with FATHOM_WEBHOOK_SECRET. Use this for real-time sync instead of polling.\n\nTips\nAction items from Fathom are AI-generated — review for accuracy\nrecorded_by shows who ran the Fathom bot, not necessarily the meeting organizer\nDuplicate recordings happen when multiple team members run Fathom on the same call — deduplicate by matching scheduled_start_time + similar titles\nThe API returns meetings from all team members if using a team API key"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lauren-hayes-ai/fathom-meetings",
    "publisherUrl": "https://clawhub.ai/lauren-hayes-ai/fathom-meetings",
    "owner": "lauren-hayes-ai",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fathom-meetings",
    "downloadUrl": "https://openagent3.xyz/downloads/fathom-meetings",
    "agentUrl": "https://openagent3.xyz/skills/fathom-meetings/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fathom-meetings/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fathom-meetings/agent.md"
  }
}