com um clique
meeting-notes
// Format meeting content into structured meeting notes and archive them to a group Yuque knowledge base. For group use — saves to team/group repos. Requires group Token.
// Format meeting content into structured meeting notes and archive them to a group Yuque knowledge base. For group use — saves to team/group repos. Requires group Token.
Collect fleeting ideas and thoughts throughout the day, then periodically organize them into structured thematic notes in your Yuque knowledge base. For personal/individual use.
Analyze documents in your Yuque knowledge base, discover hidden connections between them (similar topics, complementary content), and suggest cross-reference links to build a knowledge network. For personal/individual use.
Extract core insights, golden quotes, and action items from articles, then generate structured reading notes and save them to a specified Yuque knowledge base. For personal/individual use.
Generate summaries of any Yuque document or knowledge base at different granularity levels — one-liner, key points, or detailed summary. For personal/individual use.
Scan a Yuque knowledge base to find stale or potentially outdated documents, analyze their relevance, and generate a maintenance report with update or archive recommendations. For personal/individual use.
Analyze a user's writing style from their Yuque documents — vocabulary habits, sentence patterns, tone characteristics — and generate a style profile that can be used to maintain consistent voice when writing new content. For personal/individual use.
| name | meeting-notes |
| description | Format meeting content into structured meeting notes and archive them to a group Yuque knowledge base. For group use — saves to team/group repos. Requires group Token. |
| license | Apache-2.0 |
| compatibility | Requires yuque-mcp server connected to a Yuque account with group Token (group-level access) |
| metadata | {"author":"chen201724","version":"2.0"} |
Take raw meeting information from the user, format it into a standard meeting notes template, and create a document in the team's Yuque knowledge base.
All tools are from the yuque-mcp server:
yuque_list_books — List group knowledge bases to find the target repoyuque_create_doc — Create the meeting notes documentExtract or ask for the following from the user's input:
| Field | Required | Example |
|---|---|---|
| 会议主题 (Topic) | Yes | "Q1 产品规划评审" |
| 会议日期 (Date) | Yes (default: today) | "2024-01-15" |
| 会议时间 (Time) | No | "14:00-15:30" |
| 参会人员 (Attendees) | Yes | "张三、李四、王五" |
| 主持人 (Host) | No | "张三" |
| 记录人 (Recorder) | No | "AI 助手" |
| 团队标识 (Group login) | Yes | "my-team" |
If the user provides raw/unstructured content, extract these fields from context. If critical fields are missing (topic, attendees), ask the user.
If the user hasn't specified a group login, ask: "请告诉我团队的语雀团队标识(group login),我来把会议纪要存到团队知识库。"
Organize the meeting content into these sections:
For each action item, ensure it has:
Use this template:
# 会议纪要:[会议主题]
| 项目 | 内容 |
|------|------|
| 📅 日期 | YYYY-MM-DD |
| ⏰ 时间 | HH:MM - HH:MM |
| 📍 地点 | [线上/会议室名称] |
| 👥 参会人 | [姓名列表] |
| 🎙️ 主持人 | [姓名] |
| ✍️ 记录人 | [姓名/AI 助手] |
---
## 📋 议题
1. [议题 1]
2. [议题 2]
3. [议题 3]
---
## 💬 讨论要点
### 议题 1:[标题]
- [要点 1]
- [要点 2]
- [要点 3]
### 议题 2:[标题]
- [要点 1]
- [要点 2]
---
## ✅ 决议
1. **[决议 1]**
- 说明:[补充细节]
2. **[决议 2]**
- 说明:[补充细节]
---
## 📌 待办事项
| # | 事项 | 负责人 | 截止日期 | 状态 |
|---|------|--------|----------|------|
| 1 | [具体任务] | [姓名] | YYYY-MM-DD | ⬜ 待开始 |
| 2 | [具体任务] | [姓名] | YYYY-MM-DD | ⬜ 待开始 |
| 3 | [具体任务] | [姓名] | YYYY-MM-DD | ⬜ 待开始 |
---
## 📝 备注
- [其他需要记录的内容]
---
> 本纪要由 AI 助手整理,如有遗漏请补充。
List the team's knowledge bases:
Tool: yuque_list_books
Parameters:
login: "<group_login>"
type: "group"
If the user hasn't specified a repo:
Tool: yuque_create_doc
Parameters:
repo_id: "<namespace>" # e.g., "my-team/meeting-notes"
title: "会议纪要:[主题] - YYYY-MM-DD"
body: "<formatted markdown content>"
format: "markdown"
After creation, respond with:
✅ 会议纪要已创建!
📄 **[会议纪要:主题 - 日期](文档链接)**
📚 已归档到:「团队知识库名称」
### 摘要
- 共讨论 X 个议题
- 形成 X 项决议
- 产生 X 个待办事项
meeting-notes skill in the yuque-personal plugin| Situation | Action |
|---|---|
| User provides very little info | Ask for at least: topic, attendees, key decisions |
yuque_list_books returns empty | Ask user to verify group login and group Token |
yuque_create_doc fails (403) | Tell user they may lack write permission; check group Token scope |
yuque_create_doc fails (other) | Show error, suggest user check yuque-mcp connection |
| No clear action items | Still create the doc, note "本次会议无明确待办事项" |
| Group login not provided | Ask user for the team's group login |
| Team Token not configured | Inform user that group repos require a team-level Token |