int-fathom

GitHub

用于检索和总结Fathom会议录音、转录稿、摘要及行动项。支持按日期、团队等筛选,提供晨会回顾、跟进准备等工作流,适用于会议记录查询与分析场景。

.claude/skills/int-fathom/SKILL.md evolution-foundation/evo-nexus

Trigger Scenarios

用户提及会议、通话、录音或笔记 询问讨论内容、参与者或后续步骤 需要获取特定会议的摘要或转录

Install

npx skills add evolution-foundation/evo-nexus --skill int-fathom -g -y
More Options

Non-standard path

npx skills add https://github.com/evolution-foundation/evo-nexus/tree/main/.claude/skills/int-fathom -g -y

Use without installing

npx skills use evolution-foundation/evo-nexus@int-fathom

指定 Agent (Claude Code)

npx skills add evolution-foundation/evo-nexus --skill int-fathom -a claude-code -g -y

安装 repo 全部 skill

npx skills add evolution-foundation/evo-nexus --all -g -y

预览 repo 内 skill

npx skills add evolution-foundation/evo-nexus --list

SKILL.md

Frontmatter
{
    "name": "int-fathom",
    "homepage": "https:\/\/fathom.video",
    "metadata": {
        "clawdis": {
            "emoji": "🎙️",
            "requires": {
                "config": [
                    "skills.entries.fathom.apiKey"
                ]
            }
        }
    },
    "description": "Search, retrieve, and summarize Fathom meeting recordings — transcripts, summaries, action items, and team info. Use this skill whenever the user mentions meetings, calls, recordings, meeting notes, transcripts, action items, follow-ups from calls, or anything related to Fathom. Also trigger on \"o que foi discutido na reuniao\", \"resumo da call\", \"quem participou\", \"proximos passos da reuniao\", \"meeting recap\", or any reference to past conversations\/calls that might be recorded."
}

Fathom

Retrieve meeting recordings, transcripts, summaries, and action items from Fathom.

Setup

The skill needs a Fathom API key configured in openclaw.json under skills.entries.fathom:

{
  "skills": {
    "entries": {
      "fathom": {
        "apiKey": "your-fathom-api-key",
        "env": {
          "FATHOM_API_KEY": "your-fathom-api-key"
        }
      }
    }
  }
}

The API key is available at https://fathom.video/settings/api (requires Fathom Team or Enterprise plan).

Quick Commands

# List recent meetings
{baseDir}/scripts/fathom.sh meetings

# List meetings with summaries included
{baseDir}/scripts/fathom.sh meetings --include-summary

# List meetings with action items
{baseDir}/scripts/fathom.sh meetings --include-actions

# List meetings with full transcript
{baseDir}/scripts/fathom.sh meetings --include-transcript

# Filter by date range
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01" --before "2026-03-11"

# Filter by participant domain (e.g. external meetings only)
{baseDir}/scripts/fathom.sh meetings --domains-type one_or_more_external

# Filter by recorder email
{baseDir}/scripts/fathom.sh meetings --recorded-by "alice@company.com"

# Filter by team
{baseDir}/scripts/fathom.sh meetings --team "Engineering"

# Get summary for a specific recording
{baseDir}/scripts/fathom.sh summary <recording_id>

# Get transcript for a specific recording
{baseDir}/scripts/fathom.sh transcript <recording_id>

# List teams
{baseDir}/scripts/fathom.sh teams

# List team members (optionally filter by team)
{baseDir}/scripts/fathom.sh members [--team "TeamName"]

Common Workflows

Morning meeting recap

# Get yesterday's meetings with summaries and action items
{baseDir}/scripts/fathom.sh meetings --after "$(date -d 'yesterday' +%Y-%m-%d)" --include-summary --include-actions

Prepare for a follow-up

# Find meetings with a specific company/domain
{baseDir}/scripts/fathom.sh meetings --domains "acme.com" --include-summary --include-actions

Review full conversation

# First find the meeting
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01"
# Then get the full transcript
{baseDir}/scripts/fathom.sh transcript 123456789

Weekly team digest

# All meetings from the past week with summaries
{baseDir}/scripts/fathom.sh meetings --after "$(date -d '7 days ago' +%Y-%m-%d)" --include-summary --include-actions

Presenting Results

