dsh-pub/dsh-meow-cat

一只猫在DeepSeek Harness网页界面底部跑过,每次对话回合结束时伴有合成的喵叫声。

项目介绍Project Overview

dsh-meow-cat 是一个 DSH 插件,在 DeepSeek Harness 网页界面每次对话回合结束时,窗口底部会跑过一只小猫并发出“喵~”的合成音效。它由两个纯 JavaScript 文件组成,无需外部资源或依赖。适合为长时间对话增添趣味。注意:浏览器需用户操作后才能播放音频,首次可能无声。

dsh-meow-cat is a DSH plugin that runs a small cat across the bottom of the DeepSeek Harness web UI with a "喵~" speech bubble and a synthesized meow whenever a conversation turn ends. It consists of two plain JavaScript files with no external assets or dependencies. Use it to add lighthearted feedback during long sessions. Caveat: browsers block audio until a user gesture, so the first meow after page load may be silent.

或使用命令行安装(适合开发者)Or use CLI install (for developers)

命令行安装CLI Install

dsh plugin --profile web add github:dsh-pub/dsh-meow-cat

dsh-pub/dsh-meow-cat 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

dsh-meow-cat

Every time a conversation turn ends in the DeepSeek Harness web UI, a small cat 🐈 runs across the bottom of the window with a "喵~" speech bubble and a meow. The meow is synthesized at runtime — no audio assets, no external URLs, no dependencies — and the whole plugin is two plain JavaScript files plus a one-row bundle patch.

Install

npx dshpub add dsh-pub/dsh-meow-cat --profile web

The command pins the current public commit, validates the bundle contract, and forwards to the native dsh plugin --profile web add …. Restart your dsh web process afterwards; the cat loads with the next page load and runs for the first time when the in-flight turn ends.

How it works

  • Node half (lib/index.js): counts finished turns on the host-plane agent/status event (idle = no driver remains scheduled) and serves the count at GET /plugins/dsh-meow-cat/status.
  • Browser half (lib/client.js): polls the endpoint, and on every increment runs a pure-CSS cat animation across a click-through fixed layer and plays the synthesized meow.
  • Meow synthesis: a 16-bit mono WAV is generated in memory — a 520→760→430 Hz pitch contour ("mi-aa-ou") with mid-note vibrato and a nasal harmonic stack — and played as a base64 data URI.

Configuration

Defaults work out of the box. To tune it live, set a JSON override in your browser console (re-read on every poll):

localStorage.setItem("dsh-meow-cat.config", JSON.stringify({
  enabled: true,   // master switch
  pollMs: 1500,    // status poll interval, min 250
  volume: 1.0,     // meow volume 0~1
  debug: false,    // console diagnostics
}))

Known limitations

  • Browsers block audio until the page has seen a user gesture; the very first meow after a fresh page load may be silent (sending any message unlocks it).
  • The turn counter is per dsh web process and host-plane: the cat runs when any session in the process finishes a turn, and the count resets on server restart.
  • The registry badge reports not listed until the listing commit deploys.

License

MIT — see LICENSE.

上一个 Prev dsh-session-report 下一个 Next dsh-plugin-finder