DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

chat-pace

Chat Pace

为 DSH Web 界面提供可配置的聊天自动滚动:跟随、平滑滑动、按节分段阅读、步进和暂停模式,并支持屏幕控制、快捷键以及设置页面(conversation.input.left / conversation.composer.dock / conversation.session.header.actions / settings.section 条目

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

npx -y @deepseek-ai/dsh plugin --profile web add github:TheGoodMorty/chat-pace#7b0db6a53db29c0facf60c74d8e509c6d3ded97d
README兼容性版本

说明

为 DSH Web 界面提供可配置的聊天自动滚动:跟随、平滑滑动、按节分段阅读、步进和暂停模式,并支持屏幕控制、快捷键以及设置页面(conversation.input.left / conversation.composer.dock / conversation.session.header.actions / settings.section 条目)。

兼容性与来源证明

Chat Pace 以 chat-pace 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

1.0.0stable
2026/9/5

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/19
查看源码 ↗
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

chat-pace

Configurable chat auto-scroll for the DeepSeek Harness web UI — agent output never flies by faster than you can read.

Adds five scroll modes, on-screen controls, global hotkeys, a full settings page, and per-session reading-position memory. Works alongside the shipped follow logic instead of replacing it, so any mode can be left on safely.

Install

dsh plugin add TheGoodMorty/chat-pace

Then restart the DSH server (compositions are read at boot) and refresh the page. The controls appear in the composer tool row, the composer dock, the session header, and under Settings → Chat Pace.

Modes

ModeBehavior
FollowShipped default: jump to the newest output instantly.
SmoothKeep the newest output in view, gliding at a configurable px/s.
PacedSection-by-section reading: glide to each settled text section, pause for sectionHeight / screenHeight × seconds-per-screen, then continue. Tall sections spend the pause drifting through themselves. Between text sections the view keeps following tool output live, and while a text section is being written the view holds still so the text arrives unread below the fold. Sections already fully visible when they settle are skipped — they streamed in front of you.
StepNo auto-scroll; one section per press (button or hotkey), optionally animated.
HoldThe view is pinned; new output never moves it.

An "output section" is each settled assistant message (assistant-step with status settled/interrupted); tool results and command rows can be opted in.

The Paced reading pause is clamped between a configurable minimum and maximum (up to 80 s), so a single huge section never freezes the view for minutes, and tall sections drift through their text at reading speed instead of sitting still.

Controls

  • Composer tool row — pause/resume, next-section, and the mode menu (always visible)
  • Composer dock — live status line and reading-pause progress bar
  • Session header — mode menu button
  • Settings → Chat Pace — every option: mode, glide speed, seconds-per-screen reading pace, pause clamps, section kinds, behavior toggles, session open position, and a hotkey recorder with conflict detection
  • Global hotkeys (defaults): F9 pause/resume, Ctrl+ArrowDown next section, Ctrl+ArrowUp previous, Ctrl+End jump to latest

User wheel/touch input instantly takes control back from any auto-scroll mode; an optional toggle resumes automatically when you scroll back to the bottom.

Settings persist in localStorage (dsh-chat-pace-settings-v1).

Session open position

"When a session opens" (Settings → Chat Pace) decides where a conversation lands when you open or switch to it: Top, Bottom, or Where I left it. The last reading position of every session is remembered per-session in localStorage (dsh-chat-pace-scrollpos-v1) regardless of this setting — as a row anchor plus offset, so it survives content growth and window resizing — so enabling "Where I left it" later still restores sessions you left before turning it on. Restores run on timers (not requestAnimationFrame), yield instantly if you touch the view mid-restore, and hold their position against the UI's own layout restores for up to 12 seconds.

How it coexists with the shipped follow logic

The shipped ChatView snaps to the bottom on content growth while the reader is at the bottom, and disengages when a scroll event shows reader movement. chat-pace recognizes those snaps (floor-adjacent jumps arriving with scrollHeight growth and no recent user input) and restores the reader's anchor row; the restore reads as reader movement to the shipped handler, so it disengages by itself. Smooth/paced motion is written frame-by-frame as engine-authored scrollTop values — ordinary reader scrolls to the shipped code — so the two never fight over a frame. Reader intent is tracked via wheel/touch/pointer/scroll-key listeners on the scrollport.

Support

A minimal read-only diagnostic handle is exposed as window.__chatPaceDebug in the page console: the engine state, the live settings (via getSettings()), and a bounded ring of recent engine decisions (scrollLog). If something misbehaves, that log is the fastest way to pinpoint it.

License

MIT