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.

Xiaomili — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
X

dsh-xiaomili

Xiaomili

小米粒 — A golden retriever secretary that stays on the right: real-time capture of chat content, intent recognition, keyword/concept extraction, and automatic LLM briefs.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Olympianz/dsh-xiaomili#182c9ea6de5dce8edb6f96d71d852990f12b5389
READMECompatibilityVersions

Compatibility and provenance

Xiaomili is published as dsh-xiaomili 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
9/5/2026

Versions

0.1.0stable
9/5/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
★ 0
Weekly downloads
0
Last push
9/4/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 productivity-workflow.

Client 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.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Rewind Plugindsh-rewind-pluginIn-window conversation rewind with workspace file restore · 同窗口内对话回退并可还原工作区文件Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-base

README

小米粒(dsh-xiaomili)

常驻 chatbox 右侧的金毛秘书插件。它会实时旁听对话、识别用户意图、提取关键词/概念、并自动生成秘书简报。

功能

  • 🦮 右侧悬浮的金毛头像(assets/theme.png,无边框、带浮动动画),点击展开下拉窗;
  • ⚡ 实时捕捉:监听 session/event,即时正则抓取邮箱 / 链接;
  • 🎯 意图识别 → 关键词 / 概念:用 LLM(默认 deepseek-official/deepseek-v4-flash)先判断意图再提取,不用朴素词频;
  • 📝 自动简报:防抖自动调用 LLM 归纳,无需点击;
  • 💾 持久化:邮箱 / 链接 / 关键词 / 概念 / 意图 / 简报 / 通知等记忆自动落盘,重启后恢复;
  • 邮箱 / 链接 / 关键词 / 概念各展示频次最高的前 N 条。

目录

dsh-xiaomili/
├── package.json        # dsh.bundle + dsh.client manifest
├── cordis.patch.yml    # 组合层:激活 host 插件
├── index.js            # host 半部(事件监听 + LLM + HTTP 路由)
├── lib/client.js       # browser 半部(shell.overlay 悬浮挂件 + 下拉窗)
├── assets/theme.png    # 头像图片
└── README.md

安装

dsh plugin --profile web add ./dsh-xiaomili

然后正常启动 profile 即可,无需构建(纯 JS,无外部运行时依赖)。

可配置项(Schemastery Config)

内置 Schemastery Config schema,可在 profile 的 cordis.patch.yml 中覆盖该行:

- insert:
    - id: xiaomili
      name: dsh-xiaomili
      config:
        debounceMs: 3000
        maxMessages: 20
键默认说明
providerdeepseek-officialLLM provider
modeldeepseek-v4-flash归纳用模型
debounceMs1600归纳防抖毫秒
maxMessages16送入 LLM 的最近消息条数
projectsDir''项目扫描根目录(空则扫 workspace 及其父目录)
maxProjects8「最近项目」展示条数
dataDir''数据落盘目录(空则 $DSH_HOME/storages/xiaomili 或 ~/.dsh/storages/xiaomili)

持久化

host 半部会把秘书记忆(邮箱 / 链接 / 关键词 / 概念 / 意图 / 简报 / 通知 / 会话统计等)序列化为 JSON 快照,写入 <dataDir>/state.json(默认 ~/.dsh/storages/xiaomili/state.json)。

  • 每次捕捉到消息或 LLM 分析完成后,防抖 800ms 原子落盘(临时文件 + rename 替换,避免写一半损坏);
  • 启动时自动读取并恢复上次记忆;文件不存在或损坏则从空状态开始;
  • 调用 POST /xiaomili/clear 清空记忆时同步落盘。

通信

host 通过 webServer 暴露 GET /xiaomili/state、POST /xiaomili/refresh、POST /xiaomili/clear、GET /xiaomili/avatar.png,browser 半部用 fetch 调用。