DeepSeek Harness 插件

dsh-groupx

DSH-native GroupX room bridge for local multi-agent collaboration(英文原文)

跳到安装方式

来源信息

GitHub 仓库
Harzva/dsh-groupx
最近更新
2026年8月17日
分类
自动化与任务
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/Harzva/dsh-groupx
插件名:dsh-groupx
作者:Harzva

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

<h1 align="center">dsh-groupx</h1>

<p align="center"> <strong>Bring a local GroupX multi-agent room into DeepSeek Harness.</strong><br /> 在 DSH Web 内查看本地 Agent、共享时间线,并向一个或多个 GroupX Agent 显式发送消息。 </p>

<p align="center"> <img alt="Status: alpha" src="https://img.shields.io/badge/status-alpha-f59e0b" /> <img alt="DSH 0.1.0-rc.6" src="https://img.shields.io/badge/DSH-0.1.0--rc.6-2563eb" /> <img alt="Tests: 6 passing" src="https://img.shields.io/badge/tests-6%20passing-16a34a" /> <a href="LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-7c3aed" /></a> </p>

> [!IMPORTANT] > This is an independent, unofficial DSH integration for GroupX. The protocol and DSH offline-safety slice is tested; live browser E2E with real GroupX agents remains open.

What works

  • Native DSH tab at Settings → Plugins → GroupX.
  • Loopback-only Host bridge to GroupX, defaulting to http://127.0.0.1:4310.
  • Agent roster, status, recent semantic events, and active Turn summaries.
  • Explicit single- or multi-Agent message routing through to[].
  • Strict rejection of sender spoofing fields and non-loopback origins.
  • Safe DSH startup when GroupX is offline or incompatible.
flowchart LR
    U["DSH Web user"] --> P["dsh-groupx plugin"]
    P -->|"same-origin Host API"| H["DSH Host bridge"]
    H -->|"loopback REST"| G["GroupX Broker"]
    G --> C["Codex App Server"]
    G --> K["Kimi / Grok / Hermes ACP"]
    G --> A["Claude Code stream-json"]

DSH remains the host and UI. GroupX continues to own native Agent sessions, SQLite, memory, routing, and CLI adapters. The plugin does not bundle GroupX source, upload room data, or rewrite Agent CLI configuration.

Status

GateResult
Build and contract tests6/6 passed
Real DSH 0.1.0-rc.6 isolated bootPassed
DSH Web / client moduleHTTP 200 / HTTP 200
GroupX offline behaviorExpected HTTP 503; DSH remains available
User DSH profile touched by verificationNo
Real GroupX 0.1.13 browser E2EOpen
SSE resume, cancellation, restart, compactionPlanned

The machine-readable M1 result is stored in [evidence/m1-local-contract-2026-08-16.json](evidence/m1-local-contract-2026-08-16.json). See [ROADMAP.md](ROADMAP.md) for the remaining gates.

Quick start

1. Start GroupX

GroupX 0.1.13 requires Node.js >=24.14.1 <25 and at least one configured local Agent CLI.

npm install --global @susyimes/groupx
groupx start --no-open

2. Build and pack the DSH plugin

git clone https://github.com/Harzva/dsh-groupx.git
cd dsh-groupx
pnpm install --frozen-lockfile
pnpm check
pnpm run pack:dsh

3. Install into the DSH Web profile

dsh plugin --profile web add ./artifacts/harness-flow-dsh-groupx-0.1.0-alpha.0.tgz
dsh web

The dsh plugin --profile <name> add <package> form is provided by the DSH CLI and forwards installation to the selected profile.

For a different GroupX loopback port, set DSH_GROUPX_ORIGIN before starting DSH:

$env:DSH_GROUPX_ORIGIN = 'http://127.0.0.1:5000'
dsh web

LAN, public, HTTPS, credential-bearing, and path-bearing origins are rejected.

Development

pnpm check
pnpm run pack:dsh
pnpm run verify:dsh-offline

verify:dsh-offline creates an isolated temporary DSH Home, installs the packed plugin into a real DSH 0.1.0-rc.6 Web profile, checks the bridge and client module, then removes the temporary profile. It does not read or modify the user's DSH profile.

Project boundaries

RepositoryResponsibility
susyimes/GroupXUpstream local multi-Agent broker
Harzva/GroupXHarzva's upstream-tracking fork
Harzva/dsh-groupxIndependent DSH bridge and native UI
Harzva/harness-flow-hubDiscovery, compatibility, and future installation flows

The local protocol study used upstream commit a6e485f0e3ace6f59324db5fb06f032e3e199b87. At the time of the study, the upstream tree did not declare a license, so its reference copy is excluded from Git and npm artifacts. This repository contains an independent implementation against the documented REST contract.

Architecture and product boundaries are documented in [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md), [docs/PRD.md](docs/PRD.md), and [docs/REFERENCE.md](docs/REFERENCE.md).

License

[MIT](LICENSE) © 2026 Harzva