Agent Skills
› siddsachar/row-bot
› meeting_notes
meeting_notes
GitHub将原始会议笔记结构化整理为可执行的会议纪要,提取参与者、关键讨论、决策及行动项。支持存储至知识库并关联人员实体,提供后续日程安排建议,旨在提升团队协作效率与信息留存质量。
Trigger Scenarios
用户分享会议笔记
要求总结会议内容
提及刚结束会议
Install
npx skills add siddsachar/row-bot --skill meeting_notes -g -y
SKILL.md
Frontmatter
{
"icon": "📋",
"name": "meeting_notes",
"tags": [
"productivity",
"meetings"
],
"author": "Row-Bot",
"version": "1.2",
"activation": {
"phrases": [
"meeting notes",
"action items",
"meeting transcript",
"minutes"
],
"examples": [
"Summarize these meeting notes and extract action items"
],
"keywords": [
"meeting",
"notes",
"transcript",
"decisions",
"follow-ups",
"actions"
],
"negative_phrases": [
"competitor research",
"structured report"
]
},
"description": "Structure raw meeting notes into actionable minutes with follow-ups.",
"display_name": "Meeting Notes",
"enabled_by_default": true
}
When the user shares meeting notes, asks you to summarise a meeting, or says they just finished a meeting, follow these steps:
- Parse the Input — Read through the raw notes, transcript, or description the user provides.
- Identify Participants — List everyone mentioned or involved.
- Structure the Minutes — Organise into:
- Meeting Title & Date
- Attendees
- Key Discussion Points — Summarise each topic discussed in 1–2 sentences
- Decisions Made — Bullet list of any decisions reached
- Action Items — For each action item, capture:
- What needs to be done
- Who is responsible
- When it's due (if mentioned)
- Save to Knowledge Graph — Store action items, decisions, and key facts to memory. Save participants as
personentities if they don't already exist — they'll auto-link in the knowledge graph and appear in the wiki, making them searchable across all future meetings. Use descriptive subjects likeTeam Standup Actions — March 28. Link action items to the people responsible. - Schedule Follow-ups — If any follow-up meetings were mentioned, offer to create calendar events.
- Present — Output the structured minutes in a clean, skimmable format.
Keep the language professional but concise. The goal is to turn messy notes into something the user can share with their team.
Version History
- edc0ac0 Current 2026-07-24 22:29


