DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-workspace-archive-all

Workspace Archive All

DSH Web 插件:侧边栏中每个工作区文件夹菜单均提供 Archive-All 操作(包括 Ungrouped 分组)——一次确认后归档该文件夹下所有未归档会话;跳过正在运行、当前打开、空白和子代理会话。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:1959377950-dotcom/dsh-workspace-archive-all#9542e717511e7458de740be7634c232b63c6c2e2
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.1stable
2026/9/23

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理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 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Univer Officedsh-univer-officeDSH × Univer 集成,内置协作 Gateway 和 Viewer:内联预览、实时浮动 Worktree 窗口,以及 DeepSeek Harness 中的会话结束审查操作。

README

dsh-workspace-archive-all

中文说明 →

A DeepSeek Harness web plugin that adds an Archive All action to every workspace folder menu in the sidebar (the Ungrouped bucket included) — archiving all unarchived sessions under that folder in one go.

  • Confirm dialog → sequential archive with progress → result summary
  • Automatically skipped: running sessions, the session you are currently viewing, blank provisional "New Session" rows, subagent sessions, and anything already archived
  • English and Chinese copy, following the UI language

How it works

The sidebar comes from the official @deepseek-ai/dsh-client-ui-workspace package, whose client bundle is served by the client module system from the prefix route /plugins/<id>/client.js. This plugin's host half registers an exact route for that path (the webserver matches exact routes before prefixes), serving a patched copy of the bundle:

GET /plugins/@deepseek-ai/dsh-client-ui-workspace/client.js
  → this plugin's lib/workspace-client.patched.js
  • No runtime interception, no dependence on script evaluation order
  • Uninstalling the plugin removes the route and the stock bundle is served again — the official file on disk is never modified
  • Response headers mirror the stock bundle server (text/javascript; charset=utf-8, no-cache)

Install

One command with the official CLI (installs the package into the profile and mounts it via the bundled cordis.patch.yml — no manual file edits):

dsh plugin --profile web add dsh-workspace-archive-all          # from npm (once published)
dsh plugin --profile web add <tarball-url-or-path>              # e.g. the GitHub release .tgz

Or as a local bundle without the CLI:

  1. Put this folder anywhere (e.g. ~/dsh-workspace-archive-all)
  2. Link it into the profile: ln -s ~/dsh-workspace-archive-all ~/.dsh/profiles/web/node_modules/dsh-workspace-archive-all
  3. Append "dsh-workspace-archive-all" to dsh.profile.bundles in ~/.dsh/profiles/web/package.json
  4. Restart dsh web (the bundle list is read at boot)

The bundle's cordis.patch.yml carries a double-mount guard: a manual dsh.profile.bundles entry makes the package's own insert row stand down, so the two channels do not collide — but pick one of them.

Once listed on the dshmarket marketplace, it can also be installed with one click from the settings UI.

Uninstall

dsh plugin --profile web remove dsh-workspace-archive-all

Or, for a manual local-bundle install: remove the entry from dsh.profile.bundles and restart; the dependencies entry and the symlink can be removed too. Nothing to clean up inside DSH itself.

Upgrading DSH

Re-derive the patched bundle from the new stock file:

node tools/build-patch.mjs

The stock client path is auto-detected (nvm / Homebrew / /usr/local / PNPM_HOME / PATH); override with DSH_STOCK_CLIENT or node tools/build-patch.mjs <stock-client.js> [out-file]. The 11 find/replace patches each must match exactly once — a clear error means the official bundle drifted and the pairs need re-deriving.

Files

FilePurpose
lib/index.jsHost half: registers the exact override route
lib/workspace-client.patched.jsThe patched official workspace client (build artifact)
cordis.patch.ymlBundle patch: mounts the plugin (with double-mount guard)
tools/build-patch.mjsRebuilds the patched bundle from the stock one

License

MIT