When presenting meeting data to the user, follow these guidelines:

  • Summaries: Show the markdown-formatted summary directly. It's already well-structured.
  • Action items: Present as a checklist with assignee, description, and link to the recording timestamp.
  • Transcripts: Don't dump the full transcript unless asked. Instead, summarize key points or search for specific topics the user asked about.
  • Meeting list: Show title, date, participants, and recording link. Keep it scannable.
  • Links: Always include the Fathom recording URL so the user can watch the replay.

Response Format

The API returns JSON. Key fields per meeting:

  • title / meeting_title — meeting name
  • recording_id — unique ID (used to fetch summary/transcript)
  • url — direct link to recording in Fathom
  • share_url — shareable link
  • created_at, scheduled_start_time, recording_start_time — timestamps
  • calendar_invitees — list of participants with name, email, and whether external
  • recorded_by — who recorded the meeting
  • default_summary.markdown_formatted — the AI-generated summary (when include_summary=true)
  • action_items — list with description, assignee, completion status, and recording timestamp link
  • transcript — array of {speaker, text, timestamp} entries

Pagination

The meetings endpoint uses cursor-based pagination. The script handles this automatically when you pass --all to fetch every page. Without --all, it returns the first page only (default limit from API).

Notes

  • Base URL: https://api.fathom.ai/external/v1
  • Auth: X-Api-Key header
  • Rate limited (429 responses) — the script retries with backoff
  • Transcript inclusion in list endpoint may be restricted for OAuth apps; use the dedicated /recordings/{id}/transcript endpoint instead
  • Dates should be ISO 8601 format (e.g. 2026-03-11T00:00:00Z or just 2026-03-11)

Version History

  • 7f5dd76 Current 2026-07-25 04:55

Same Skill Collection

.claude/skills/create-agent/SKILL.md
.claude/skills/create-command/SKILL.md
.claude/skills/create-goal/SKILL.md
.claude/skills/create-heartbeat/SKILL.md
.claude/skills/create-integration/SKILL.md
.claude/skills/create-routine/SKILL.md
.claude/skills/create-ticket/SKILL.md
.claude/skills/cs-ticket-triage/SKILL.md
.claude/skills/data-build-dashboard/SKILL.md
.claude/skills/data-create-viz/SKILL.md
.claude/skills/data-explore/SKILL.md
.claude/skills/data-statistical-analysis/SKILL.md
.claude/skills/data-validate/SKILL.md
.claude/skills/db-mongo/SKILL.md
.claude/skills/db-mysql/SKILL.md
.claude/skills/db-postgres/SKILL.md
.claude/skills/db-redis/SKILL.md
.claude/skills/dev-ai-slop-cleaner/SKILL.md
.claude/skills/dev-ask/SKILL.md
.claude/skills/dev-autopilot/SKILL.md
.claude/skills/dev-cancel/SKILL.md
.claude/skills/dev-ccg/SKILL.md
.claude/skills/dev-configure-notifications/SKILL.md
.claude/skills/dev-deep-dive/SKILL.md
.claude/skills/dev-deep-interview/SKILL.md
.claude/skills/dev-deepinit/SKILL.md
.claude/skills/dev-external-context/SKILL.md
.claude/skills/dev-learner/SKILL.md
.claude/skills/dev-mcp-setup/SKILL.md
.claude/skills/dev-plan/SKILL.md
.claude/skills/dev-project-session-manager/SKILL.md
.claude/skills/dev-ralph/SKILL.md
.claude/skills/dev-ralplan/SKILL.md
.claude/skills/dev-release/SKILL.md
.claude/skills/dev-remember/SKILL.md
.claude/skills/dev-sciomc/SKILL.md
.claude/skills/dev-skillify/SKILL.md
.claude/skills/dev-team/SKILL.md
.claude/skills/dev-trace/SKILL.md
.claude/skills/dev-ultraqa/SKILL.md
.claude/skills/dev-verify/SKILL.md
.claude/skills/dev-visual-verdict/SKILL.md
.claude/skills/discord-create-channel/SKILL.md
.claude/skills/discord-get-messages/SKILL.md
.claude/skills/discord-list-channels/SKILL.md
.claude/skills/discord-manage-channel/SKILL.md
.claude/skills/discord-send-message/SKILL.md
.claude/skills/fin-audit-support/SKILL.md
.claude/skills/fin-close-management/SKILL.md
.claude/skills/fin-daily-pulse/SKILL.md

Metadata

Files
0
Version
7f5dd76
Hash
e6e198f2
Indexed
2026-07-25 04:55

ホーム - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-22 05:03
浙ICP备14020137号-1 $お客様$