DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh_center-column-shift

Center Column Shift

Center Column Shift for DeepSeek Harness:一个可拖动的手柄,可将对话栏向左移动,为右侧腾出更多空间,以便显示更多插件内容

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

npx -y @deepseek-ai/dsh plugin --profile web add github:xiaozhengdeng/dsh_center-column-shift#a922deeb1fe712a5053656d45a482c0c519ad555
README兼容性版本
Center Column Shift screenshotCenter Column Shift in standard mode

兼容性与来源证明

Center Column Shift 以 dsh_center-column-shift 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/8/21

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Client Ui Git Graph@linxin666/dsh-client-ui-git-graph外部 dsh Web GUI 插件:空会话 Git 分支选择器和 Git 图,包含实际的主机端 Git 操作与防护,作为 dsh 配置文件包Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Usage@linxin666/dsh-usage用于 dsh Web GUI 的使用统计插件:检测各提供商的余额和编码计划配额,并提供实时令牌使用记录,同时在侧边栏条目中显示当前会话提供商今日的使用量Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义

README

English | 中文

dsh_center-column-shift

Center Column Shift — a browser (client) plugin for DeepSeek Harness that shifts the whole conversation column left with a draggable handle, freeing up space on the right so plugin content has more room to show.

Center Column Shift screenshot

Center Column Shift in standard mode

What it does

DeepSeek Harness renders a three-column frame: sidebar | conversation | details. Plugin surfaces (e.g. the AgentTeams activity panel, an OmniParser/OmniVision dock, or any panel occupying the right side of the frame) have to share the width with the conversation column, so they often end up squeezed or partially hidden behind it.

This plugin adds a small floating handle (⇔ 移动内容) into the frame-wide shell.overlay layer, vertically aligned with the "Full access" chip. Dragging it applies a translateX() transform to the entire conversation column — session content and the input composer move together — sliding the chat left so the right side opens up. The plugin content sitting on the right then gets the extra space and can display more (wider columns, full panels, more details).

  • Drag the handle to shift the column left (clamped to min(1000px, 50% of frame width)).
  • Double-click the handle or press ↺ to reset to the original position.
  • The offset survives session switches: the plugin re-locates the scroll body live (via MutationObserver + ResizeObserver) and replays the current offset whenever the conversation nodes are rebuilt.

Install

# build (from the repo root; requires the DSH checkout's toolchain, see below)
pnpm build

# install into a profile (bundle layer)
dsh plugin --profile <name> add file:G:/deepseek/plugins/dsh_center-column-shift

The package declares itself as a dsh.client plugin (platform: web) and ships a dsh.bundle patch row, so dsh plugin add promotes it to a profile bundle layer; dsh-client-modules then scans the dsh.client declaration and loads the browser half into the web boot manifest automatically. No host-side behavior is provided — the whole feature is client-side.

Note: the package name uses an underscore (dsh_center-column-shift); the client-bundle module id must equal the package name, so it stays in sync automatically (read from package.json at build time).

Usage

After installation and a page refresh, the handle appears vertically centered on the right edge of the conversation column (or above the composer when the access chip is not found). Drag it; release to settle with a smooth transition.

Development

# node half (thin stub) + client half + browser closure bundle
pnpm build

# or step by step, using the DSH checkout toolchain:
$tsc    = "G:\deepseek\deepseek-harness\node_modules\typescript\bin\tsc"
$tsdown = "G:\deepseek\deepseek-harness\node_modules\tsdown\dist\run.mjs"
node $tsc -p tsconfig.json          # node half -> lib/
node $tsc -p tsconfig.client.json   # client half -> lib/client/
node $tsdown                        # closure bundle -> lib/client.js

The client bundle follows the harness clientBundle protocol (window.__ModuleLoader__.load); react, @deepseek-ai/cordis and @deepseek-ai/dsh-client-runtime stay external and resolve from the loader module table at runtime.

License

MIT


dsh_center-column-shift

Center Column Shift — DeepSeek Harness 的浏览器端(client)插件:通过一个可拖动把手,把整个会话列向左平移,给右侧腾出空间,让插件内容显示更多。

Center Column Shift 效果图

Center Column Shift 标准模式效果

功能简介

DeepSeek Harness 的界面是 侧栏 | 会话 | 详情 三列布局。各类插件的界面(例如 AgentTeams 活动面板、OmniParser/OmniVision 识别面板,或任何占据框架右侧的插件面板)都要和会话列共享宽度,经常被挤得很窄,甚至被会话列遮挡一部分。

本插件在全局浮层 shell.overlay 上添加一个悬浮把手(⇔ 移动内容),与「Full access」芯片垂直对齐。拖动把手会对整个会话列应用 translateX() 变换——会话内容和输入框一起整体向左平移,右侧随之空出来。原本显示在右侧的插件内容就能利用多出来的空间,展示更多内容(更宽的列、完整的面板、更多细节)。

  • 拖动把手,会话列整体向左平移(上限 min(1000px, 50% 帧宽))。
  • 双击把手或点击 ↺ 复位到原位。
  • 偏移量在切换会话后自动保持:插件通过 MutationObserver + ResizeObserver 实时重定位滚动容器,会话节点重建后自动重放当前偏移。

安装

# 构建(在仓库根目录;需要 DSH checkout 的工具链,见下文)
pnpm build

# 安装到某个 profile(bundle 层)
dsh plugin --profile <名字> add file:G:/deepseek/plugins/dsh_center-column-shift

本包同时声明为 dsh.client 插件(platform: web)并附带 dsh.bundle patch 行,因此 dsh plugin add 会把它提升为 profile 的 bundle 层;dsh-client-modules 会扫描 dsh.client 声明并自动把浏览器半加载进 Web 启动清单。本插件不提供任何宿主侧行为,整个功能都在浏览器端。

说明:包名带下划线(dsh_center-column-shift);client bundle 的模块 id 必须等于包名,构建时从 package.json 自动读取,始终保持同步。

使用方法

安装并刷新页面后,把手会出现在会话列右侧垂直居中的位置(找不到访问模式芯片时则显示在输入框上方)。拖动把手,松开后平滑归位。

开发

# node 半(stub)+ client 半 + 浏览器 closure bundle
pnpm build

# 或使用 DSH checkout 工具链分步执行:
$tsc    = "G:\deepseek\deepseek-harness\node_modules\typescript\bin\tsc"
$tsdown = "G:\deepseek\deepseek-harness\node_modules\tsdown\dist\run.mjs"
node $tsc -p tsconfig.json          # node 半 -> lib/
node $tsc -p tsconfig.client.json   # client 半 -> lib/client/
node $tsdown                        # closure bundle -> lib/client.js

client bundle 遵循 harness 的 clientBundle 协议(window.__ModuleLoader__.load);react、@deepseek-ai/cordis 和 @deepseek-ai/dsh-client-runtime 保持 external,运行时从 loader 模块表解析。

许可证

MIT