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.

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

dolphin-pet-plugin

Dolphin Pet Plugin

Cute desktop pet for DeepSeek Harness — customize name, upload your own pet image, or generate one with AI. · DSH 桌面宠物插件:自定义名字、上传宠物图片或 AI 生成。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:bo961386926/dolphin-pet-plugin#d4b65df94618b6d2a9fadcb74d3a4b68bc8f33c5
READMECompatibilityVersions

Compatibility and provenance

Dolphin Pet Plugin is published as dolphin-pet-plugin and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/26/2026

Versions

1.0.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/26/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.Remote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and r

README

🐬 Dolphin Pet Plugin for DeepSeek Harness

A cute desktop pet plugin for DeepSeek Harness (DSH) web interface.

中文文档请见 README.zh.md

Features

  • 🐬 Built-in Dolphin — A cute SVG dolphin named "波波" (Bobō) with animations, expressions, and idle swimming
  • ✏️ Custom Name — Give your pet any name you like (up to 20 characters)
  • 🖼️ Custom Image — Upload your own PNG/JPG/GIF image as the pet
  • 🤖 AI Generated — Generate a pet image with AI using your DSH-configured models
  • ❤️ Mood System — Pet it, feed it, watch its mood change over time
  • 💾 Persistent — State persists across sessions (both locally and server-side)
  • ⌨️ Shortcuts — Press P to pet, F to feed
  • 🖱️ Draggable — Drag the pet anywhere on the screen

Installation

Via DSH Plugin Market

If you have dshmarket installed:

  1. Open Settings → Plugin Market
  2. Search for "dolphin-pet-plugin"
  3. Click Install

Via CLI

dsh plugin --profile web add dolphin-pet-plugin

Local Development

# Clone or copy this plugin directory
cd dolphin-pet-plugin

# Install into your DSH web profile
dsh plugin --profile web add .

Then restart dsh web and refresh the page. The pet will appear in the bottom-right area of your screen.

Usage

ActionEffect
Drag the petMove it anywhere on screen
Click the pet (no drag)Pet it — hearts + mood increase
🫳 摸摸 button / P keyPet the pet
🐟 喂食 button / F keyFeed the pet
⚙️ Settings buttonOpen settings panel

Settings

Click the ⚙️ button to open the settings panel where you can:

  • Change name — Type any name for your pet
  • Choose pet image:
    • 🐬 Dolphin (default built-in SVG)
    • 🖼️ Custom — upload your own image or generate one with AI

How It Works

The plugin has two halves:

  1. Host (Node.js) — Registers HTTP API routes and injects the client script into every served index.html
  2. Client (Browser JS) — Renders the pet, handles interactions, and provides the settings panel

Configuration is saved server-side when available, with localStorage as a fallback.

Development

The project structure:

dolphin-pet-plugin/
├── package.json          # Plugin manifest with dsh.bundle config
├── cordis.patch.yml      # Cordis bundle patch (how plugin mounts)
├── README.md             # English documentation
├── README.zh.md          # Chinese documentation
├── lib/
│   ├── index.js          # Host entry — inject routes + script
│   └── routes.js         # HTTP API routes
└── client/
    └── client.js         # Client-side: pet rendering + settings

API Endpoints

MethodPathDescription
GET/plugins/dolphin-pet/client.jsServe client script
GET/plugins/dolphin-pet/configGet current pet config
POST/plugins/dolphin-pet/configUpdate pet config
POST/plugins/dolphin-pet/uploadUpload custom pet image
POST/plugins/dolphin-pet/ai-generateGenerate pet image with AI

Publishing to DSH Market

To publish this plugin to the DSH plugin marketplace (see PUBLISH.md for the full guide):

  1. Publish to npm (optional but recommended - enables prebuilt installs):

    npm publish
    
  2. Submit to awesome-dsh-plugin - the market's data source:

    • Fork https://github.com/awesome-dsh-plugin/awesome-dsh-plugin
    • Add data/plugins/bo961386926__dolphin-pet-plugin.yml:
      url: https://github.com/bo961386926/dolphin-pet-plugin
      name: bo961386926/dolphin-pet-plugin
      category: fun
      description:
        en: A desktop pet that swims in the web GUI - rename it, upload your own pet image, or generate one with AI.
        zh: 在网页界面里游来游去的桌面宠物--可以改名字、上传自定义图片,或用 AI 生成形象。
      
    • Run npm ci && node scripts/generate-readme.mjs and commit both READMEs
    • Open a PR (repo must be at least 1 day old with 10+ commits)

    The marketplace syncs from this registry daily; your plugin typically appears within a day after merge.

License

MIT