Adds a mood-aware Japanese kaomoji to agent replies, picked from a curated kaomojiya.org whitelist and configurable from Settings → General.
Install
# from npm (prebuilt)
dsh plugin --profile web add dsh-kaomoji
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:TianJie52009/dsh-kaomoji
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time — pnpm blocks those until you allow them, so an install can stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED or ERR_PNPM_IGNORED_BUILDS; dsh prints the exact key to add under allowBuilds in your profile’s pnpm-workspace.yaml, and the install works on the next run. Allowing a build is a trust decision: only install sources you trust, and pin a commit (github:owner/repo#sha).
README
Add Japanese kaomoji to DeepSeek Harness (dsh) replies.
🤖 Pure Codex generation — the code and docs in this repository were generated entirely by OpenAI Codex and have not been human-reviewed. Please read and test before use.
dsh-kaomoji is a zero-dependency dsh plugin. Before a model call it injects a
“mood → kaomoji” whitelist rule into the system prompt, so the model copies a
real, well-formed kaomoji verbatim at the right moment. The curated library is
based on 顔文字屋 kaomojiya.org, one of the
largest Japanese kaomoji sites.
简体中文 | English
Features
- Prompt-only design — no stream rewriting, no extra model calls, stable for KV caches.
- Whitelist prevents garbled output — the model copies characters exactly instead of inventing malformed faces.
- 12 mood buckets — happy, love, sad, cry, angry, surprised, confused, shy, playful, encourage, thanks, sorry.
- Three frequency modes —
auto(default; greetings, casual chat, recommendations and empathetic replies get one),frequent,off. - Placement control —
inlineafter the mood-matching sentence (default) orendof the reply. - Visual settings card under Settings → General, saved live without a restart.
- No third-party runtime dependencies — only the dsh
systemPromptservice and Node built-ins.
How it works
- On startup the plugin registers a prompt section named
dsh-kaomoji:guidance(order176) viactx.systemPrompt.section(). - On every prompt assembly the section contributes:
- the active mode and placement rules;
- the mood-categorized kaomoji whitelist;
- an optional user
customPrompt.
- The model emits one of the listed kaomoji where it fits. Because kaomoji are plain text, no custom rendering is needed in the chat UI.
Settings use a dedicated loopback RPC channel (/dsh-kaomoji-settings):
- The Settings → General card reads/writes
~/.dsh/dsh-kaomoji.json. - The Host updates the prompt section and emits
system-prompt/changeimmediately, so the next reply follows the new settings without a restart.
Prompt injection is preferred over post-processing the stream because it avoids
stream parsing, sentence-boundary guessing, and keyword-based sentiment
guessing, and it follows the same mechanism as plugins like dsh-emoji.
Install
Prerequisites: a dsh Web Profile with @deepseek-ai/dsh-system-prompt,
Node.js ^22.19.0 || >=24.0.0, pnpm 11.
cd "$env:USERPROFILE\.dsh\profiles\web"
# Option A: install from npm (recommended)
dsh plugin --profile web add dsh-kaomoji
# Option B: install straight from GitHub (no npm release needed)
dsh plugin --profile web add github:TianJie52009/dsh-kaomoji
# Local development build
pnpm add file:C:\path\to\dsh-kaomoji
If you install with pnpm manually, make sure
"dsh-kaomoji"is listed indsh.profile.bundlesinsidepackage.json.
Restart the Web Host afterwards (or let dsh-hot-reload mount it live).
The Host starts injecting the guidance; the Web client adds the
“Kaomoji (dsh-kaomoji)” card at the bottom of Settings → General.
Configuration
Defaults are ready to use (mode: auto). There are two settings layers:
- Deployment defaults: override
configforid: dsh-kaomojiin the profile’scordis.patch.yml; - User settings: edited in the Settings → General card and stored in
~/.dsh/dsh-kaomoji.json; user settings win. “Reset to defaults” removes the user layer and falls back to the deployment defaults.
Example cordis.patch.yml:
- id: dsh-kaomoji
config:
mode: frequent # off | auto | frequent
placement: end # inline | end
maxPerTurn: 2
customPrompt: "Keep it professional; prefer thanks/encourage kaomoji"
| Key | Type | Default | Description |
|---|---|---|---|
mode |
'off' | 'auto' | 'frequent' |
'auto' |
off disables; auto adds one to greetings, casual chat, recommendations and empathetic replies; frequent adds one to every conversational reply (code-only/formal replies excluded) |
placement |
'inline' | 'end' |
'inline' |
Put the kaomoji after the best-matching sentence, or at the reply end |
maxPerTurn |
number (1–5) |
1 |
Max kaomoji per reply |
customPrompt |
string |
'' |
Extra style/scene guidance; cannot change mode, whitelist or limits |
settingsFile |
string |
~/.dsh/dsh-kaomoji.json |
(advanced) user-settings file path |
settingsAuthority |
'trusted-host' | 'loopback' |
'trusted-host' |
Settings RPC trust scope: by default the local Host plus declared trusted hosts (Tailscale/LAN) may write; set loopback to restrict to the local machine |
Card edits take effect immediately; deployment-default edits in
cordis.patch.yml require a dsh restart.
Remote access (Tailscale / LAN)
- If the dsh page is reachable remotely, the Host already trusts that origin;
with the default
settingsAuthority: trusted-hostthe General card can save settings from the remote session. - If the card reports that the origin is not trusted, add the host to the
server’s
trustedHosts(dsh-client-connection) or temporarily switch tosettingsAuthority: loopbackand edit on the server itself.
Kaomoji library & attribution
The built-in library lives in data/catalog.json, with a
source URL per category:
| Mood | Source page |
|---|---|
| happy | happy-kaomoji |
| love | love-kaomoji |
| sad | sad-kaomoji |
| cry | cry-kaomoji |
| angry | angry-kaomoji |
| surprised | odoroiteru-kaomoji |
| confused | komaru-kaomoji |
| shy / playful | shy-kaomoji |
| encourage | hagemasu-kaomoji |
| thanks | thanks-kaomoji |
| sorry | sorry-kaomoji |
Kaomojiya states the pages are free to use (no registration required, personal and commercial use allowed). This plugin ships a small hand-picked subset and keeps the source attribution. The plugin code itself is MIT-licensed.
To extend the library, update both data/catalog.json (full catalog) and the
CATALOG constant in lib/index.js (the prompt whitelist).
Development
dsh-kaomoji/
├── lib/
│ ├── index.js # Host: config, guidance builder, section registration, settings RPC
│ ├── client.js # Web: Settings → General card (ModuleLoader format)
│ └── index.d.ts # TypeScript declarations
├── data/
│ └── catalog.json # curated kaomoji library with source URLs
├── test/
│ ├── plugin.test.mjs# Host unit tests (guidance + settings RPC)
│ └── client.test.mjs# Client ModuleLoader/store tests
├── cordis.patch.yml # dsh bundle patch
├── package.json
├── README.md / README.en.md
├── CHANGELOG.md
└── LICENSE
npm test # run unit tests
npm pack # verify the publish payload (runs npm test via prepack)
Inspect the injected guidance quickly:
node -e "import('./lib/index.js').then((m) => console.log(m.buildGuidance({ mode: 'frequent', placement: 'end' })))"
Publishing to npm (maintainers)
The bare-name install (dsh plugin --profile web add dsh-kaomoji) requires a
real npm release. registry.npmmirror.com is a read-only mirror and cannot
publish, so log in to the official registry once:
npm login --registry https://registry.npmjs.org
npm publish --access public --registry https://registry.npmjs.org
package.json already pins publishConfig.registry to
https://registry.npmjs.org/.
Compatibility
- Targets the npm
@deepseek-ai/dshrc.7 runtime line. - Peer deps:
@deepseek-ai/cordis,@deepseek-ai/dsh-system-prompt, plus the Web client peers (dsh-client-*,react) — all optional, provided by the Web Profile shared runtime. - Coexists with dsh-emoji: different
prompt section names/orders (
dsh-emoji:guidance@175 vsdsh-kaomoji:guidance@176), settings namespace, RPC channel, and card slot (Plugins page vs General). Kaomoji are plain text, so dsh-emoji’s stream rewrite (which handles canonical Unicode emoji only) never touches them.
FAQ
- No kaomoji in replies? Check, in order: (1) the Host half is mounted —
dsh plugin --profile web add dsh-kaomojiwrites bothdependenciesanddsh.profile.bundles; a barepnpm addonly loads the client card, so re-install with the dsh CLI or add theinsertrow tocordis.patch.ymland restart (the log should show[dsh-kaomoji] 已挂载(mode=...)); (2) the mode —autoonly fires on friendly/casual/empathetic replies, usefrequentfor one per conversational reply; (3) the settings card status — “Host not loaded” / “origin not trusted” also means the guidance is absent. - Why does the model sometimes skip kaomoji in
automode? That is by design. Onlyfrequentrequires one per conversational reply. - Can I use kaomoji outside the whitelist? Yes — put the exact string in
customPrompt; explicit user requests are an exception to the whitelist. - Will code replies be polluted? No. The rules forbid kaomoji inside code blocks, inline code, links, tables, and tool output.
- Where is the settings card? At the bottom of Settings → General (after language, appearance, composer rows). Changes save live; “Reset to defaults” is available in the card.
- Does it conflict with dsh-emoji? No technical conflict (see
Compatibility). If both run in
frequentmode a reply may contain an emoji and a kaomoji — keep one of them inauto(or turn one off) for the cleanest look.
License
Kaomoji characters are sourced from 顔文字屋 kaomojiya.org (free for personal and commercial use per the site).
Links
More in this category
zhu1090093659/dsh-web-ui#packages/dsh-pet★ 7488
A whale-girl companion for the dsh web GUI: animations follow the agent state, with pat interactions and a feeding mechanic that raises intimacy from a calf to deep-sea bonds.
Nagi-ovo/dsh-ads★ 620
Parody ads in 2005-Chinese-web style: sidebar banners, in-chat feeds, corner popups, and a close button whose hit area is smaller than it looks. All fictional.
PC2005-cloud/dsh-pet#dsh-pet★ 613
Desktop pet for the DSH Web UI with 25 transparent animations, screen wandering, click reactions and drag, plus a reproducible asset-generation pipeline.
vlln/whale-girl★ 323
Desktop pet (QQ-pet style): floats in the corner, draggable, feedable, playable.
yyh-001/dsh-meme★ 84
Chat meme stickers: text-only send, mood auto-send, QQ/WeChat-style picker, auto-learn, custom packs.
Awu12277/dsh-stock-watch★ 79
A-share watchlist real-time market monitoring plugin: a collapsible popup in the top-right corner of the DeepSeek Harness (DSH) web interface for real-time quote monitoring, group switching, intraday and candlestick (K-line) charts, and buy/sell target price settings.
Community comments
Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.