work-fathom
Fetch Fathom meeting recordings with AI summaries and action items for a given work day. Usable standalone or as a subagent from work-daily.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch Fathom meeting recordings with AI summaries and action items for a given work day. Usable standalone or as a subagent from work-daily.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate a personal daily work summary. Aggregates calendar meetings, Fathom recordings, GitHub commits and PRs, Jira tickets, Slack highlights, and key emails into one structured digest for any given day.
Fetch Google Calendar events for a given work day. Usable standalone or as a subagent from work-daily.
Fetch GitHub commits and PRs (authored + reviewed) for a given work day. Usable standalone or as a subagent from work-daily.
Fetch key Gmail emails (sent and received important) for a given work day. Usable standalone or as a subagent from work-daily.
Resolve the authenticated user's identity for all work integrations. Reads from info.md when available, resolves remaining fields dynamically, caches results back to info.md. Returns a structured IDENTITY_RESULT block. Usable standalone or called in parallel from work-daily.
Fetch Jira tickets updated on a given work day for the current user in the Guidde Atlassian workspace. Usable standalone or as a subagent from work-daily.
| name | work-fathom |
| description | Fetch Fathom meeting recordings with AI summaries and action items for a given work day. Usable standalone or as a subagent from work-daily. |
| argument-hint | ['today' | 'yesterday' | 'YYYY-MM-DD' | empty → last working day] |
| user-invocable | false |
Fetch Fathom recordings for: $ARGUMENTS
Use the Skill tool to invoke work-date-resolver with args $ARGUMENTS.
Parse DATE from the output (YYYY-MM-DD).
Call mcp__fathom__get_identity to get the authenticated user's email. Then call mcp__fathom__list_meetings filtered to that user's own recordings only.
Pass: created_after: DATE T00:00:00Z, created_before: DATE T23:59:59Z, recorded_by: [user_email], include_summary: true, include_action_items: true.
If the MCP call fails or requires re-authentication, emit:
FATHOM_RESULT
DATE: <DATE>
ERROR: Fathom MCP unavailable — re-run to trigger OAuth if this is first use
And stop.
If the meeting list tool does not return summaries/action items inline, call the per-recording summary and action items tools for each meeting (e.g. get_recording_summary, get_recording_action_items) in parallel.
Emit exactly in this format:
FATHOM_RESULT
DATE: <DATE>
MEETINGS (N):
| Time | Title | Duration | Attendees |
|-------|-------|----------|-----------|
| HH:MM | Title | Xm | name1, name2 |
[For each meeting with a summary or action items:]
---
MEETING: <Title>
URL: <recording_url>
SUMMARY:
<summary content, max 600 chars>
ACTION ITEMS:
- <item> [(<assignee>)]
If no meetings found:
FATHOM_RESULT
DATE: <DATE>
MEETINGS (0):
(none)
Times in HH:MM 24h format. Duration rounded to nearest minute.