前言¶
DSH 强调通过插件扩展工作流。dsh-kanban 对应的是任务看板这一类扩展:在 DeepSeek Harness 里提供一块 Board,让用户和 AI agent 共同规划、组织、推进工作,不离开当前环境。
常见做法是把 agent 生成的计划复制到外部项目工具里,但这样做会多一次同步:用户手动改卡片、优先级或列表后,agent 未必能立刻看到最新状态。dsh-kanban 的目标是把 board 放进 DSH,让会话和任务状态在同一个界面上对齐。
这是什么¶
alpacachen/dsh-kanban 是一个 DeepSeek Harness 插件,包名为 @alpacachen/dsh-kanban,许可证为 MIT。
它在 DSH 中提供 Board 标签,支持用户和 AI agent 共同维护任务卡片、列表、标签和优先级。插件为预构建安装,README 表示 no frontend setup required。package.json 声明 peerDependencies 需要 react 和 react-dom ^18.2.0。
核心功能¶
看板操作¶
- 创建、编辑、删除和拖拽卡片
- 跨列表移动卡片
- 添加笔记、标签和
P0 / P1 / P2优先级 - 创建、重命名、重排和删除 workflow lists
- 创建
color-coded labels,并按优先级过滤整个 board
用户与 agent 共享状态¶
- 用户和 agent 共享同一任务与状态
- 查看卡片活动 timeline,包括变更时间、变更内容,以及由用户或 agent 发起
- 支持将任意卡片发送到当前会话或新会话中的 agent
- 每个 DSH workspace 拥有独立 board
- 支持
per-workspace isolation和disk persistence - 跟随 DSH 语言、主题和
dark mode
供 agent 使用的内置工具¶
插件提供 14 个内置 kanban_* 工具,覆盖 board、卡片、列表和标签相关操作,供 agent 在会话中继续推进任务。
安装与启用¶
1、安装插件:
dsh plugin --profile web add @alpacachen/dsh-kanban
2、重启 dsh web,让插件 bundle 被加载。
3、确认安装:
dsh --profile web --dump-config
在输出中查找 dsh-kanban layer。
典型用法¶
打开 Board¶
进入任意 DSH workspace,在 conversation views 旁边选择 Board tab。
新 board 默认包含:
Todo → In Progress → Review → Done
让 agent 拆分任务¶
可以在会话中要求 agent 规划任务,例如:
Break the authentication feature into implementation tasks, create one card per step, and mark the security review as P0
卡片会出现在 board 上。用户也可以继续在会话中推进,或切换到 Board tab 手动调整卡片、列表和优先级。
从卡片继续对话¶
打开一张卡片,选择 Chat with agent。卡片 ID、标题、label 和 notes 会作为可编辑草稿进入当前或新会话。内容不会在用户选择发送前自动发送。
其他可复现示例¶
Summarize what is currently in progress
Move ‘Fix login redirect’ to In Progress and set it to P0
Add a Blocked list after In Progress
Create a red Urgent label and apply it to the release card
适用场景与注意¶
适合以下场景:
- 在 DSH 中把会话里的计划拆成任务卡片
- 让用户手动拖拽卡片、改优先级、整理列表,同时让 agent 基于同一 board 继续工作
- 在不同 DSH workspace 中维护彼此独立的 board
- 需要查看卡片变更时间、变更内容以及操作来源
安装前需要注意:
- 插件以当前
dsh进程权限运行 - 安装前应检查源码与许可证
- 许可证为 MIT
- 插件为预构建安装,README 表示
no frontend setup required package.json声明peerDependencies需要react和react-dom^18.2.0
社区目录是独立站点,与 DeepSeek / 幻方无官方从属关系。
链接¶
- GitHub:https://github.com/alpacachen/dsh-kanban
- 目录页:https://www.skillhub.cn/plugins/alpacachen/dsh-kanban