DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Plugin Session Delete — DeepSeek Harness 插件(DSH Plugin)
← Plugins
P

@pepsi-ai/dsh-plugin-session-delete

Plugin Session Delete

在 UI 中删除 DeepSeek Harness 配置文件的会话:标题栏危险操作按钮 + 会话行菜单项,并带有风险确认对话框;主机端点和工具会删除日志、投影缓存及工作区记账数据。在 Web 和桌面客户端中均可使用。

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

npx -y @deepseek-ai/dsh plugin --profile web add @pepsi-ai/dsh-plugin-session-delete@0.3.2
README兼容性版本
Plugin screenshot

兼容性与来源证明

Plugin Session Delete 以 @pepsi-ai/dsh-plugin-session-delete 发布,当前版本为 0.3.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

README

dsh-plugin-session-delete

你是否困扰于 web 端无法删除对话?是否觉得归档对话键只是隐藏对话,删除得不够彻底?是否在尝试编辑 harness 时遇到对话话历史无法同步,而损坏的对话又无法删除?这个插件可以帮你!

在 DeepSeek Harness 界面里安全地彻底删除会话。 在会话顶部添加垃圾桶按钮,侧栏会话行 "..." 菜单内添加"删除会话"项,点击后出现风险确认弹窗(需勾选);确认后会删除会话日志、投影缓存与工作区记账;运行中的会话会有提示,若仍选择删除会停止运行并删除。可在web中使用,并且理论上兼容一切web套壳的客户端。 添加agent工具让agent可以删除会话。 工具名workbench_session_delete

安装

# npm(推荐)
dsh plugin --profile <profile> add @pepsi-ai/dsh-plugin-session-delete

# 或本地目录
dsh plugin --profile <profile> add file:C:/path/to/dsh-plugin-session-delete

重启 profile 生效。

功能

  • 会话头部垃圾桶按钮
  • 侧栏会话行 "..." 菜单注入"删除会话"项
  • RiskConfirmation 风险确认:勾选"我已了解后果"后确认可用
  • 删除链路:会话目录 + 投影缓存 + 工作区记账(经活动 storageDomain,内存/磁盘一致)
  • workbench_session_delete 工具:agent 可直接删除会话

后续开发计划

  • 添加更多针对会话的操作工具和选项
  • 将已有的针对会话的选项做成工具提供给agent
image

更新日志

  • v0.3.2(2026-08-21):修复删除成功后界面不刷新、会话残留在「未分组」的问题。客户端在 rc.8 运行时使用 sessions.refresh() 原地刷新列表(保留 refreshList() 作为旧版 fallback),删除后无需手动刷新浏览器。
  • v0.3.1(2026-08-14):修复删除会话后残留日志导致会话跑到「未分组」的问题。删除时同时清理原始 id 与 session- 前缀两种 id 形式;先删除磁盘日志并确认成功后再解除工作区记账,避免半删除会话脱离原分组;删除前先 flush 活动会话,防止 dispose 阶段回写/重建日志目录。
  • v0.3.0(2026-08-14):新增英文适配(i18n)。删除对话框、头部垃圾桶按钮与侧栏「删除会话」菜单项的全部文案接入客户端 zh/en 字典,跟随界面语言(设置中的语言或浏览器语言)自动切换并即时生效;未加载 locale 服务的环境会按浏览器语言回退到内置中英文字典。

dsh-plugin-session-delete

Frustrated that sessions can't be deleted from the web client? Bothered by abandoned or mistyped conversations cluttering your sidebar? Ever tried editing your harness only to find the session history out of sync — with a corrupted session that just won't go away? This plugin has your back!

Safely delete sessions from the DeepSeek Harness UI. Adds a trash button at the top of the conversation and a "Delete session" item to the sidebar session-row "..." menu; clicking either opens a risk-consent dialog (checkbox required). On confirm, the session log, projection cache and workspace accounting are removed. Running sessions show a warning — if you still choose to delete, the session is stopped and then deleted. Works in the web, and is theoretically compatible with any web-shell-based client. Also adds an agent tool so agents can delete sessions. Tool name: workbench_session_delete

Installation

# npm (recommended)
dsh plugin --profile <profile> add @pepsi-ai/dsh-plugin-session-delete

# or a local checkout
dsh plugin --profile <profile> add file:C:/path/to/dsh-plugin-session-delete

Restart the profile to apply.

Features

  • Trash button at the top of the conversation
  • "Delete session" item injected into the sidebar session-row "..." menu
  • RiskConfirmation risk-consent dialog: confirm is only enabled after ticking "I understand the consequences"
  • Delete chain: session log + projection cache + workspace accounting (through the active storageDomain, so in-memory state and on-disk units stay consistent)
  • workbench_session_delete tool: agents can delete sessions directly

Roadmap

  • Add more session-operation tools and options
  • Expose the existing session options to agents as tools

Changelog

  • v0.3.2 (2026-08-21): Fixed the UI not refreshing after a successful delete, leaving the session as an "Ungrouped" row. On rc.8 runtimes the client now calls sessions.refresh() to refresh the list in place (with refreshList() kept as a fallback for older releases), so a manual browser reload is no longer needed.
  • v0.3.1 (2026-08-14): Fixed deleted sessions being left as "Ungrouped" rows after a partial delete. The host now cleans both raw UUID and session--prefixed id forms, deletes the on-disk log and confirms it before removing workspace accounting (so a failed delete cannot detach a session from its group), and flushes a live session before detaching it to prevent dispose-time rewrites from recreating the log directory.
  • v0.3.0 (2026-08-14): Added English adaptation (i18n). All copy of the delete dialog, the header trash button and the sidebar "Delete session" menu item now lives in client zh/en dictionaries and follows the UI language (the language setting or the browser language), updating live on switch; environments without the locale service fall back to the built-in dictionaries by browser language.

版本

0.3.2stable
2026/8/20

相关插件

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

Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)
最新版
0.3.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
49.2 kB
文件数
6
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
0
最近提交
2026/8/20
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录