返回目录

dsh-deep-whale

编辑精选维护状态: 活跃

small-tailqwq/dsh-deep-whale

Whale Girl skin series for DeepSeek Harness. 适用于 DeepSeek Harness 的,鲸鱼娘系列皮肤。

前往 GitHub
$ git clone https://github.com/Small-tailqwq/dsh-deep-whale

1,976

星标

57

Fork

TypeScript

语言

NOASSERTION

许可证

2026-08-13

创建于

2026-09-07

最近推送

CC BY-NC-SA 4.0 的 DeepSeek Harness Web GUI 鲸鱼娘皮肤包——maid-atelier 与 orca-link 两套亮/暗双模式皮肤,通过 `dsh plugin --profile web add` 或自带的 dsh-skin-install 技能原生接入 dsh。

DSH 适配

原生运行时

作者声明

安全审计

未审计

最后核验

2026-08-21

许可证

作者未说明

01它能帮你完成什么?

  • Reskin the DeepSeek Harness Web GUI with whale-girl themes

    Two skins — maid-atelier (deep-sea maid atelier: dual maid backdrops, deep-sea blue lace interface, chibi sidebar) and orca-link (pearl-white mechanical cabin, obsidian orca operator, electric-blue link signals) — each with light and dark modes

    DeepSeek Harness (dsh) users who want a themed, personalized Web GUI instead of the default look

  • Install and switch skins guided or manually, without restarting dsh

    Skin registration via the bundled dsh-skin-install skill (lists all skins, explains the attribution chain and license, registers with an absolute path) or the manual `dsh plugin --profile web add` CLI, with config hot-reload switching

    DSH users who want to try multiple skins and toggle them quickly without service interruption

02如何接入 DeepSeek Harness?

前置条件

  • DeepSeek Harness (dsh) installed with a `web` profile
  • pnpm available on PATH — the README troubleshooting table says to run `npm i -g pnpm` if `pnpm not found on PATH`
  • git, for the manual clone-based install

安装步骤

  1. 01

    Lazy install: tell your dsh `安装一下这个皮肤包:https://github.com/Small-tailqwq/dsh-deep-whale` — the bundled dsh-skin-install skill lists all skins, explains the attribution chain and license, and registers/activates the one you pick with an absolute path

  2. 02

    Manual install: `git clone https://github.com/Small-tailqwq/dsh-deep-whale` (clone anywhere)

    $ git clone https://github.com/Small-tailqwq/dsh-deep-whale

  3. 03

    Run `dsh plugin --profile web add <absolute clone path>/maid-atelier` and/or `dsh plugin --profile web add <absolute clone path>/orca-link`

    $ dsh plugin --profile web add <absolute clone path>/maid-atelier

验证接入成功

  • `dsh plugin --profile web list` — you should see the `@dsh-external/dsh-client-ui-skin-*` link: dependency
  • `dsh --profile web --dump-config` — the skin line appears in the combined config with the correct disabled state
  • Refresh the browser page to see the skin; skin toggles hot-reload via config, no dsh restart needed

03DSH 适配与能力边界

DSH 适配原生运行时

Native DSH Web GUI skin pack registered and activated through the `dsh plugin --profile web add` CLI (or the bundled dsh-skin-install skill)

  • Two whale-girl skins with light/dark modes

    the DeepSeek Harness Web GUImaid-atelier (deep-sea maid atelier: dual maid backdrops, deep-sea blue lace interface, chibi sidebar) or orca-link (pearl-white mechanical cabin, obsidian orca operator, electric-blue link signals), each in light and dark mode

  • Guided install via bundled dsh-skin-install skill

    the prompt `安装一下这个皮肤包:<repo URL>` (or `切换皮肤`) sent to your dsh inside the repo directorythe skill lists all skins in the repo, asks which one to activate, explains the author attribution chain and license boundary, then installs with an absolute path

    registers and activates a skin in the dsh web profile configuration
  • Hot-reload skin switching

    the skin enable/disable toggle in the dsh web profile configthe active skin changes after a browser refresh, without restarting dsh

