DeepSeek Harness plugin

hermes-to-dsh

DSH plugin — browse local Hermes skills / MCP servers / chats in the DeepSeek Harness web sidebar, and inject selected skills & MCP config into the active agent (active/passive mode).

Jump to install

Source facts

Repository
beimianism/Hermes-to-DSH
Latest update
Aug 16, 2026
Category
Tools & Capabilities
GitHub stars
2
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/beimianism/Hermes-to-DSH
Plugin: hermes-to-dsh
Author: beimianism

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.en.mdSource · read only
README language

<div align="center">

中文 · English

Hermes to DSH

Browse your local Hermes skills / MCP servers / chats right inside the DeepSeek Harness web sidebar, and inject the selected skills & MCP config into the active agent.

</div>

---

Hermes to DSH (hermes-to-dsh) is a DSH plugin (dsh.bundle) that surfaces your local Hermes assets (skills, MCP servers, conversation history) in the DeepSeek Harness web UI as a dockable, resizable sidebar panel. It offers two injection modes:

  • Active — you tick the skills / MCP servers you actually need; the plugin reads each selected SKILL.md + MCP config and injects them into the active agent's system prompt (with a length warning and total cap).
  • Passive — a contact-style hint; the agent reads skill SKILL.md / MCP config on demand only when a capability is missing.

Features

  • Fixed, draggable/resizable panel with four-corner grab handles (26px hit area).
  • Two columns: left = repositories / projects → conversations; right = skills + MCP servers + mode.
  • Global search across chat name / id, skill name / description, MCP server name.
  • Conversation preview — open any chat to see opening X + latest Y (per-side counts are configurable).
  • Source filter — filter chats by their source (desktop / cron / ...).
  • Message-type filter — keep only 提问 user / 回答 assistant / 工具 tool; when a type is chosen the panel auto-fills the requested count by stepping across other message types.
  • Copy address — copy the conversation id.
  • MCP detail — inspect a server's config block before selecting it.
  • Active selection persistence — writes ~/hermes-active-selection.json and pings the live session so the agent knows what you chose.

Capabilities

SurfaceWhat it provides
UIsidebar.footer.action sidebar panel (pill toggling a fixed/resizable two-column panel)
Host handlersinspect, chatPreview, mcpDetail, setMode, detail
InjectionsystemPrompt.section hermes:mode (active → selected SKILL.md full text + MCP config; passive → contact hint)

Install

# bundle: enters the profile layer stack (restart web)
dsh plugin --profile web add github:beimianism/Hermes-to-DSH

# or pure-Cordis, zero-restart via config HMR
dsh plugin add github:beimianism/Hermes-to-DSH

> Public @deepseek-ai/* and cordis deps are intentionally undeclared (injected by the profile pnpm closure).

Requires local Hermes data at %LOCALAPPDATA%\hermes\state.db (read-only), and python on PATH for the helper scripts.

Native architecture (follows startup)

The plugin is a native bundle + client that loads automatically on every dsh web start — no dynamic plugin or launcher needed:

  • Host half (index.js): registers ctx.connection.rpc.handle('/hermes', …, {authority:'trusted-host'}) and exposes five endpoints — inspect / chatPreview / mcpDetail / setMode / detail; systemPrompt.section('hermes:mode') injects the active/passive hint (if the host has no systemPrompt service — e.g. a pure web profile — the section is skipped silently and everything else keeps working).
  • Client half (client/index.js, generated by client/_make_native.cjs): a __ModuleLoader__.load bundle, require('react'), host.call adapted to ctx.connection.rpc.call('/hermes', …), styles injected via <style>; the panel mounts on the sidebar.footer.action slot.
  • Active selection is persisted to ~/hermes-active-selection.json and a session message notifies the agent.

Usage

1. Open the DeepSeek Harness web UI. 2. Click the 📁 Hermes 资产 pill (bottom-left) to toggle the panel. 3. In the panel: set the opening/latest counts, filter by source, search, choose a message type, and toggle 主动/被动 in the header. 4. Tick the skills / MCP servers you need (active mode) — the panel writes the selection and notifies the session.

Plugin management

Manage enabled plugins from the DSH browser console / plugin manager. This bundle is installed as hermes-to-dsh; to uninstall, remove the corresponding row from your profile layer stack and restart web.

Scripts / layout

Hermes-to-DSH/
├── package.json          # manifest (name, exports, dsh.bundle.patch, dsh.client)
├── cordis.patch.yml     # bundle row that inserts the plugin
├── index.js              # Node (host) half — Cordis plugin
├── client/index.js       # Web client half — sidebar panel (built artifact)
├── client/_make_native.cjs  # client generator (dev-only; source panel lives outside the repo)
├── scripts/              # read-only python helpers
│   ├── _hermes_scan.py       # scan projects/repos/chats/skills/mcp
│   ├── _chat_preview.py      # opening X + latest Y (role auto-fill)
│   └── _mcp_detail.py        # read a server's config block
├── AGENTS.md
├── LICENSE (MIT)
└── README / README.en

License

[MIT](./LICENSE)