DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Quick Archive — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
Q

dsh-quick-archive

Quick Archive

DSH 插件:在侧边栏每个会话行中、⋯菜单旁添加一个一键归档按钮

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:MoseeVision/dsh-quick-archive#db5195cdebbc35fd7fa8122c00f96c7479dba274
README兼容性版本

兼容性与来源证明

Quick Archive 以 dsh-quick-archive 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/19

版本

1.0.0stable
2026/9/19

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/19
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Meow Memorymeow-memoryDeepSeek Harness 的跨会话项目记忆:七层 SQLite 记忆、首轮快照注入、每条消息的关键词命中、memory_remember/search/project 工具、带 reflection-fold UI 的自动反思,以及由空闲触发的梦境整合

README

dsh-quick-archive

English · 中文

A DeepSeek Harness Web plugin: every session row in the sidebar gains a one-click Archive icon button in its trailing action area, right beside the ⋯ menu, so archiving a session takes one click instead of a menu detour.

Features

  • One archive icon button per session row, revealed on hover exactly like the shipped ⋯ button.
  • One click archives that session — no menu to open, no dialog to confirm.
  • The click goes through the declared Client service ctx.uiWorkspace.archiveSession(sessionId), the same call the shipped ⋯ → Archive session item makes. Archiving the current session therefore still clears the main panel into the New Session state; no behaviour is re-implemented here.
  • Labels come from the Client locale service (zh / en) and the icon inherits the active theme through the --dsw-alias-* tokens, so light and dark both stay correct.
  • Only session rows are touched: workspace rows, search-result rows and the blank "new session" placeholder row are left as they are.
  • Uninstalling the plugin removes every control it added (listeners, stylesheet and buttons are disposed with the Client run).

Install

Requires the DSH Web profile (dsh web).

# from npm
dsh plugin add dsh-quick-archive

# or straight from this repository
dsh plugin add github:MoseeVision/dsh-quick-archive

You can also install it from the 插件 / Plugins page of the Web GUI, or from the dshmarket storefront once the entry is listed. After installing, reload the page once: a newly added Client module is served in the boot table, it does not hot-patch into an already-open tab.

Usage

Hover any session row in the sidebar → the archive icon appears to the left of ⋯ → click it. The row disappears from the list.

Restoring a session stays where DSH already put it: Settings → Archived sessions → Unarchive (设置 → 已归档会话 → 取消归档). This plugin adds no second restore surface.

How it works

The shipped browsing region (sidebar.workspaces) exposes no extension hole under a session row — its only child seat is the directory-flow hole — so this plugin does not claim a slot and does not replace the list. Instead it contributes into the row's own action span:

  1. On pointerover / focusin, the nearest div[role="treeitem"] is resolved and walked up the React fiber chain until the session-row props (node.id plus the row's onArchive action) appear. That is what makes workspace rows and search-result rows fall through untouched, and it means a DOM node reused for another session can never archive the wrong one — the id is re-read at click time.
  2. A plain <button> with an inline SVG glyph is inserted as the first child of the row's action span, so it sits left of ⋯ and shares the row's hover reveal and gap: 12px rhythm.
  3. The click calls ctx.uiWorkspace.archiveSession(id), disables the button while the write is in flight, and re-enables it only if the Host rejects (the rejection is logged, matching the shipped menu's behaviour).

Everything it registers — the locale namespace, the stylesheet, the two document listeners and the injected buttons — is torn down in the effect clean-up.

Compatibility

Written against @deepseek-ai/dsh 0.1.6-alpha.2 (Web profile). The plugin owns no Host service, no setting and no storage; the Host half is an empty apply().

Related

  • deepseek-harness — the host this plugin extends.
  • awesome-dsh-plugin — the curated plugin list this package is submitted to (catalog/awesome-dsh-plugin.yml holds the ready-to-paste entry).

License

MIT


中文 (dsh-quick-archive)

一个 DeepSeek Harness Web 端插件:给侧边栏的每一个会话行 加一个一键归档图标按钮,位置就在行尾 ⋯ 菜单的左边,归档一个会话从「点开菜单再选一项」变成「一次点击」。

功能

  • 每个会话行一个归档图标按钮,和原生 ⋯ 一样在悬停该行时出现。
  • 点一下立即归档该会话:不展开菜单,也没有确认弹窗。
  • 调用的是已声明的 Client 服务 ctx.uiWorkspace.archiveSession(sessionId),与原生 ⋯ → 归档会话 走的是同 一条路。因此归档当前会话时依然会按原生语义清空主区域回到新会话状态——这里没有重复实现任何归档逻辑。
  • 文案走 Client locale 服务(中 / 英),图标用 --dsw-alias-* 主题令牌取色,明暗主题都跟随。
  • 只处理会话行:工作区行、搜索结果行、空白的「新会话」占位行都不动。
  • 卸载插件即收回它加的一切:监听器、样式表和按钮全部随 Client run 释放。

安装

需要 DSH 的 Web profile(dsh web)。

# 从 npm 安装
dsh plugin add dsh-quick-archive

# 或直接从本仓库安装
dsh plugin add github:MoseeVision/dsh-quick-archive

也可以在 Web GUI 的插件页面安装,条目收录后还能从 dshmarket 市场里一键安装。装完请把页面刷新一次:新加入的 Client 模块要出现在启动模块表里,不会热插进已经打开的页面。

使用

鼠标移到侧边栏任意会话行 → ⋯ 左侧出现归档图标 → 点一下,该行从列表消失。

恢复入口保持在 DSH 原来的位置:设置 → 已归档会话 → 取消归档。本插件不另加第二个恢复入口。

实现说明

原生浏览区(sidebar.workspaces)在会话行下面没有开放任何扩展位——它唯一的子席位是目录选择流程的 hole—— 所以本插件不占 slot、也不替换整个列表,而是往这一行自己的动作区里追加内容:

  1. 在 pointerover / focusin 时找到最近的 div[role="treeitem"],沿 React fiber 向上走到会话行的 props (node.id 加上这一行的 onArchive)出现为止。这一步让工作区行和搜索结果行自然被跳过;也正因为 id 是在 点击那一刻重新读取的,被复用的 DOM 节点不可能归档错会话。
  2. 造一个普通 <button>(内联 SVG 图标),插到该行动作区的第一个子节点位置,于是它落在 ⋯ 左边,共享该行 的悬停显隐与 gap: 12px 间距。
  3. 点击调用 ctx.uiWorkspace.archiveSession(id),请求在途时禁用按钮;只有 Host 拒绝时才恢复可点,并把拒绝 记进 console——与原生菜单项的行为一致。

它注册的一切(locale 命名空间、样式表、两个 document 监听器、注入的按钮)都在 effect 的清理函数里回收。

兼容性

针对 @deepseek-ai/dsh 0.1.6-alpha.2(Web profile)编写。插件不持有 Host 服务、设置项和存储,Host 半边是一 个空的 apply()。

许可

MIT