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 Argentina — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-skin-argentina

Skin Argentina

阿根廷·梅西 (Argentina · Messi) web skin for the DeepSeek Harness GUI: celeste/navy/gold alias-token theme, photo & gold backgrounds, roaming #10 badge.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:henrychenhao/dsh-skin-argentina#5d62c0acfc57d16f0661beb8617539e683713fd9
READMECompatibilityVersions
lightdark

Compatibility and provenance

Skin Argentina is published as dsh-skin-argentina and currently resolves to version 0.1.0. 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/27/2026

Versions

0.1.0stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
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.

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.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-skin-argentina

阿根廷 · 梅西 (Argentina · Messi) web skin for the DeepSeek Harness GUI.

A pure front-end client plugin — no backend, no configuration. Installed, it:

  • Applies a celeste/navy/gold theme via ctx.theme.overrideTokens(...) on top of whatever built-in theme (light / dark / system) you use — follows your Appearance selection automatically.
  • Puts a gold photo background on the sidebar and a Messi photo background on the main area (thin overlays keep text readable; layers self-heal if the UI re-renders).
  • Adds a roaming #10 badge (three-star Argentina roundel) that rolls around the viewport like a marble — pointer-events: none, never blocks clicks — plus a gold ring that slowly rotates.

Screenshots

Light · Dark (roaming #10 badge included):

LightDark
lightdark

Install

From npm (once published):

dsh plugin --profile demo add dsh-skin-argentina

From GitHub (no registry needed):

dsh plugin --profile demo add github:<you>/dsh-skin-argentina

Ad-hoc without a profile:

dsh web --patch ./dsh-skin-argentina/cordis.patch.yml

Then open the GUI — the skin applies on page load. Light and dark both supported; switch in Settings → General → Appearance.

Uninstall

dsh plugin --profile demo remove dsh-skin-argentina

Package layout

dsh-skin-argentina/
├── package.json          # npm manifest + dsh.client / dsh.bundle declarations
├── cordis.patch.yml      # Loader patch row (name: dsh-skin-argentina)
├── lib/client.js         # PRE-BUILT client bundle (the actual skin) + sourcemap
├── src/                  # TypeScript source (client plugin + base64 assets)
├── assets/               # Original image sources (279.JPG, gold images)
└── README.md

The prebuilt lib/client.js is the runtime artifact (closure-factory bundle loaded through the web module loader, module id dsh-skin-argentina). Source is included for transparency and re-building; to rebuild, run the package through the harness repo's clientBundle tsdown preset with dsh-skin-argentina as the bundle id, then ship lib/client.js.

Customization

Everything is parameterized at the top of src/client/index.ts:

  • Palette: CELESTE / NAVY / GOLD constants and the LIGHT_TOKENS / DARK_TOKENS alias tables.
  • Backgrounds: overlay opacity in the .dsh-arg-sidebar-bg / .dsh-arg-main-bg CSS rules; images are base64 in src/assets.ts (regenerate with the assets in assets/).
  • Badge: size, speed and bounce kick in the marbleStep physics block.

Publish

npm login
npm publish            # requires your own npm account/scope

or push to GitHub and install via github:<you>/dsh-skin-argentina. Tag the repo with the dsh-plugin topic for discoverability, and share in the DeepSeek Harness Discord community.

Notes

  • Theme ids of third-party skins are an in-process extension per the platform ui-theme contract; this skin uses an override layer, so it applies automatically on every page load without any selection.
  • The background layering relies on current GUI DOM structure heuristics (left 280px column / right main column with theme background colors). If a future Harness release changes that structure, the skin degrades gracefully to the color theme only (no errors).