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.

Desktop Pet — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

@maximeshe/dsh-desktop-pet

Desktop Pet

Interactive desktop pet for the DeepSeek Harness Web GUI

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

npx -y @deepseek-ai/dsh plugin --profile web add github:chengyingshe/dsh-desktop-pet#7f055b2c9f058af5c89c8b743cf31724a1150ef4
READMECompatibilityVersions
Shin-chan desktop pet state preview

Compatibility and provenance

Desktop Pet is published as @maximeshe/dsh-desktop-pet 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
9/13/2026

Versions

0.1.0stable
9/13/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
★ 0
Weekly downloads
0
Last push
9/13/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.

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 pluginsClient 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.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-desktop-pet

A configurable, interactive desktop pet for the DeepSeek Harness Web GUI.

Features

  • Idle, walking, running, sleeping, thinking, celebrating, surprised, dragged, and talking states.
  • Uses a distinct image for each state, with built-in artwork as a safe fallback.
  • Context-sensitive speech for user activity and DSH response generation.
  • Click, double-click, drag, keyboard, reduced-motion, and mobile support.
  • Position, visibility, sound, and custom character images persisted locally.
  • Right-click the pet to replace the current state's image or restore defaults.
  • Runtime event API for switching a complete character pack without changing core code.
  • Built-in Shin-chan, orange-cat, and Anya-inspired character packs, switchable from the pet's right-click menu.

Character packs

See assets/characters/README.md and copy assets/characters/example/manifest.json. Supported states are idle, walk, run, sleep, think, celebrate, surprised, drag, and talk.

The bundled default pack is assets/characters/shinchan/manifest.json. Its nine generated sprites are embedded into lib/client.js during pnpm build, so the installed plugin does not need a separate web server for the artwork.

Here is the bundled Shin-chan desktop pet sprite sheet. The states are arranged left to right and top to bottom as idle, walk, run, sleep, think, celebrate, surprised, drag, and talk.

Shin-chan desktop pet state preview

A host client can switch characters at runtime:

window.dispatchEvent(new CustomEvent("dsh-desktop-pet:set-character", {
  detail: {
    name: "My Pet",
    size: 150,
    assets: {
      idle: "/assets/my-pet/idle.png",
      walk: "/assets/my-pet/walk.png"
    }
  }
}));

Missing states fall back to the idle image, then to the built-in vector artwork.

Right-click the pet and choose 切换宠物 to cycle between the bundled 小新、橘猫和阿尼亚角色包。The selected pet is saved locally and restored when the Web GUI is reopened.

Sprite sheet workflow

Generate a square 3 by 3 sprite sheet in this order:

idle, walk, run
sleep, think, celebrate
surprised, drag, talk

Then split it with the bundled crop script (which uses explicit top-left coordinates):

pnpm split:sprites /path/to/sprite-sheet.png assets/characters/my-pet

Development

pnpm install
pnpm build
dsh plugin --profile web add link:$PWD

从 GitHub 安装发布版本:

dsh plugin --profile web add github:chengyingshe/dsh-desktop-pet#main

Git 安装会通过 prepare 自动生成 lib/ 发布产物。

也可以从 npm 官方源安装:

dsh plugin --profile web add @maximeshe/dsh-desktop-pet

发布由 GitHub Actions 自动完成。先在仓库 Actions secrets 中添加具有发布权限的 NPM_TOKEN,再创建与 package.json 版本一致的 GitHub Release(例如版本 0.1.0 对应标签 v0.1.0)。

Restart dsh web, refresh the existing GUI at http://127.0.0.1:3080, and look in the bottom-right corner.