Agent-driven kanban board: one board per workspace, per-task agent sessions, and a guarded human/agent workflow (Backlog → To Do → In Progress → Review → Done).
Install
# from npm (prebuilt)
dsh plugin --profile web add dsh-kanban-flow
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:thomasvvugt/dsh-kanban-flow
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time — pnpm blocks those until you allow them, so an install can stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED or ERR_PNPM_IGNORED_BUILDS; dsh prints the exact key to add under allowBuilds in your profile’s pnpm-workspace.yaml, and the install works on the next run. Allowing a build is a trust decision: only install sources you trust, and pin a commit (github:owner/repo#sha).
README
Agent-driven kanban boards for DeepSeek Harness — one board per workspace, one task session per item.
You triage. The agent picks up, works, narrates every step in its own task session, and asks for review when it needs you. The board enforces the workflow — not vibes: agents can't grab unassigned work, can't skip your review, and can't close items behind your back.
Partially based on the dsh-kanban plugin architecture, rebuilt around a multica-style human/agent workflow.
Quick start
# from npm — prebuilt, no build-approval step
dsh plugin --profile web add dsh-kanban-flow
# or straight from GitHub
dsh plugin --profile web add github:thomasvvugt/dsh-kanban-flow
Restart dsh web afterwards. Confirm with dsh --profile web --dump-config (look for the dsh-kanban-flow layer). A kanban icon appears next to every workspace in the sidebar — click it to open that workspace's board.
The workflow
Columns are fixed: Backlog → To Do → In Progress → Review → Done
| Who | Move | Meaning |
|---|---|---|
| Human | Backlog → To Do | Hand the item to the agent (the only pickup trigger) |
| Agent | To Do → In Progress | Confirm pickup, start work |
| Agent | In Progress → Review | Needs a human (comment with the question is mandatory) |
| Agent | Review → In Progress | Resume straight after human feedback |
| Agent | Done → In Progress | Reopen when the human replies on a finished item |
| Agent | In Progress → Done | Self-evaluated completion — only when confirmation is OFF |
| Human | Review → Done / In Progress | Accept / rework |
The host plugin enforces all of this in the kanbanflow_move_item tool — agents never move items into To Do, never complete from Review, and illegal moves are rejected with an explanation.
Commenting on an item while it is in Review (on the card or in the item's task session) sends the agent back to work: it acknowledges, moves the item Review → In Progress and addresses the feedback in the same turn.
Highlights
Boards live where your work lives
- One board per workspace, opened in-app on the conversation's Board tab — no popups
- A kanban icon next to every workspace in the sidebar; workspace clicks open boards (toggleable back to session expansion in Settings → Plugins → Kanban Flow)
- Board views poll every 3s, so agent moves appear on the board while you watch
One agent session per item
- Pickup creates a task session named
CODE-12 · Item name— click a card to jump straight into it - Progress narration lives in that session; each card shows a compact latest-activity line ("harness moved to Done · 3 seconds ago")
- Session-less workspaces aren't left out: their board pins into the current conversation's Board tab (header shows the board's code and workspace) and goes native once that workspace gets its own conversation
Yours to tune
- Board code per workspace (2–6 chars): item ids like
API-3,DKF-17; existing ids stay stable when you change it - Require confirmation to complete work (per board, gear menu): when on, the agent can never reach Done — you complete by dragging Review → Done
- Items carry id, name and description; deleting an item archives its task session
Looks at home in DSH
- Light & dark via DSH design tokens, with
light-dark()column accents: slate/blue/violet/amber/emerald - Animated create/move/comment, drag lift with column highlight, agent-changed cards pulse — all respecting
prefers-reduced-motion - English end-to-end
Agent tools
kanbanflow_get · kanbanflow_get_item · kanbanflow_create_item · kanbanflow_update_item ·
kanbanflow_move_item · kanbanflow_delete_item · kanbanflow_set_code
Storage & trust
- One JSON file per workspace:
<workspace>/.dsh-kanban-flow.json— schema-versioned, migrated automatically, corrupt files backed up before being reset. Your board data never leaves the workspace. - Ships prebuilt: no install-time scripts, no build step on install, and the only network call the client makes is to the plugin's own same-origin
/api/kanban-flowroute.
Development
npm install
npm test # vitest unit tests (state machine, ids, links, migrations)
npm run typecheck
npm run build # rebuild lib/client.js (committed) via esbuild
CI runs tests, typecheck and build on every push; tagging a version (v*) publishes it to npm.
Notes
- Built against DSH 0.1.1-rc.2. The sidebar icon and workspace-click behavior anchor on its sidebar markup (no per-row slot exists yet); they degrade to native behavior if the markup changes, and icons only appear in the expanded sidebar.
Credits & license
- Architecture partially based on dsh-kanban by its author — thank you.
- MIT — see LICENSE.
Links
More in this category
Q00/ouroboros#integrations/dsh-plugin★ 5734
Config-only bundle that mounts Ouroboros through the DSH MCP client, exposing 36 interview, Seed, execution, evaluation, and evolution workflow tools in DSH.
chuspeeism/dashi-taskboard#deepseek-harness★ 2814
Embeds the active installed Codex Taskboard runtime in the DeepSeek Harness sidebar, using its launcher runtime descriptor instead of a fixed port.
NanmiCoder/dsh-agent-teams★ 1222
AgentTeams multi-agent teams.
tong-io/tongflow#dsh-tongflow★ 1003
TongFlow film-crew studio for image, voice, music and video production: the agent writes per-asset TongFlow workflow files (.tongflow.json) that run through TongFlow plugins, with an embedded workflow canvas, a shot/character/take project layout and a manga-drama template; sessions starting with @tongflow open the Studio view.
sandbaseai/sandbase-harness★ 641
Connects dsh to a local SandBase Harness runtime over stdio MCP for managing agents and sessions, streaming turns, inspecting artifacts and cancelling work.
EthanYoQ/AI-Novel-Writer#dsh-ai-novel-writer★ 512
Installs a dedicated AI novel-writing preset and workbench: revisioned local project assets, a compact side drawer, and native approval-gated single-file changes.
Community comments
Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.