DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-archive-sessions

Archive Sessions

DeepSeek Harness 归档会话管理器:列出已归档会话、恢复会话或永久删除会话。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:jujiujiang222-cell/dsh-archive-sessions#036c35850b91c635528b602017e74b9e5f5f70e6
README兼容性版本

兼容性与来源证明

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

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

版本

1.0.0stable
2026/9/8

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。Reme@agentscope-ai/reme面向 TypeScript 代理的 ReMe 客户端和记忆集成Stratagate Dshstratagate-dsh最近的对话依然鲜活。较早的对话会逐渐淡化为摘要,而不是被遗忘。StrataGate 为 DeepSeek Harness 提供六层、随时间衰减的记忆,同时将持久的事件和关系沉淀为知识图谱。将你在其他 AI 中的记忆带来Meow Memorymeow-memoryDeepSeek Harness 的跨会话项目记忆:七层 SQLite 记忆、首轮快照注入、每条消息的关键词命中、memory_remember/search/project 工具、带 reflection-fold UI 的自动反思,以及由空闲触发的梦境整合

README

dsh-archive-sessions

Archived-session manager for DeepSeek Harness.

在 DSH 设置界面新增“归档会话”页:列出所有已归档会话,支持恢复与永久删除(删除前二次确认)。

Adds an “归档会话” (Archived Sessions) settings page that lists archived sessions and lets you restore or permanently delete each one (with an in-page confirmation step).

Features

  • Lists archived sessions that still have a durable log on disk (disk is the source of truth — no ghost rows from the in-memory session store).
  • Shows title, creation time, working directory and whether the session is currently open in memory.
  • Restore: moves a session out of the archive set; it reappears in the sidebar.
  • Permanently delete: removes the session's durable log file and detaches it from workspace accounting. Requires a two-step in-page confirmation.

Install

Requirements: a DeepSeek Harness desktop / web profile (the “web” profile on this machine) with the plugin market runtime.

# from a GitHub checkout (once the repository is listed in the marketplace
# registry) or directly from the repository:
dsh plugin --profile web add github:<owner>/dsh-archive-sessions

To build it from source and install locally, place the package into the active profile's dependency set (pnpm install file:/git target), then make sure the row below is present in the profile's bundle patch layer:

# cordis.patch.yml
- insert:
    - id: dsh-archive-sessions
      name: dsh-archive-sessions

After install/update, restart the app (or let the market hot-reload the client bundle) and open 设置 → 归档会话.

How it works

LayerFileRole
Hostsrc/index.jscordis plugin; registers same-origin HTTP routes /plugins/dsh-archive-sessions/{list,restore,delete} and implements all logic
Web clientlib/client.jsregisters the settings.section page “归档会话” and talks to the host routes
Bundle rowcordis.patch.ymlinserts the plugin row into the profile layer stack

Design notes / caveats

  • No platform “delete session” service exists. The session log backend is append-only and every list is derived from what is on disk. Permanent deletion therefore removes the session's own artifact (session.jsonl[.zstd] under the jsonl persistence backend) plus workspace accounting. The id stays in the archived set as a tombstone so the still resident in-memory session stays hidden from the sidebar during this run; after an app restart nothing references it.
  • In-memory resident sessions. Sessions that were opened during the current app run keep a live agent in memory. Deleting such a session is allowed only when the agent is idle; a running agent is asked to stop first (up to ~4s).
  • Full-access file removal. The sandboxed default shell cannot delete files inside the app's own data directory, so deletion runs through the shell with an explicit danger-full-access policy. Read the code before installing; use at your own risk.
  • Restore of a deleted session is rejected: its log is gone.
  • Verification status: developed and battle-tested as a session-scoped dynamic plugin (see docs/dynamic-plugin-source.js). The installable static package in this repo follows the published plugin layout (dsh.client metadata, bundle patch, window.__ModuleLoader__ client bundle, same-origin host routes). Load-time dependency wiring should be verified in the target profile before publishing updates.

Reference: run it as a dynamic plugin (no install needed)

If you want the same feature immediately in the current DSH session without installing anything, paste the code from docs/dynamic-plugin-source.md into a Cordis dynamic-plugin definition, or ask your agent to create it with the plugin id prefix archv (as was done during development).

Repository layout

src/index.js                  host half (HTTP routes + logic)
lib/client.js                 web client half (settings page)
cordis.patch.yml              profile bundle row
docs/registry-submission.md   how to request listing on awesome-dsh-plugin
docs/dynamic-plugin-source.md reference dynamic-plugin source (dev version)

License

MIT — see LICENSE.