DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-view-manager

View Manager

管理 DeepSeek Harness Web GUI 中的对话视图标签页(对话/轨迹/…):启用、隐藏、重新排序和重命名视图标签,支持按语言环境区分的文案(zh/en)以及 npm 更新提醒。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-view-manager@0.2.1
README兼容性版本

兼容性与来源证明

View Manager 以 dsh-view-manager 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.1stable
2026/9/14
0.2.0stable
2026/9/1
0.1.0stable
2026/8/28

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Pet@linxin666/dsh-pet适用于 dsh Web GUI 的多宠物伴侣插件:由注册表驱动的浮动宠物,可响应模型活动,支持为每只宠物命名、抚摸/喂食互动以及亲密度评分

README

dsh-view-manager

Manage the view tabs in the DeepSeek Harness Web GUI session header — the tabs contributed through the conversation.view slot (e.g. Chat / 对话, Trajectory / 轨迹, and any future view plugins).

English简体中文

Features

  • Enable / disable: disabling a view tab hides its label in the session header (the view itself keeps working)
  • Reorder: move tabs up/down to change their display order
  • Rename: set a custom display label (empty restores the default)
  • Locale-aware: plugin copy follows the DSH UI language (zh / en)
  • Local storage: configuration lives in browser localStorage and applies immediately — no restart needed
  • Update reminders: automatically detects newer versions on npm; a red badge on the button plus an update card in the panel — with "Update now / Ignore this version / Later"

Preview

Runcat-Views

Install

Option 1: install from npm (recommended):

dsh plugin --profile web add dsh-view-manager

Option 2: install from GitHub:

dsh plugin --profile web add github:runcat-tommy/dsh-view-manager

Option 3: local development — clone this repo, then run from inside the project folder:

cd dsh-view-manager
dsh plugin --profile web add .

Restart the Web UI after installing, then open any session — a ⚙ Runcat-Views button appears at the far right of the session header.

Usage

  1. Open a session (Chat or Trajectory)
  2. Click ⚙ Runcat-Views at the far right of the session header
  3. Each view gets one row:
    • Toggle: enable / disable (disabled = tab hidden)
    • Original: the default label (follows the UI language)
    • Input: custom display name (empty restores default)
    • ↑ / ↓: reorder
    • Reset: clear all custom configuration

Update reminders

  • When a new version is found, a red badge appears on the button; hover to see the version number
  • An update card shows at the top of the panel:
    • Update now → confirm the command → run the update → verify the version → prompt to restart the Web UI
    • Ignore this version → stop reminding for that version (restore via "Restore reminder" in the card)
    • Later → collapse the card
  • In local development mode (link/file source) the update button is disabled automatically

How it works

  • Data source matches the host: slots.entries("conversation.view") (same as viewTabs()), so every current view registration is visible
  • The host renders tabs with no hide/reorder/rename extension point, so this plugin applies its configuration at the DOM layer: buttons inside [role="tablist"] are aligned to the entries order; hiding uses display:none, reordering uses flex order, renaming rewrites textContent; a MutationObserver re-applies after React re-renders
  • The management entry mounts on conversation.session.header.utilities (list/session)
  • Copy is registered through the locale service (namespace viewManager) and follows the DSH language
  • Update detection: the node half exposes /view-manager-api/version | check-update | update (loopback-trusted), comparing the npm registry against the local version; after updating, the local version is re-read and verified instead of trusting the exit code

Development

dsh-view-manager/
├── package.json          # dsh.bundle.patch + dsh.client declarations
├── cordis.patch.yml      # profile-layer bundle patch
├── lib/
│   ├── index.js          # node half: update check/run API routes
│   └── client.js         # browser half: manager panel + DOM apply + update card

Local debugging (hot reload needs the dev:web build; otherwise restart the Web UI after changes):

dsh plugin --profile web add file:./dsh-view-manager

License

MIT