DeepSeek Harness plugin

ikanban

Keyboard-oriented iKanban web application bundle for DeepSeek Harness

Jump to install

Source facts

Repository
isomoes/ikanban
Latest update
Aug 22, 2026
Category
Tools & Capabilities
GitHub stars
12
Format
plugin
Package path
packages/ikanban
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
packages/ikanban/package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/isomoes/ikanban/tree/HEAD/packages/ikanban
Plugin: ikanban
Author: isomoes

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

@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.