2e14873f2d
Track application source and tests; exclude local env, user workspaces, and runtime data via .gitignore. Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
927 B
Markdown
44 lines
927 B
Markdown
---
|
|
name: kanban
|
|
description: 看板可视化技能:将任务列表渲染为多列看板(需启用 kanban 扩展)
|
|
---
|
|
|
|
# 看板展示
|
|
|
|
使用 `kanban` MCP 扩展在聊天中渲染任务看板。
|
|
|
|
## 何时使用
|
|
|
|
- 用户要查看项目进度、任务分布
|
|
- 展示待办/进行中/已完成三阶段状态
|
|
- 多个任务需要按优先级可视化
|
|
|
|
## 前提
|
|
|
|
Settings → Extensions 中启用 **Kanban Board** 扩展。
|
|
|
|
## 工具
|
|
|
|
`show_kanban(title, columns)` — 渲染 N 列看板
|
|
|
|
## 数据结构
|
|
|
|
```
|
|
columns: [
|
|
{ name: "待处理", cards: [
|
|
{ id: "1", title: "修复登录 bug", priority: "high", description: "..." }
|
|
]},
|
|
{ name: "进行中", cards: [...] },
|
|
{ name: "已完成", cards: [...] }
|
|
]
|
|
```
|
|
|
|
## 优先级
|
|
|
|
`high`(红)/ `medium`(黄)/ `low`(灰)
|
|
|
|
## 规则
|
|
|
|
1. 列数不限,但超过 5 列会很挤,建议合并
|
|
2. 每列卡片不超过 20 张,否则截断并说明总数
|