lucasx001/dsh-skin-claude-code3

dsh-skin-claude-code

Claude Code 风格皮肤插件:为 DSH Web UI 提供温暖的木炭/奶油色调、赤陶色强调色及等宽终端排版视觉效果。

AI 分析

核心用途是将 DSH 默认的冷灰色调界面替换为 Claude Code 标志性的温暖复古终端风格。适合喜爱该视觉风格、追求极客排版美感的用户。

包名
dsh-skin-claude-code
版本
0.1.3
许可证
MIT
最近更新
2026年8月15日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:lucasx001/dsh-skin-claude-code

dsh-skin-claude-code

English | 中文

A Claude Code–inspired skin for the DeepSeek Harness web GUI.

It restyles the browser surface with Claude Code's signature look:

  • Warm charcoal / warm cream surfaces instead of the stock cool grays
  • Terracotta accent (#D97757) for brand, focus, caret, links, and scrollbars
  • Monospace terminal typography (JetBrains Mono / ui-monospace fallback)
  • Warm-tinted code blocks and code/pre surfaces

The skin stacks a token-override layer over whatever theme is active, so it adapts automatically to light, dark, and system preferences.

Preview

DarkLight
Claude Code skin — darkClaude Code skin — light

Install

The package is a DSH bundle: its package.json declares dsh.bundle.patch, so dsh plugin add installs it and auto-registers it as a profile layer. No cordis.patch.yml editing is required.

dsh plugin --profile web add dsh-skin-claude-code
dsh web

To target a different profile, change --profile. A convenience wrapper also ships in the repo:

./install.sh            # optional profile name, defaults to "web"

Why no manual patch edit

dsh plugin add forwards to pnpm inside the profile, then reconciles the profile's dsh.profile.bundles list: a dependency whose package.json declares dsh.bundle.patch is appended to that list automatically. On boot, the loader applies each bundle's own cordis.patch.yml (which inserts the skin's row), so the plugin mounts with no manual composition edits.


Uninstall

dsh plugin --profile web remove dsh-skin-claude-code
dsh web

How it works

  • package.json declares two things:
    • dsh.bundle.patchcordis.patch.yml, which inserts the plugin row;
    • dsh.client (platform: web, inject on @deepseek-ai/dsh-client-ui-theme), which serves the browser half.
  • lib/index.js is the no-op host half (client-only plugins still export a host entry so the composition loader can resolve the row).
  • lib/client.js registers with window.__ModuleLoader__, then on activation:
    • calls ctx.theme.overrideTokens("dsh-skin-claude-code", TOKENS) — a reversible token layer over the active theme, with light/dark values;
    • injects a `` element for the monospace/terminal chrome, owned by the Cordis fiber so stop/update/remove cleans it up.

No product DOM selectors are used — only the public --dsw-alias-* theme tokens and generic elements — so the skin degrades safely across harness updates.


Customize

Edit the TOKENS map and CSS template in lib/client.js, then republish (or install from your clone). The files under lib/ are hand-written build artifacts, so no bundler step is required to iterate.

License

MIT