DeepSeek Harness 插件

dsh-kanban-ericwong

Task board plugin for the DeepSeek Harness Web UI(英文原文)

跳到安装方式

来源信息

GitHub 仓库
Ericwong5021/dsh-kanban
最近更新
2026年8月13日
分类
界面增强
GitHub stars
3
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/Ericwong5021/dsh-kanban
插件名:dsh-kanban-ericwong
作者:Ericwong5021

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-kanban

dsh-kanban is a kanban board plugin for the DeepSeek Harness Web UI.

It gives Harness sessions a dedicated workspace for planning and triage. Open the board from the sidebar, search across sessions, drag idle tasks between workflow columns, and open any card in its original Harness conversation.

What it does

  • Organizes sessions into Inbox, Ready, Running, Blocked, and Done.
  • Derives Running, Blocked, and Done from the live session state.
  • Lets you manually place idle sessions in Inbox or Ready.
  • Keeps manual column placement in browser local storage.
  • Opens the board at /kanban and restores the previous conversation when you leave it.
  • Creates a new Harness task from a selected workspace, title, and prompt.
  • Keeps running sessions and sessions waiting for input locked in place.
  • Uses the Harness runtime and sidebar injection points instead of replacing the host application.

Install

Install from a Git checkout or a published package through the dsh CLI:

dsh plugin --profile <profile> add https://github.com/Ericwong5021/dsh-kanban

To install a release archive directly:

dsh plugin --profile <profile> add https://github.com/Ericwong5021/dsh-kanban/releases/latest/download/dsh-kanban-0.1.1.tgz

Start the profile, then select 任务看板 in the Harness sidebar footer.

The plugin targets the Harness Web UI and requires the runtime and UI packages declared in package.json.

Workflow

The board is a view over real Harness sessions. Selecting a card returns you to that session; it does not create a duplicate conversation.

Automatic state takes precedence while a session is running, waiting for interaction, or completed. Only idle sessions can be moved manually. Creating a task connects it to the selected workspace, creates a session, and sends the prompt through the Harness runtime.

Package layout

The package follows the Harness plugin bundle layout:

  • cordis.patch.yml describes the server-side bundle patch.
  • src/client/index.ts registers the sidebar injection and exposes the client entry point.
  • src/client/Kanban.tsx contains the board and task creation flow.
  • src/client/Kanban.module.css contains the scoped board styles.
  • lib/client.js is the loader-compatible browser bundle generated by the build.
  • lib/index.js is the Node plugin bundle generated by the build.

The package metadata declares the bundle patch under dsh.bundle.patch and the Web client injection under dsh.client.

Development

The development dependencies use published DeepSeek Harness package versions. Install dependencies and build the package with:

pnpm install
pnpm build
pnpm pack:check

pnpm build emits declarations under lib/types and bundles the Node and browser plugin entries under lib.

License

MIT