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.

Skin Claude Code — DSH Plugin for DeepSeek Harness
← Plugins
S

dsh-skin-claude-code

Skin Claude Code

A Claude Code-inspired skin for the DeepSeek Harness web GUI: warm charcoal/cream surfaces, terracotta accent, and monospace terminal typography.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lucasx001/dsh-skin-claude-code#4c2bd6fb7bb094a4f9a7cc7ce2661d2c8fd99874
READMECompatibilityVersions

Compatibility and provenance

Skin Claude Code is published as dsh-skin-claude-code and currently resolves to version 0.1.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/11/2026

Versions

0.1.3stable
9/11/2026

Related plugins

Loading related plugins…

Latest
0.1.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
9/11/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

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.

npx @deepseek-ai/dsh plugin --profile web add dsh-skin-claude-code

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

npx @deepseek-ai/dsh plugin --profile web remove dsh-skin-claude-code

How it works

  • package.json declares two things:
    • dsh.bundle.patch → cordis.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 <style> 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