DeepSeek Harness 插件

deepseek-harness-split-screen

iTerm-style split-screen session manager for the DeepSeek Harness Web GUI.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
syncended/deepseek-harness-split-screen
最近更新
2026年8月20日
分类
插件市场与管理
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/syncended/deepseek-harness-split-screen
插件名:deepseek-harness-split-screen
作者:syncended

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

DeepSeek Harness — Session Split Screen

An iTerm-style session multiplexer for the DeepSeek Harness Web GUI. It puts several Harness sessions on one screen and lets each pane point at a different workspace.

Features

  • Nested vertical (side-by-side) and horizontal (stacked) splits.
  • Drag any divider to resize adjacent panes.
  • Drag one pane header onto another to swap their sessions.
  • Up to 12 panes in one layout.
  • Dedicated Split workspace mode in the main conversation area, toggled from the native sidebar footer.
  • Pane-local chat tabs: focus a pane, then choose a session from the standard Harness session list or the pane’s + menu.
  • Sidebar selection adds or activates a tab in the focused pane without changing another session’s native Chat view.
  • Live streaming transcript, session status, queued replies, stop action, and older-history loading in every pane.
  • Compact per-pane model and access-mode popup selectors with icons, including guarded Full access selection.
  • Clickable context ring with used/remaining/limit details, plus live turn/step counts, token throughput (tok/s), input/output token totals, and cache-hit metrics.
  • Structured-input indicator for approvals, plan review, and questions, with a jump to the full Harness view.
  • Layout, split ratios, pane order, selected session ids, and unsent pane drafts persist in browser localStorage.
  • English, Russian, and Chinese UI tied to the Harness locale, dark-theme token compatibility, and keyboard controls.

Install

From npm after publication:

dsh plugin --profile web add @syncended/dsh-split-screen

From this checkout during development:

dsh plugin --profile web add /home/syncended/deepseek-harness-split-screen

Some pnpm-backed profiles require the workspace-root flag:

dsh plugin --profile web add -w /home/syncended/deepseek-harness-split-screen

Restart dsh web after first installation and refresh the existing Web GUI. A Split action appears in the native sidebar footer.

Usage

1. Click Split in the native sidebar footer. The workspace temporarily occupies the center conversation column. 2. Select a pane and use Split vertically or Split horizontally in its header. 3. With the target pane focused, choose a session in the native sidebar. It is added as a tab in that pane; selecting an already-open session focuses its existing tab. 4. Use the pane’s + button to add tabs without changing the sidebar selection. Closing a pane tab never deletes its Harness session. 5. Resize with the divider or drag one pane header onto another to swap complete pane tab stacks. 6. Click Back to Chat or the sidebar Split action again. Harness restores its native conversation surface on the active pane’s session.

Keyboard shortcuts

ShortcutAction
Alt+Shift+VSplit the active pane vertically
Alt+Shift+HSplit the active pane horizontally
EnterSend from the focused composer
Shift+EnterInsert a newline

Workspace behavior

A single dsh web Host exposes all workspaces registered in that profile. The plugin can mix their sessions freely in one layout; panes do not have to share a cwd or repository.

This version does not aggregate sessions from separate DSH server processes or different remote URLs. Those are separate Hosts and would require a multi-connection runtime rather than a client layout plugin.

Development

npm run check
npm test
npm pack --dry-run

The package has two runtime faces:

  • lib/index.js — no-op Host loader entry.
  • lib/client.js — dependency-free DSH lazy client module.

The browser half uses supported public seams:

  • A dynamically registered conversation occupant for the center workspace; disposing it restores Harness’s shipped ConversationRoot unchanged.
  • sidebar.footer.action for the persistent Split mode toggle.
  • ctx.sessions.list, open(id), binding(id).session, and public session projections for native selection tracking, history, streaming, prompts, permissions, token/context metrics, cancellation, and paging.
  • ctx.modelDirectories.directoryFor(id) for the shared per-session model catalog and selection state.
  • ctx.workspaces.list for native workspace and session labeling.

The layout is a persisted binary tree. Split nodes own direction and ratio; leaf nodes own stable pane ids and optional session ids. Removing a leaf collapses its parent, while header drag-and-drop swaps leaf session assignments without rebuilding the tree.

Current limitations

  • The compact panes intentionally render conversational text and compact tool/command rows, not the full Harness card registry.
  • Structured approvals, plan review, and ask_user_question must be completed in the normal main view; the pane provides a direct jump there.
  • Skills, slash-command insertion, and the rich + menu intentionally stay in native Chat to keep small panes compact.
  • Attachments can be represented in history, but this version sends text prompts only.
  • Browser persistence is local to the current origin/profile.

Requirements

  • DeepSeek Harness 0.1.0-rc.6 or compatible.
  • The Web profile (dsh web).
  • Node.js 18 or newer.

License

MIT — see [LICENSE](./LICENSE).