DeepSeek Harness 插件

ikanban

Keyboard-oriented iKanban web application bundle for DeepSeek Harness(英文原文)

跳到安装方式

来源信息

GitHub 仓库
isomoes/ikanban
最近更新
2026年8月22日
分类
工具与能力
GitHub stars
12
载体类型
plugin
包路径
packages/ikanban
目录证据
上游声明已找到 dsh.bundle
证据路径
packages/ikanban/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/isomoes/ikanban/tree/HEAD/packages/ikanban
插件名:ikanban
作者:isomoes

检查来源文件

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

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

@isomoes/dsh-ikanban

Keyboard-oriented iKanban web application bundle for DeepSeek Harness.

The host runtime uses the published DSH 0.1.1-rc.1 backends but owns its Web startup and runtime glue. The full browser surface is locally owned as TS/TSX/CSS in the private sibling packages/web-ui package. The public package ships its Vite shell and 35 isolated virtual client bundles, so a DSH profile installs only @isomoes/dsh-ikanban.

Usage

Install the published plugin into an ikanban profile. The dsh plugin command creates the profile if it does not already exist:

dsh plugin --profile ikanban add @isomoes/dsh-ikanban --registry=https://registry.npmjs.org

Run iKanban through that profile:

dsh --profile ikanban

See the project changelog for release history.

Opt-in project MCP

The published package ships iKanban as a read-only Built-in agent preset. It mirrors the Standard preset and adds @isomoes/dsh-ikanban/project-mcp, so it appears in the picker's Built-in group rather than as a user-authored Custom preset. Select it only for trusted projects. The plugin reads .mcp.json from each session's exact working directory; it is intentionally absent from the host capability layer.

Structure

src/
  index.ts       bundle plugin entry
  startup.ts     startup companion entry
  invariant.ts   invariant companion entry
  directory-picker-auto.ts  browser-only picker loader
cordis.patch.yml bundle composition patch
scripts/
  sync-upstream.mjs  explicit maintenance helper for importing stock composition
  watch-client.mjs   tsdown and Vite development watchers
tests/
  upstream-parity.test.mjs  guard owned entries and infrastructure compatibility

Local Development

Prerequisites are Node.js 22.19+ or 24+, pnpm 11.7.0, and the published DSH CLI. Confirm that this repository and the CLI use the intended versions:

node --version
pnpm --version
dsh --version

Install dependencies. The primary development command then builds iKanban, links its checkout into the dedicated ikanban profile, and starts that profile. It is safe to run from a clean DSH home because it creates or refreshes the profile before every launch:

pnpm install
pnpm dev

The DSH plugin command used internally adds only this bundle to the profile and records it as a link: dependency.

To inspect the composition without booting, install or refresh the profile and then dump it. The output must contain an @isomoes/dsh-ikanban bundle layer, with the web-startup and web-runtime rows resolving to this package:

pnpm dev:install
pnpm dev:config

The stock server prints its URL and uses http://127.0.0.1:3080 by default. Pass Web application arguments after the script separator when needed:

pnpm dev -- --port 8080

To make the application available to other devices on the local network, bind all interfaces. The startup output prints a detected LAN URL to open from those devices:

pnpm dev -- --host 0.0.0.0

Binding 0.0.0.0 exposes the DSH session and its enabled tools to reachable network clients. Use it only on a trusted LAN and keep the port protected from the public Internet. The host webserver accepts only 127.0.0.1 and 0.0.0.0; clients connect to the machine's LAN address, not to 0.0.0.0.

Edit Cycle

The profile links this checkout, but DSH runs built lib/ files. Changes to host entries under packages/ikanban/src, build scripts, dependencies, or the composition require rebuilding and restarting the running process:

pnpm build
# Stop the existing pnpm dev process, then:
pnpm dev

cordis.patch.yml is owned by the iKanban fork and is never regenerated during a build. Edit and review it directly. It replaces startup, runtime, directory picker, and every browser UI row while retaining published transport and backend rows. scripts/sync-upstream.mjs is only an explicit maintenance helper for a deliberate upstream re-import; running it overwrites the owned composition and requires review.

packages/web-ui is the editable browser fork. Client plugin code under its src/client and src/extensions paths is built by tsdown as isolated virtual packages. During pnpm dev, a successful plugin build is copied to this package's lib/clients/<id> path; DSH detects that bundle write and emits HMR for @isomoes/dsh-ikanban/client/<id> only.

The Vite app context lives at the web-ui package root. Shared browser platform code lives under src/client, including web, ui-renderer, ui-slots, ui-primitives, dynamic ui-attachment, ui-reference, and the settings schema service. Vite rebuilds this code into the local dist and copies it to lib/web; reload the browser after a shell build. A production pnpm build always rebuilds both artifact families.

Upstream refreshes are explicit reviewed merges, never an automatic build step. The pinned commit and imported path inventory are recorded in [packages/web-ui/UPSTREAM.md](../web-ui/UPSTREAM.md).

Checks

Run the local checks before packing or publishing:

pnpm test
pnpm typecheck
pnpm --filter @isomoes/dsh-ikanban pack

Remove the development profile dependency when it is no longer needed:

pnpm dev:remove

The published bundle uses the browser directory picker and has no native koffi install script to approve in consumer profiles.