DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Session Todos — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-session-todos

Session Todos

Session todos: top-right floating todo panel (expand/collapse + 📌 pin to prevent automatic collapse) + server-side cross-device storage (~/.dsh/dsh-session-todos) + incomplete icon in the session list. Pure plugin; does not modify DSH source.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:seeingrain/dsh-session-todos#0ec35979c056da6e725d93d5d65b268e16e422ec
READMECompatibilityVersions

Compatibility and provenance

Session Todos is published as dsh-session-todos and currently resolves to version 1.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/12/2026

Versions

1.1.0stable
9/12/2026
1.0.0stable
9/5/2026

Related plugins

Loading related plugins…

Latest
1.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/12/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

README

dsh-session-todos

🇬🇧 English: README.en.md

面向 DeepSeek Harness(DSH)的会话内待办事项插件。 在聊天窗口右上角加一个悬浮待办面板,把待办列表存储在服务器端(跨设备同步), 并在左侧会话列表中给还有未完成任务的会话打上一个 🎯 徽章。

尤其适合:一个会话里同时推进好几件事、需要把「还没做完的事」一直摆在聊天旁边的 DSH 用户。

纯插件 —— 不改 DSH 任何源码。

dsh-session-todos 面板

功能特性

  • 右上角悬浮待办面板:展开时浮在对话区右上角,可收起成一个 🎯 图标,带滑入/滑出动画。
  • 任务行
    • 勾选框 —— 勾选/取消即时保存
    • 多行文字 —— 长任务自动折行;双击原地编辑(自动增高的多行 <textarea>); Enter 提交,Shift+Enter 换行
    • 推送到发送框 —— 把任务文本追加到消息输入框
    • 删除 —— 带确认弹窗
    • 长按拖动排序 —— 被拖行跟手移动、实时预览落点
  • 标题栏:🎯 图标 + done/total 计数(如 2/4)。
  • 移动端友好 / 全平台自动收起 —— 点面板外任意处即自动收起;点标题栏 📌 钉住后不再自动收起。
  • 服务器端跨端存储 —— 每会话一个 JSON 文件,位于 ~/.dsh/dsh-session-todos/, 任意设备登录同一 DSH 都能读到同一份列表。
  • 会话列表徽章 —— 有未完成待办的会话在侧边栏左侧显示 🎯,随勾选即时出现/消失。

要求

  • DeepSeek Harness(DSH)Web 端 —— 本插件为 bundle 插件(host + client 两半)。

安装

# 本地路径(你 clone/放置该仓库的位置)
dshpm install /绝对路径/to/dsh-session-todos --profile web
# 或从 git 地址安装:
# dshpm install https://github.com/seeingrain/dsh-session-todos.git --profile web

安装后重启 dsh-web,或强刷浏览器(Ctrl+Shift+R)。

使用

打开一个会话,点击聊天窗口右上角的 🎯 展开面板。

  • 底部 + 新建任务。
  • 双击任务文字进入编辑(出现多行 textarea,随内容增高);Enter 保存、Esc 取消、 Shift+Enter 换行。
  • 勾选框标记完成(文字置灰、按钮禁用)。
  • ↗ 把任务文本追加到消息发送框。
  • 🗑 删除(有确认弹窗)。
  • 长按任务文字后上下拖动排序,松手提交。
  • 📌 钉住 / 取消钉住:钉住时面板不自动收起,一直保持展开(刷新/切会话也保持)。
  • 未钉住时:点面板外任意处自动收起(鼠标、触屏都一样)。
  • 触屏设备还可以向右滑动手势收起面板。

实现原理

插件分 host 与 client 两半,均为独立自包含。

Host 半边(lib/index.js)

在 DSH 的 webServer 上注册路由,并把待办持久化为 JSON 文件:

  • POST /dsh-session-todos/api/get —— { sessionId } → { tasks }
  • POST /dsh-session-todos/api/save —— { sessionId, tasks } → 保存并返回规范化列表
  • POST /dsh-session-todos/api/summary —— 返回 { sessions: [{ sessionId, hasUnfinished }] }

存储目录:~/.dsh/dsh-session-todos/<sessionId>.json(首次写入时创建)。

Client 半边(lib/client.js)

  • 悬浮面板挂在 shell.overlay 插槽,锚定聊天区 [data-conversation-scroll]。
  • 推送任务到发送框使用官方输入门面(conversation.input → setDraft),追加到已有草稿。
  • 会话列表徽章不改 DSH 源码:用 [role="treeitem"] 定位会话行,从 React 18 fiber 读取每个会话的 id,再按待办状态注入/移除 🎯 徽章。若 fiber 结构未来改变,会优雅降级 (徽章不渲染,其余功能不受影响)。

存储结构

{
  "version": 1,
  "sessionId": "session-…",
  "updatedAt": 1787992050268,
  "tasks": [
    { "id": "t-…", "text": "…", "done": false, "createdAt": 1787992050268, "updatedAt": 1787992050268 }
  ]
}

说明与限制

  • 面板收起/展开状态存 localStorage(按会话各一条);📌 钉住状态存 localStorage(全局一条)。 两者都只存在浏览器本地,不同步到其它设备。
  • 会话行徽章依赖 React 18 内部 fiber;未来 React/DSH 大版本升级后可能需要重新验证 (只会优雅降级,不会报错)。
  • 存储路径位于 DSH 主目录(~/.dsh)。

许可证

MIT

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI