Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

meeting-notetaker会议记录员

Agent Skill

meeting-notetaker 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,376

周安装

101

GitHub Stars

公开资料未说明

下载量

832
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:meeting-notetaker(会议记录员)
来源仓库:https://github.com/netanel-abergel/meeting-notetaker
安装命令:
openclaw skills install meeting-notetaker
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install meeting-notetaker

简介

会议记录员从 monday.com Notetaker 获取会议资料与下次会议信息。

  • 提供背景准备材料与历史记录汇总。meeting-notetaker 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适合集成第三方项目管理工具的场景。
  • 安装命令:openclaw skills install meeting-notetaker。
  • 需验证 API 密钥配置与数据同步频率。

SKILL.md

name
meeting-notetaker
version
1.0.0
description
Fetch and present meeting notes from monday.com Notetaker, or show the next upcoming meeting with full context prep. Use when: asked to summarize a meeting, find notes from a meeting with a specific person, retrieve past meeting summaries, or asked about the next meeting. Trigger phrases: 'meeting notes', 'notes from meeting with X', 'last meeting with', 'summarize meeting', 'next meeting', 'what is my next meeting'.

Meeting Notetaker Skill

Load Local Context

CONTEXT_FILE="/opt/ocana/openclaw/workspace/skills/meeting-notetaker/.context"
[ -f "$CONTEXT_FILE" ] && source "$CONTEXT_FILE"
# Then use: $OWNER_EMAIL, $CALENDAR_ID, $GOG_CREDS, etc.

Scope

This skill covers monday.com Notetaker meetings only. It does NOT fetch Zoom, Fathom, Fireflies, or other external recording services.


Trigger Phrases

  • "meeting notes"
  • "notes from meeting with X"
  • "last meeting with X"
  • "what happened in the meeting with X"
  • "summarize meeting"
  • "meeting summary"
  • "next meeting"
  • "what is my next meeting"
  • "what do I have next"

Step 1 — Parse the Request

Determine search mode:

InputMode
"last meeting"Most Recent — no filter
"meeting with [Name]"Person Search — use name as search term
"meeting about [Topic]"Topic Search — use topic as search term
Specific date givenDate Search — filter by date after fetching
"next meeting"Next Meeting Mode — see Step 1a below

Step 1a — Next Meeting Mode

When triggered by "next meeting" or similar:

  1. Fetch calendar using direct Google Calendar API (NOT gog CLI — broken on server). Use credentials from /opt/ocana/openclaw/.gog/credentials.json account owner. See owner-briefing skill for the full auth flow.
  2. Find the next upcoming event — first event that starts after now
  3. Extract participants from the calendar event (attendees list)
  4. Search notetaker for past meetings with the same participants or title keywords:
   get_notetaker_meetings(search="[participant name or meeting title keyword]", include_summary=true, include_action_items=true, include_topics=true, limit=3)
  1. Format as Next Meeting Prep (see format below)

Next Meeting Prep Format

📅 Your next meeting:
[Meeting Title]
🕐 [Time] ([X minutes from now])
👥 [Participants]

🎯 Prep:
No history found with [Name] / OR:

Last meeting with [Name] ([date]):
• [Summary bullet 1]
• [Summary bullet 2]
• [Summary bullet 3]

✅ Open action items:
• [Action] — [Owner]

If no past meetings found with the participants → skip the prep section and just show the meeting details. If no upcoming meetings today → report "No more meetings today".


Step 2 — Fetch Meetings

Use the get_notetaker_meetings MCP tool with these flags:

get_notetaker_meetings(
  include_summary=true,
  include_action_items=true,
  include_topics=true,
  search="<name or topic if provided>",  # omit for "last meeting"
  limit=5  # fetch a few to find the best match
)
  • For Most Recent: fetch with no search param, limit=1
  • For Person/Topic Search: use the extracted name/topic as the search param
  • For Date Search: fetch recent meetings and filter by date in output

Step 3 — Select the Best Match

If multiple meetings returned:

  1. Prefer the most recent one that matches the search intent
  2. If ambiguous (multiple meetings with same person), present a short list and ask which one
  3. If zero results → report "No monday.com notetaker meetings found for [X]"

Step 4 — Format the Output

📋 [Meeting Title]
📅 [Date] | [Duration if available]
👥 Participants: [Name1, Name2, ...]

Summary:
• [Point 1]
• [Point 2]
• [Point 3]
(up to 5 bullets — condense if longer)

💬 Topics Discussed:
• [Topic 1]
• [Topic 2]

✅ Action Items:
• [Action] — [Owner] (due: [Date if available])
• [Action] — [Owner]

If any section has no data, omit it (don't show empty headers).

Example Output

📋 Product Roadmap Review
📅 March 28, 2026 | 60 min
👥 Participants: Netanel Abergel, Daniel K., Omri S.

Summary:
• Discussed Q2 priorities — AI features take top slot
• Agreed to delay the legacy migration to Q3
• Budget for external design resources approved
• Next milestone: beta release by May 15

💬 Topics Discussed:
• Q2 roadmap priorities
• Legacy migration timeline
• Design budget

✅ Action Items:
• Update roadmap doc with Q2 decisions — Netanel (due: April 2)
• Send design brief to freelancers — Omri (due: April 5)

Step 5 — Offer to Create Action Items (Optional)

If action items were found, add at the end:

Want me to add these action items to your monday.com board?

If owner says yes:

  • Use monday-api-mcp__create_item to create items on the relevant board
  • Set owner and due date columns from the action item data
  • Confirm creation with item names

Error Handling

SituationResponse
No meetings found"No monday.com notetaker meetings found for [X]"
Search returns ambiguous resultsList top 3 options with dates, ask which one
Meeting found but no summary/topicsShow what's available, note "Summary not available for this meeting"
Tool errorReport as BLOCKED: "Could not fetch meeting notes — notetaker service unavailable"

Notes

  • Language: Respond in the same language the request was made in (Hebrew → Hebrew, English → English)
  • Recency: Always prefer the most recent matching meeting unless owner specifies otherwise
  • Access: Uses access: "OWN" by default — fetches owner's own meetings. Use access: "ALL" only if owner asks about a meeting they weren't in.
  • No transcript by default: Don't fetch the full transcript unless explicitly asked (large payload, high token cost)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.85%
按下载量换算797

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills