DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-archived-tasks

Archived Tasks

DSH Web GUI 插件:提供“已归档任务”设置页面,列出已归档的会话,并支持恢复或永久删除

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-archived-tasks@0.1.0
README兼容性版本

兼容性与来源证明

Archived Tasks 以 dsh-archived-tasks 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/8/15

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
35.3 kB
文件数
7
Surface
web
许可证
Apache-2.0
发布源
npm
GitHub
★ 1
周下载
24
最近提交
2026/8/15
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。

README

dsh-archived-tasks — Archived Tasks for DeepSeek Harness

English | 中文

A DeepSeek Harness Web GUI plugin that adds an Archived Tasks settings page: list every archived session and restore it, or permanently delete its log files and registry references in one click.

Install

Published on npm, installs as a profile bundle with a single command:

dsh plugin --profile web add dsh-archived-tasks

After installing, restart dsh web, then open Settings → Archived Tasks (设置 → 已归档任务).

To remove:

dsh plugin --profile web remove dsh-archived-tasks

What it does

The settings section lists sessions in the workspace registry's archived set:

  • 恢复 (Restore) — removes the session id from the registry's archivedSessionIds set; the session log and workspace accounting are kept.
  • 删除 (Delete) — destructive and irreversible. It rm -rfs the session log directory under data/sessions, drops the id from the archived set, detaches the in-memory session, and removes the id from every workspace's accounting list.

The delete route is intentionally guarded:

  • POST only, same-origin requests only (light CSRF check on the Origin header).
  • The session id must match ^session-[0-9a-f-]+$ — no path traversal.
  • The resolved session path must sit exactly one level under data/sessions/<encoded-cwd>/ before anything is removed.
  • dataRoot resolution: config.dataRoot → $DSH_DATA_ROOT → $DSH_HOME → automatic walk-up from the module location (works for both the local vendor layout and a published npm install).

Development

# local link install (from this checkout)
dsh plugin --profile web add link:$(pwd)

# publish a new version
npm publish --access public

License

Apache-2.0