chore: sync before memory update

This commit is contained in:
SkyJourney
2026-05-01 12:04:12 +08:00
parent 1b3ae007ee
commit 0c46ed0306
22 changed files with 1850 additions and 20 deletions
@@ -0,0 +1,51 @@
# 任务看板(+board
## 查看我的任务
```
Step 1: mcp__huanxi__task_list_mine()
→ 返回我认领的所有任务(跨模块)
Step 2: 按状态分组展示:
────────────────────────────────────
📋 待处理(todo)
· [前端开发] 完成登录页面 UI 优化 ← 截止: 04-15
· [后端API] 接口文档更新 ← 无截止日
🔄 进行中(in_progress
· [前端开发] 接口联调 60% ← 截止: 04-20
✅ 已完成(done)
· [前端开发] 初始化项目结构 100%
────────────────────────────────────
```
## 查看模块看板
```
Step 1: 确认模块(从 modules.json 缓存解析)
Step 2: mcp__huanxi__task_list_by_module(module_id)
→ 返回该模块所有任务(含其他成员的任务)
Step 3: 按状态分组展示,标注每个任务的执行人
```
## 人员任务看板(管理视角)
```
Step 1: mcp__huanxi__people_get_board()
→ 返回团队所有成员的任务分布(数量统计)
Step 2: 展示每人的任务负载情况(适合分配任务前参考)
```
---
## 快速过滤
用户常见需求:
| 场景 | 做法 |
|------|------|
| "我今天要做什么" | task_list_mine() → 过滤 status=in_progress + 截止日临近 |
| "某个模块的任务" | task_list_by_module(module_id) |
| "即将到期的任务" | task_list_mine() → 筛选 due_date ≤ 今日+3天 |
| "团队任务分布" | people_get_board() |