DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-private-browsing

Private Browsing

适用于 DSH Web 的隔离式私人聊天,支持可逆的上下文选择并保留审计记录

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Doub1eS/dsh-Private-Browsing#17e7d5cb4efc3118387b8e65d2af172444711a7d
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/9/15

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Doctor@linxin666/dsh-doctorDSH 配置档案的事务性救援模式,配备受监督的启动器、隔离的恢复容器、确定性修复、健康监控以及本地 Web 恢复控制台Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Auto Reviewdsh-auto-review针对 DeepSeek Harness 审批请求的第二模型 AI 自动审查:只读审查子代理在审批应答链上决定允许或拒绝,并采用故障关闭回退机制和完整的会话日志审计。

README


description: "Add a separate private chat to a DSH Web profile, with reversible context selection and retained local audit records." kind: "package-bundle"

DSH Private Browsing

中文 | English

Summary

This installable DSH bundle adds a dedicated private-chat page to the Web profile. A new page starts without loading any prior private or ordinary DSH conversation. You can exclude selected messages from future model requests, restore them later, and inspect or export the append-only audit record.

The first standalone release does not alter ordinary DSH conversations and does not expose tools to the model.

Use this plugin

Prerequisite: DSH 0.1.5-rc.1 or a compatible later prerelease, with the Web profile and a configured model provider.

dsh plugin --profile web add github:Doub1eS/dsh-Private-Browsing
dsh --profile web

Open Private chat from the fixed button on the DSH page. Remove it with dsh plugin --profile web remove dsh-private-browsing. The repository topic and package keyword use the dsh-plugin discovery tag described by the official DSH community guidance.

Privacy behavior

  • The model request contains only visible messages from the selected private conversation.
  • The plugin does not read DSH Sessions, workspace instructions, memory services, or other private-conversation journals when generating a reply.
  • The model receives no tools. The audit stores every exact request with an empty tools array.
  • Exclusion changes future requests without deleting original text. Restoration includes selected records again.
  • A new browser page does not select an old conversation. Recovery requires its UUID.
  • Append-only JSONL journals remain under $DSH_HOME/private-browsing by default. One conversation is capped at 16 MiB unless the bundle config changes it.
  • API routes reuse DSH Web authentication and host checks and reject oversized or malformed requests.

Verification

Release v0.1.0 was installed from its tarball into a fresh DSH 0.1.5-rc.1 Web profile on Windows. The released page completed real DeepSeek model rounds, excluded one complete exchange, showed that the next audited request contained only the new message and no tools, restored all messages, restarted the server, opened a blank new window, and recovered the conversation only after its UUID was entered.

Run npm install, npm test, and npm pack --dry-run for the automated checks and package inventory.

Development sources

src/store.js owns private journals and request projection. src/index.js mounts authenticated DSH routes and calls the configured LLM service. public/ is the bilingual browser UI. cordis.patch.yml activates the plugin as a bundle.

The patches/ and packages/ directories retain an experimental core-integration design for future ordinary-window context management. They are not included in the installable package.

Known limitations

This is context exclusion, not secure deletion. Records are plaintext and inherit host filesystem protection. Hiding content cannot retract requests already sent to the model provider; later replies may repeat earlier content and must be excluded separately.

The isolation promise covers data selected by this plugin for model requests. It is not a process sandbox against the machine administrator, the configured provider, DSH itself, or another trusted in-process plugin. This release does not manage stock DSH chats or execute tools.

MIT; see LICENSE.