DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Experience Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-experience-plugin

Experience Plugin

DSH plugin: model reasoning levels plus CLI request mimic, with a unified Daily Optimization settings section.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-experience-plugin@0.7.1
READMECompatibilityVersions

Compatibility and provenance

Experience Plugin is published as dsh-experience-plugin and currently resolves to version 0.7.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.7.1stable
9/10/2026
0.8.0stable
9/10/2026
0.7.0stable
9/10/2026
Show 12 more versionsCollapse versions
0.6.4stable
8/27/2026
0.6.2stable
8/26/2026
0.6.3stable
8/26/2026
0.6.1stable
8/25/2026
0.6.0stable
8/25/2026
0.5.0stable
8/25/2026
0.4.1stable
8/25/2026
0.4.0stable
8/24/2026
0.3.2stable
8/24/2026
0.3.1stable
8/21/2026
0.3.0stable
8/20/2026
0.2.0stable
8/18/2026
Latest
0.7.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
783.8 kB
Files
156
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
174
Security scan
✓ v0.7.1 scan passed
Last push
8/27/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

README

dsh-experience-plugin

DSH(DeepSeek Harness)功能插件,按功能模块组织:

模块功能配置入口
模型思考等级为自定义 API 模型注入推理等级设置页「日用优化」分区
模型参数按 Provider / 模型手动覆盖 temperature / maxTokens / reasoningEffort设置页「日用优化」分区
CLI 请求模拟把 DSH 模型请求伪装成 Codex / Claude Code / Grok CLI设置页「日用优化」分区
打开文件夹工作区行菜单打开项目目录插件行 openFolder 段
设置页全屏化设置弹窗改全屏页 + 背景不透明开关设置页「日用优化」分区
自动加载历史打开会话时自动加载更早的对话历史设置页「日用优化」分区
全局指令设置页编辑此主机全局指令(~/.dsh/AGENTS.md)设置页「日用优化」分区
MCP 管理增删 / 导入 / 启停 MCP server,按配置热装载设置页「日用优化」分区「MCP 管理」页签
Skills 管理增删 / 导入 / 启停 Skill设置页「日用优化」分区「Skills 管理」页签
模块开关各功能模块独立启停设置页「日用优化」分区「模块开关」页签

所有配置 UI 统一收拢在设置页「日用优化」分区,含「插件设置」「模块开关」「MCP 管理」「Skills 管理」四个页签。

安装

插件已发布到 npm(dsh-experience-plugin),两种安装方式:

方式一:DSH 插件命令(推荐,自动从 npm 拉取)

dsh plugin --profile web add dsh-experience-plugin

方式二:直接 npm 安装

npm install dsh-experience-plugin

本地开发安装(Windows 跨盘符时先建 C 盘 junction):

New-Item -ItemType Junction -Path "$env:USERPROFILE\.dsh\plugins\dsh-experience-plugin" -Target "<项目绝对路径>"
dsh plugin --profile web add link:C:/Users/<用户名>/.dsh/plugins/dsh-experience-plugin

构建

pnpm install
pnpm build

浏览器 ↔ host 通信

host 与浏览器半区共用一条精确 Fetch 路由 /api/dsh-experience-plugin (connection.fetch.register),各功能把逻辑通道登记进来,请求体为 { channel, endpoint, payload } 信封,响应为 ConnectionRpcResult JSON。

connection.rpc.handle() 在 0.1.5 里对第三方插件不可用:它内部是 owner.effect(() => owner.webServer.register(route)),而 owner 恒为 connection 服务自身的 ctx(inject 只有 credentials),调用方注入 webServer 也无效。 官方 api-gateway 因此只走 rpc.intercept('/api', …),而 /api 拦截器全局唯一, 第三方插件无法共用。connection.fetch.register() 是 0.1.5 里可用的官方扩展点, 并自动继承 Connection 的 Host/Origin 围栏与浏览器会话鉴权 (官方 dsh-client-file-upload 同款用法)。

目录结构

按功能模块组织在 src/features/ 下:

  • model-reasoning/:模型思考等级
  • model-params/:模型参数手动覆盖
  • cli-mimic/:CLI 请求模拟
  • open-folder/:打开文件夹
  • settings-page/:设置页全屏化
  • auto-load-history/:自动加载历史
  • my-rules/:全局指令(My Rules,读写 ~/.dsh/AGENTS.md)
  • mcp-manager/:MCP server 管理
  • skill-manager/:Skill 管理
  • module-toggles/:模块开关
  • daily-optimization/:设置页「日用优化」分区
  • settings/:统一配置卡片
  • rpc-channel.ts:host 侧唯一 RPC 入口路由(connection.fetch.register)

浏览器半区另在 src/client/ 提供两个跨功能基础设施:

  • rpc-transport.ts:createExperienceRpc(),与 host 入口路由配套的 RPC 调用器
  • settings-access.ts:settingsScope 访问面封装(describe / update / mutate)

License

MIT