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.

Memo Notebook — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

memo-notebook

Memo Notebook

Track unfinished tasks by workspace: automatically capture queued or in-progress user instructions, persist them to disk, and restore and resend them with one click.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SeanWang114514/dsh-memo-notebook#c0789e9cf4804766f6ab2b8cbca798d05b54fc6c
READMECompatibilityVersions

Compatibility and provenance

Memo Notebook is published as memo-notebook and currently resolves to version 1.0.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
8/27/2026

Versions

1.0.0stable
8/27/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Not declared
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/27/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

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 包。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.

README

dsh-memo-notebook

按工作区记录未完成任务:自动捕获排队/执行中的用户指令,持久化到磁盘,支持插队打断与一键按原状态恢复重发。为 DeepSeek Harness (dsh) 打造的备忘录/待办插件。

为什么需要它?在长会话里,任务排队、被打断、恢复是家常便饭。memo-notebook 把「我让助手做什么、做到哪了、被打断前是什么状态」变成一个可见、可点、可恢复的面板——再也不怕切换会话或重启 web 后丢失上下文。


✨ 功能亮点

功能说明
🪝 自动捕获发给助手的新指令自动进入备忘录,排队 → 进行中 状态自动流转
⚡ 插队打断新消息插入时,旧任务自动标记为「打断」,并记录原状态(previousStatus)
🔄 一键恢复恢复按钮按原状态恢复:原排队 → 回排队;原进行中/提问 → 恢复 running 并继续执行
✅ 划线完成「一键完成」将任务划线下沉(不删除,保留记录);「一键删除」才真正移除
🗂 状态分类全部 / 排队 / 正在进行 / 提问 / 失败 / 打断 / 已完成(失败与错误合并)
🧹 自动完成agent 正常结束时任务自动标记「已完成」划线,手动完成与自动完成区分
📌 窗口置顶浮动面板固定在侧栏之上、设置窗口之下;标题栏可拖动,位置持久化保存
💾 同步持久化每次变更立即写盘(同步写入),停止/重启 web 不丢数据
🌏 UTF-8 存储避免 Windows 控制台编码导致的乱码问题

📸 截图

memo-notebook 面板


📦 安装

方式一:dsh plugin 命令(推荐)

dsh plugin --profile web add SeanWang114514/dsh-memo-notebook

方式二:手动链接

# 将插件目录链接到 web profile 的 node_modules
mklink /J "%USERPROFILE%\.dsh\profiles\web\node_modules\memo-notebook" "%USERPROFILE%\.dsh\memo-notebook"

安装后需重启 dsh web 使 Host 端生效;Client 端刷新页面(Ctrl+F5)即可。


🚀 使用

  1. 点击浏览器右下角的 📝 图标打开面板
  2. 在输入框输入任务,回车/点击「添加」入队
  3. 任务状态实时流转:排队 → 正在进行 → 已完成(自动划线)
  4. 被插队打断的任务显示「打断」徽章,点「恢复」按原状态回去
  5. 勾选多条目后可用「一键完成 / 一键删除 / 一键恢复」批量操作

面板交互

  • 标题栏拖动:按住面板顶部空白处拖动,位置自动记忆
  • 分类筛选:点击分类按钮过滤状态,分类按钮风格与删除按钮完全一致
  • 勾选:点击条目左侧圆圈,可多选后批量操作

🔌 API

方法路径说明
GET/api/memo/list列出全部条目
GET/api/memo/eventsSSE 实时推送状态变化
POST/api/memo/add新增条目 {text}
POST/api/memo/complete标记完成(划线保留){id}
POST/api/memo/remove删除条目 {id}
POST/api/memo/resume恢复条目到原状态并继续执行 {id}
POST/api/memo/batch-complete批量完成 {ids}
POST/api/memo/batch-remove批量删除 {ids}
POST/api/memo/batch-resume批量恢复 {ids}

示例

# 新增
curl -X POST http://127.0.0.1:3080/api/memo/add \
  -H "Content-Type: application/json" \
  -d '{"text": "帮我写周报"}'

# 恢复
curl -X POST http://127.0.0.1:3080/api/memo/resume \
  -H "Content-Type: application/json" \
  -d '{"id": "mtbmk094-nhgxutw7"}'

⚙️ 配置

cordis.patch.yml 中通过 stateFile 指定持久化文件:

- insert:
    - id: memo-notebook
      name: memo-notebook
      config:
        stateFile: !!js dshHomePath('memo-notebook/state.json')

默认存储于 ~/.dsh/memo-notebook/state.json(UTF-8,每次操作同步写入)。


🗂 状态流转

用户发消息 ──► queued(排队)
                 │ agent 开始执行
                 ▼
              running(进行中)
                 │ 新消息插队 / agent 空闲
                 ▼
           interrupted(打断,记录 previousStatus)
                 │ 点「恢复」
                 ▼
      回到 previousStatus(queued 或 running)
                 │ agent 正常完成
                 ▼
           completed(已完成,划线保留)
状态徽章颜色说明
queued蓝色排队等待执行
running绿色正在执行
asking橙色向用户提问中
failed红色执行失败(含错误)
interrupted紫色被新消息打断(记录原状态)
completed灰色已完成(划线)

📁 目录结构

memo-notebook/
├── lib/
│   ├── index.mjs   # Host: API + 事件捕获 + 状态流转 + 持久化
│   └── client.js   # Client: 侧栏按钮 + 浮动面板 UI
├── cordis.patch.yml   # dsh 插件挂载配置
├── package.json       # 插件元数据(dsh.bundle manifest)
├── screenshots.json   # 市场截图声明
├── shot-panel.png     # 面板截图
└── README.md

🧩 技术细节

  • Host:监听 agent/inbox/inserted(新指令入队)、agent/status(状态流转)、tools/result(工具执行结果)事件,驱动状态机
  • Client:原生 DOM + addEventListener,无框架依赖;骨架只构建一次,列表独立渲染,输入框永不被重建(焦点稳定)
  • 持久化:同步 writeFileSync,每次变更立即落盘,杜绝进程被杀时数据丢失
  • SSE 推送:/api/memo/events 实时推送状态变化,多标签页同步

📝 许可证

MIT License — 自由使用、修改、分发。