DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Skin Argentina — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

dsh-skin-argentina

Skin Argentina

阿根廷·梅西 (Argentina · Messi) 的 DeepSeek Harness GUI 网页皮肤:天蓝色/海军蓝/金色别名令牌主题、照片和金色背景、漫游的 #10 徽章。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:henrychenhao/dsh-skin-argentina#5d62c0acfc57d16f0661beb8617539e683713fd9
README兼容性版本
lightdark

兼容性与来源证明

Skin Argentina 以 dsh-skin-argentina 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/27

版本

0.1.0stable
2026/8/27

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/8/28
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Deepseek Idesigndeepseek-idesign作为原生 DeepSeek Harness 对话视图的 iPolloWork Design Studio 及其精选设计模板。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Dream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每款皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。在原生 DSH Web 和第三方桌面客户端(DSH Desktop)中运行:8 款原创高端主题、玻璃材质、壁纸 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).