DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@maximeshe/dsh-desktop-pet

Desktop Pet

DeepSeek Harness Web GUI 的互动桌面宠物

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

npx -y @deepseek-ai/dsh plugin --profile web add github:chengyingshe/dsh-desktop-pet#7f055b2c9f058af5c89c8b743cf31724a1150ef4
README兼容性版本
Shin-chan desktop pet state preview

兼容性与来源证明

Desktop Pet 以 @maximeshe/dsh-desktop-pet 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/9/13

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Pet@linxin666/dsh-pet适用于 dsh Web GUI 的多宠物伴侣插件:由注册表驱动的浮动宠物,可响应模型活动,支持为每只宠物命名、抚摸/喂食互动以及亲密度评分

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.