04适合谁?何时不该用?

适合

  • DeepSeek Harness (dsh) users who want a themed, personalized Web GUI instead of the default look
  • DSH users who want to try multiple skins and toggle them quickly without service interruption

不适合

  • Path handling is a common failure mode: a bare directory name (e.g. `add maid-atelier`) is treated as an npm package name and fails with a 404, and relative paths resolve from the directory where dsh is invoked — if the clone location differs from your assumption the command succeeds silently but the skin links to the wrong place and has no effect. Use absolute paths.
  • All skins are derivative works released under CC BY-NC-SA 4.0 (attribution, non-commercial, share-alike) — commercial use is prohibited, and the attribution chain must be kept (see each skin's NOTICE).

05兼容性、维护与安全提示

  • Path handling is a common failure mode: a bare directory name (e.g. `add maid-atelier`) is treated as an npm package name and fails with a 404, and relative paths resolve from the directory where dsh is invoked — if the clone location differs from your assumption the command succeeds silently but the skin links to the wrong place and has no effect. Use absolute paths.
  • All skins are derivative works released under CC BY-NC-SA 4.0 (attribution, non-commercial, share-alike) — commercial use is prohibited, and the attribution chain must be kept (see each skin's NOTICE).
  • Installation depends on pnpm being on PATH; if it is missing the install fails with `pnpm not found on PATH` and you must install pnpm (e.g. `npm i -g pnpm`) first.
2026-08-132026-08-19作者未说明

CC BY-NC-SA 4.0 · actively maintained (last push 2026-08-19, feedback via GitHub issues)

06常见问题

如何把皮肤安装到 DeepSeek Harness?

两种方式:懒人版直接对你的 dsh 说"安装一下这个皮肤包:https://github.com/Small-tailqwq/dsh-deep-whale",由自带的 dsh-skin-install 技能走完整流程;手动版先 `git clone` 仓库,再执行 `dsh plugin --profile web add <绝对路径>/maid-atelier`(或 `orca-link`)。

它是 dsh 原生集成还是 MCP?

原生集成:它是 dsh Web GUI 的皮肤包,通过 `dsh plugin --profile web` 命令注册并激活,不涉及 MCP。

切换皮肤需要重启 dsh 吗?

不需要。皮肤开关走配置热重载,刷新浏览器页面即可看到效果;只有新增/删除插件包时才需要重启 dsh。

安装有什么前置条件和常见坑?

需要 pnpm 在 PATH 中(缺失时用 `npm i -g pnpm` 安装)。路径强烈建议用绝对路径:裸目录名会被当成 npm 包名拉取而 404 失败;相对路径按 dsh 命令的调用目录解析,clone 位置不符时命令不报错但皮肤不生效。

皮肤可以商用吗?

不可以。所有皮肤为衍生创作,整体以 CC BY-NC-SA 4.0(署名-非商业性使用-相同方式共享)发布,禁止商业性使用,署名链见各皮肤 NOTICE 文件。

08数据与来源

  • 作者声明github.com0a3d03251d1e…

    DeepSeek Harness Web GUI 的鲸鱼娘主题皮肤系列(独立分发仓库)。

  • 作者声明github.com0a3d03251d1e…

    ```sh git clone https://github.com/Small-tailqwq/dsh-deep-whale # clone 到任意位置 dsh plugin --profile web add <clone 的绝对路…

页面基于项目公开文档、仓库元数据和 DSH Plugins 的结构化解析生成;最后核验于 2026-08-21。发现错误?提交更正。

🏆

最佳 DeepSeek Harness 插件

从全目录挑出的 12 个值得优先安装的插件,覆盖各个分类。

DSH Plugins 是独立的 DeepSeek Harness 插件市场,与 DeepSeek 官方无关,也不代表官方背书。第三方插件未经安全审计,安装前请审查源码。

每周获取最新的 DeepSeek Harness 插件,绝不滥发。