DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Uni Editor — DeepSeek Harness 插件(DSH Plugin)
← Plugins
U

@creative-dswork/dsh-uni-editor

Uni Editor

由 MCP Apps 提供支持的 DeepSeek Harness 统一编辑器运行时

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:creativedswork/dsh-uni-editor#81814b3219faf2deaa0cf03a816c651fd0a93f4a
README兼容性版本

兼容性与来源证明

Uni Editor 以 @creative-dswork/dsh-uni-editor 发布,当前版本为 0.3.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/3

版本

0.3.2stable
2026/9/3
0.3.1stable
2026/8/23

相关插件

正在加载相关插件…

最新版
0.3.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/9/9
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Im@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。Chat Importdsh-chat-import将 25+ 个 AI 编程 Agent 的对话历史导入 DeepSeek Harness,作为可恢复会话继续使用,完整保留工具调用、推理和结果,并支持反向导出与同步。

README

DSH Uni Editor

English | 简体中文

All Editors, one DSH Editor.

DSH Uni Editor brings existing Editors into DeepSeek Harness Agent Chat. Editors keep their own UI, data model, and domain tools; DSH provides one entry point, the current Session context, and a verifiable handoff between human edits and the Agent.

The runtime is a Cordis plugin bundle powered by stable-spec MCP Apps. One npm package provides the Host plugin, Browser bundle, and dsh.bundle patch needed to activate both.

The Host owns its MCP connections, exposes model-visible tools through Harness, keeps app-only tools out of the model registry, and serves untrusted Views through a different-origin Sandbox Proxy. No agent-loop change or external MCP proxy is required.

Watch the DSH Chat UI and Three.js Editor MCP App video demo

Watch the video demo to see threejs-editor-mcp running directly inside DSH Chat UI. The Editor stays reachable from the Session Header, can move between inline and fullscreen without recreating its iframe, and can return to its originating tool message with Locate in Chat.

Install

Install the package into the Web profile:

dsh plugin --profile web add @creative-dswork/dsh-uni-editor

The bundle is activated automatically. Configure its mcp-apps row in $DSH_HOME/profiles/web/cordis.patch.yml:

- id: mcp-apps
  config:
    servers:
      - serverName: counter
        transport: stdio
        command: node
        args: [/absolute/path/to/server.js]
        cwd: /absolute/path/to/server
        forwardWorkspace: true
    prompts:
      autoInject:
        - serverName: counter
          name: test-review-loop
          arguments:
            threshold: '85'

forwardWorkspace is disabled by default. Enable it only for a trusted local stdio Server that needs the calling DSH Workspace. transport: streamable-http never receives Workspace metadata and accepts url and optional headers instead of command, args, cwd, and env. serverName must match [A-Za-z0-9_-]{1,32} and becomes part of the public tool name.

prompts.autoInject is an explicit trust allowlist. For each listed prompt, the Host calls MCP prompts/list and prompts/get, then contributes the returned guidance to the Harness system prompt. This lets the Agent apply an MCP-provided workflow during ordinary turns without a Slash Command. Only user-role text and embedded text resources are accepted. The prompt is removed when its Server disconnects and refreshed after notifications/prompts/list_changed. Do not allowlist prompts from an untrusted Server: their content receives system-prompt authority.

Start Harness with:

dsh web

The Web profile must bind to 127.0.0.1; the plugin rejects broader bindings because the Sandbox Proxy currently supports loopback browsers only.

Standalone Counter Demo

The checkout includes a local stdio MCP server with:

  • show_counter, a model-visible tool linked to ui://counter/app;
  • increment_counter, an app-only tool available only to that View;
  • a bundled View using the official MCP Apps App.

Run the demo from this checkout with the published Harness CLI. It does not require a neighboring deepseek-harness source directory:

pnpm install
pnpm run build
export DSH_HOME="$PWD/.tmp/demo-home"
pnpm dlx @deepseek-ai/dsh@0.1.0-rc.6 plugin --profile web add "$PWD"
pnpm dlx @deepseek-ai/dsh@0.1.0-rc.6 web --patch "$PWD/demo/cordis.patch.yml"

Open the printed URL, connect this directory as the workspace, and ask the configured model to show the counter. The settled tool row renders a counter at 0; the + button calls app-only increment_counter through the Host and updates the View to 1.

For the full editor example, install and configure threejs-editor-mcp.

Behavior

  • Targets MCP Apps specification 2026-01-26 and advertises text/html;profile=mcp-app.
  • Supports stdio and Streamable HTTP MCP transports.
  • Injects only explicitly allowlisted MCP Prompts, with source provenance, into the Harness system prompt.
  • Applies _meta.ui.visibility; omitted visibility means model and app.
  • For trusted local stdio Servers with forwardWorkspace: true, adds the calling Agent's immutable workspace cwd to model-originated tools/call request metadata at ai.deepseek.dsh/workspace. It is never added to remote HTTP or app-originated calls, model-visible tool arguments, or results.
  • Persists readable text for the model while retaining structuredContent and result _meta in bounded UI-only presentation metadata.
  • Uses the official AppBridge and PostMessageTransport for View lifecycle and app-originated tool/resource calls.
  • Keeps a Session-scoped Active App entry in the Header, with support for multiple MCP App instances.
  • Opens the active App fullscreen without recreating its iframe or AppBridge, preserving unsaved View state.
  • Returns to the originating tool message with Locate in Chat.
  • Mediates ui/download-file for one embedded JSON resource up to 4 MiB because Sandbox Views cannot download directly.
  • Enforces CSP by HTTP header on a separate loopback origin and validates postMessage source and origin.
  • Falls back to the ordinary text tool result when a View cannot load.

Tool-list changes are synchronized, while automatic transport reconnection is not yet implemented. The Browser refreshes its catalog every five seconds.

Security Architecture

flowchart LR
  Agent["Harness Agent"] -->|"model-visible tools"| Host["MCP Apps Host<br/>127.0.0.1"]
  Host -->|"stdio or Streamable HTTP"| Server["MCP Server"]

  subgraph Browser["Browser"]
    UI["Harness UI<br/>Host origin"]
    Proxy["Sandbox Proxy<br/>different loopback origin"]
    View["MCP App View<br/>double iframe Sandbox"]
    UI -->|"validated postMessage"| Proxy
    Proxy -->|"CSP + sandbox attributes"| View
  end

  Host -->|"bounded view and resource API"| UI
  View -->|"app-only tools and ui/message"| UI
  UI -->|"authorized bridge calls"| Host
  • The Host and Sandbox Proxy use different loopback origins.
  • The View runs inside a double iframe with HTTP CSP and explicit sandbox attributes.
  • postMessage source and origin are validated before bridge traffic is accepted.
  • Tool visibility separates model-visible tools from app-only tools.
  • Host APIs reject cross-origin writes and enforce finite body and metadata limits.

Development

pnpm install
pnpm run check
pnpm run pack:dry-run

Install a local checkout into a profile:

dsh plugin --profile web add .
dsh --profile web --dump-config

Publishing

prepack runs type checking, the production build, and package tests. The npm tarball contains the Host entry, Browser bundle, declarations, bundle patch, license, and both README languages; development Demo files are excluded.

Publishing is manual through the Publish workflow. The npm environment must provide an NPM_TOKEN with permission for the @creative-dswork scope. The workflow publishes with provenance and creates the matching version tag and GitHub Release only after npm succeeds.

Versions through 0.2.0 were published as @creative-dswork/dsh-mcp-apps. Install @creative-dswork/dsh-uni-editor for current releases.