DeepSeek Harness 插件

OLEDCare

OLED burn-in care for the DeepSeek Harness Web GUI: true-black nap screensaver, pure-black surfaces, gamma-aware text dimming with an idle/focus ladder, and slow accent-hue rotation.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
domparent/OLEDCare
最近更新
2026年8月21日
分类
界面增强
GitHub stars
2
载体类型
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/domparent/OLEDCare
插件名:OLEDCare
作者:domparent

检查来源文件

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

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

OLEDCare

A DeepSeek Harness plugin (#dsh-plugin) that protects OLED panels during long agent sessions.

OLED burn-in protection for the DeepSeek Harness Web GUI (dsh web).

OLED panels wear where pixels stay lit for hours — exactly what a long agent session does to backgrounds, hairline borders, and bright text. OledCare pushes back on all three:

  • Nap mode — a true-black (#000) full-screen screensaver, so every background pixel switches fully off. It engages automatically after idle minutes, or on demand from the ☾ Nap button in the session header. A dim drifting clock (so the clock itself does not burn in) shows live agent status — agent is working / waiting for your input / idle — and any mouse or key input wakes the screen.
  • Pure-black surfaces — every dark-scheme background token goes to #000000; background pixels turn fully off instead of glowing dark gray.
  • Fainter static borders — hairline dividers sit at the same pixels all day, so their dark values go dimmer than the shipped palette.
  • Gamma-aware dimming — white text and bright accent tokens are scaled as a linear-light luminance ratio, so perceived contrast between text shades is preserved while total light output drops.
  • Idle/focus ladder — normal intensity → deep dim when idle or the window loses focus → nap. Three rungs, each configurable.
  • Hue rotation — the accent hue drifts through a ~12-hour cycle so static brand-colored icons wear every subpixel evenly.

Requirements

  • DeepSeek Harness (@deepseek-ai/dsh) with the web profile (dsh web)
  • pnpm on PATH (dsh plugin forwards to it)

Install

From GitHub:

dsh plugin --profile web add github:domparent/OLEDCare

From a local checkout:

dsh plugin --profile web add /absolute/path/to/OledCare

Then restart dsh web and reload the browser tab. Open Settings → OLED Care in the settings left nav.

No build step runs on install: client.js ships in the harness browser-module format exactly as the browser loads it, so GitHub installs work without allowlisting a prepare script.

Uninstall

dsh plugin --profile web remove dsh-oled-care

Restart dsh web afterwards.

Settings

Three presets — Off, Balanced (default: black surfaces, 85% text, nap at 10 min), Maximum (70% text, deep dim at 3 min, nap at 5 min) — plus a Custom state that appears when you tweak any field:

FieldWhat it does
Pure black backgroundsEvery surface goes #000; background pixels turn fully off
Fainter static bordersDims hairline borders beyond the shipped palette
Text/accent intensityLinear-light scaling of white text and bright accents
Hue rotation~12 h accent-hue cycle for even subpixel wear
Deep-dim after idleMinutes without input before the deeper intensity applies
Deep-dim intensityThe dimmer level used while idle or unfocused
Deep-dim when unfocusedApply deep dim whenever the window loses focus
Auto nap after idleMinutes without input before the nap screen engages

A diagnostics box at the bottom of the settings page shows the live token layer, the resolved body background, the current dim rung, and the nap/idle state.

How it works

  • The package is a profile bundle: dsh.bundle.patch in package.json points at cordis.patch.yml, which inserts one plugin row. The client module system scans the row's dsh.client declaration into the browser roster and serves client.js at /plugins/dsh-oled-care/client.js.
  • All visual changes go through the client theme service as one replaceable token-override layer — the shipped theme is never edited, and removing the plugin restores it exactly.
  • UI is composed through the slot system only: shell.overlay (nap screen), conversation.session.header.actions (nap button), and settings.section (settings page).

Limitations

  • Settings live in memory: they reset to the Balanced preset when dsh web restarts.
  • The light color scheme is left essentially untouched — OLED care targets dark UIs.
  • Developed against dsh 0.1.0-rc.x. The browser module format (window.__ModuleLoader__.load) is an internal harness contract; pin your dsh version or check release notes when upgrading.
  • No network calls, no telemetry, no persistence, no access to conversation content.

License

MIT — see [LICENSE](LICENSE).