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.

Compact Chat Ui — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

dsh-compact-chat-ui

Compact Chat Ui

DSH web plugin: shrink chat content density — markdown typography tokens, message-body spacing and the user bubble, live-adjustable from a card under Settings → Plugins. Host half registers the settings namespace that makes the Plugins tab dispatch the card.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:secyborg/dsh-compact-chat-ui#eca935121a43e9c3be5a3f236700071afb100690
READMECompatibilityVersions

Compatibility and provenance

Compact Chat Ui is published as dsh-compact-chat-ui and currently resolves to version 0.9.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/28/2026

Versions

0.9.2stable
8/28/2026
0.9.1stable
8/28/2026
0.8.0stable
8/28/2026
Show 1 more versionCollapse versions
0.7.1stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.9.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/28/2026
View source ↗
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

Related plugins

More verified plugins in ui-customization.

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

dsh-compact-chat-ui

DSH web 插件:为聊天内容区提供排版设置卡片(设置 → 插件 → 可配置), 可实时调整字号、行高、块间距;输入框与界面其他部分保持原生大小。

原理

聊天正文排版硬编码在两处且无设置项:

  1. 助手 markdown 由 shell 设计令牌控制(body 上 --dsw-font-markdown-base: 16px/28px, 以 font: var(...) 显式消费,不吃继承);
  2. 用户气泡 直接在 CSS module 里写 font-size:16px,类名哈希每次构建都变。

插件在浏览器端运行时发现真实选择器/令牌并生成覆盖样式(改构建哈希不影响):

  • 令牌:读取 computed style,按比例改写后带 !important 原位覆盖
  • 规则:只扫白名单模块(MessageItem / AssistantMarkdown,不含 InputBar)
  • 块间距:缩放 _markdown_ 系规则的 margin 与消息体 flex gap,重置 li::marker 的 28px 钉死行高

安装

npm pack                                # 生成 dsh-compact-chat-ui-0.5.0.tgz
dsh plugin --profile web add ./dsh-compact-chat-ui-0.5.0.tgz

安装后重启一次应用(宿主在启动时装载插件清单),刷新页面生效。

使用

设置 → 插件 → 可配置 tab → “聊天区排版”卡片:

滑杆范围默认原始值
字号11–18px15px16px
行高1.20–2.001.50~1.75
块间距25%–150%50%100%

改动即时生效并自动保存(localStorage),也可用控制台:

localStorage.setItem("dsh-compact-chat-ui:px", "14");  // 字号
localStorage.setItem("dsh-compact-chat-ui:lh", "1.4"); // 行高
localStorage.setItem("dsh-compact-chat-ui:mg", "0.5"); // 块间距
location.reload();

卸载

dsh plugin --profile web remove dsh-compact-chat-ui