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.

Ayaka Theme — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

@l-vm2k/dsh-ayaka-theme

Ayaka Theme

Kamisato Ayaka ice-bloom theme + desktop pet for DeepSeek Harness Web Client

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

npx -y @deepseek-ai/dsh plugin --profile web add github:l-vM2k/dsh-ayaka-theme#848618f765d058893e7bb0e0f889324996a1bb06
READMECompatibilityVersions

Compatibility and provenance

Ayaka Theme is published as @l-vm2k/dsh-ayaka-theme 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
8/28/2026

Versions

0.1.0stable
8/28/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
★ 1
Weekly downloads
0
Last push
9/2/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.

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

@l-vm2k/dsh-ayaka-theme

神里绫华 · 冰华主题 + 桌面宠物 — DeepSeek Harness Web 客户端主题插件

一个 DSH 标准 bundle 插件,安装后浏览器自动加载:

  • 🌸 半透明绫华立绘贴在屏幕右侧
  • 🐱 Q 版绫华小头趴在聊天输入框右上角,点击说话(语音 + 文字气泡同步)
  • ❄️ 樱花花瓣 + 雪花飘落(混合大小,稀疏密度)
  • 🎨 冰蓝色主题配色(亮色/暗色双模式)

安装

dsh plugin --profile web add github:l-vm2k/dsh-ayaka-theme

然后重启 dsh web:

dsh --profile web

打开浏览器,绫华主题已加载 ✨

卸载

dsh plugin --profile web remove @l-vm2k/dsh-ayaka-theme

插件结构

├── package.json          # dsh.bundle + dsh.client 声明
├── cordis.patch.yml      # bundle 层:一行 insert 挂载插件
├── tsconfig.json         # TS 配置
├── tsdown.config.ts      # 构建配置
├── assets/               # 图片 + 音频(打进包里,自包含)
│   ├── ayaka-portrait.png
│   ├── ayaka-head.png
│   ├── ayaka-bg.jpg
│   ├── ayaka-1.wav
│   ├── ayaka-2.wav
│   └── ayaka-3.mp3
└── src/
    ├── index.ts          # Node 半:注册 /ayaka-assets 路由服务静态资源
    ├── ayaka-tokens.ts   # 主题色 token 覆盖
    └── client/
        └── index.ts      # 浏览器半:主题注册 + DOM overlay

关键:package.json 的 dsh 字段

{
  "dsh": {
    "bundle": { "patch": "./cordis.patch.yml" },
    "client": {
      "inject": ["@deepseek-ai/dsh-client-ui-theme"],
      "platform": "web",
      "immediately": true
    }
  }
}
  • dsh.bundle.patch — 声明这是一个 bundle,dsh plugin add 靠这个识别
  • dsh.client — 声明浏览器端插件,modules 扫描器自动发现

关键:cordis.patch.yml

- insert:
    - id: ui-ayaka-theme
      name: '@l-vm2k/dsh-ayaka-theme'

一行 insert 同时触发两件事:

  1. Loader 挂载 node 半 → apply() 注册 /ayaka-assets 路由
  2. modules 扫描器自动发现 dsh.client → 服务浏览器 bundle

⚠️ 不要写两行 insert 指向同一个包,会导致 node 半执行两次,重复注册路由报错。


构建

# 安装依赖
pnpm install

# 编译 + 打包
pnpm run build
# 或分两步:
pnpm run build      # tsc → lib/types/ + tsdown → lib/index.js + lib/client.js

License

MIT