ワンクリックで
group-weekly
// Generate group weekly reports from Yuque activity data including document stats and member contributions. For group use — aggregates team-wide documentation activity. Requires group Token with statistic:read permission.
// Generate group weekly reports from Yuque activity data including document stats and member contributions. For group use — aggregates team-wide documentation activity. Requires group Token with statistic:read permission.
Search your personal Yuque knowledge bases with natural language queries and provide summarized answers with key points and source links. For personal/individual use — searches across your own documents.
Generate comprehensive monthly knowledge management reports by analyzing team Yuque activity data including group stats, member contributions, knowledge base health, and document trends. For team use — requires team Token with statistic:read permission.
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.
Automatically compile a team's core Yuque documents into a structured onboarding reading guide for new group members. For group use — scans group knowledge bases and generates a prioritized reading plan. Requires group Token.
Search group Yuque knowledge bases with natural language queries and provide summarized answers with key points and source links. For group use — searches within team/group repositories. Requires group Token.
Generate technical design documents using a standard template and save them to a group Yuque knowledge base. For group use — stores designs in group repos with review workflow. Requires group Token.
| name | group-weekly |
| description | Generate group weekly reports from Yuque activity data including document stats and member contributions. For group use — aggregates team-wide documentation activity. Requires group Token with statistic:read permission. |
| license | Apache-2.0 |
| compatibility | Requires yuque-mcp server. Yuque API Token must be a group Token with `statistic:read` permission for group stats. |
| metadata | {"author":"chen201724","version":"2.0"} |
Collect group activity data from Yuque (document stats, member contributions) and generate a structured weekly report, then save it to Yuque.
All tools are from the yuque-mcp server:
yuque_group_doc_stats — Get document activity stats for a groupyuque_group_member_stats — Get member contribution stats for a groupyuque_list_repos — List repos in the group (for context)yuque_create_doc — Create the weekly report documentAsk the user or determine from context:
my-team) — required for API callsIf the user doesn't specify a group, ask: "请告诉我团队的语雀团队标识(group login),我来生成团队周报。"
Make these API calls in sequence:
Tool: yuque_group_doc_stats
Parameters:
login: "<group_login>"
This returns: new docs created, docs updated, total views, etc.
Tool: yuque_group_member_stats
Parameters:
login: "<group_login>"
This returns: per-member doc count, word count, activity metrics.
Tool: yuque_list_repos
Parameters:
login: "<group_login>"
type: "group"
This provides repo names for richer context in the report.
Calculate and identify:
Use this template:
# 📊 团队知识周报
> **团队**:[团队名称]
> **周期**:YYYY-MM-DD(周一)至 YYYY-MM-DD(周日)
> **生成时间**:YYYY-MM-DD HH:MM
---
## 📈 本周概览
| 指标 | 本周 | 上周 | 变化 |
|------|------|------|------|
| 新建文档 | XX 篇 | - | - |
| 更新文档 | XX 篇 | - | - |
| 总浏览量 | XX 次 | - | - |
| 活跃成员 | XX 人 | - | - |
---
## 📝 文档动态
### 新建文档
| # | 文档标题 | 作者 | 知识库 | 创建时间 |
|---|---------|------|--------|----------|
| 1 | [标题] | [作者] | [库名] | MM-DD |
| 2 | [标题] | [作者] | [库名] | MM-DD |
### 热门更新
| # | 文档标题 | 更新者 | 更新次数 |
|---|---------|--------|----------|
| 1 | [标题] | [作者] | X 次 |
---
## 👥 成员贡献
| 排名 | 成员 | 新建文档 | 更新文档 | 字数贡献 |
|------|------|----------|----------|----------|
| 🥇 | [姓名] | X 篇 | X 篇 | ~X 字 |
| 🥈 | [姓名] | X 篇 | X 篇 | ~X 字 |
| 🥉 | [姓名] | X 篇 | X 篇 | ~X 字 |
---
## 📊 趋势分析
- [对本周数据的简要分析,2-3 句话]
- [与上周对比的变化趋势]
- [值得关注的亮点或问题]
---
## 💡 建议
1. **[建议 1]**:[具体建议内容]
2. **[建议 2]**:[具体建议内容]
---
> 📌 本报告基于语雀团队活动数据自动生成,数据截至 YYYY-MM-DD。
Ask the user which repo to save to, or suggest a "周报" / "团队管理" repo if one exists.
Tool: yuque_create_doc
Parameters:
repo_id: "<namespace>" # e.g., "mygroup/mybook"
title: "团队知识周报 YYYY-MM-DD ~ YYYY-MM-DD"
body: "<formatted report>"
format: "markdown"
✅ 团队周报已生成并保存!
📄 **[团队知识周报 日期范围](文档链接)**
📚 已归档到:「知识库名称」
### 本周亮点
- 共新建 X 篇文档,更新 X 篇
- 最活跃成员:[姓名](X 篇文档)
- [其他亮点]
personal-weekly skill instead| Situation | Action |
|---|---|
yuque_group_doc_stats fails | Inform user, check if group login is correct and group Token is configured |
yuque_group_member_stats fails | Generate report without member breakdown, note the gap |
| Group has no activity this week | Create a brief report noting zero activity, suggest reasons |
| User doesn't know group login | Use yuque_list_repos with their personal login to find groups |
| API returns partial data | Generate report with available data, note what's missing |
| User wants a personal report | Suggest using personal-weekly skill instead |
| Team Token missing statistic:read | Inform user the Token needs statistic:read permission |