插件目录 / Developer / dsh-blind-arena
dsh-blind-arena
未验证 changer-changer
功能简介
A blind, fair, local DSH Web arena: same task, isolated worktrees, shared verification, judge before reveal.
未验证 — 尚未实测
A blind, fair, local DSH Web arena: same task, isolated worktrees, shared verification, judge before reveal. 尚未验证——请自行安装测试。
「未验证」表示我们的自动化 CI 尚未安装过该插件。功能描述与版本兼容性均为作者声明。这不是安全审计,也不代表对第三方代码的背书。
README
DSH Arena
Blind, fair, local Agent arena inside DSH Web.
Same task. Same commit. Isolated worktrees. Shared verification. Judge before you reveal.
DSH Arena turns your DeepSeek Harness (DSH) Web into a model-vs-model fight club: pick a task, pick 2–4 contestants (any provider/model DSH supports), and let them race on the exact same repository state. Lane identities are kept secret until you decide — no label bias, no prompt leaks, no cherry-picked baselines.
Why this exists
Benchmarks lie. Leaderboards are curated. When you evaluate an agent, the simple act of knowing which model you're looking at biases everything downstream: your prompts, your patience, your verdict.
DSH Arena removes that bias structurally:
- One repository state — every lane starts from the same commit, in its own git worktree. No drift, no stale forks.
- Random lane assignment — participants are shuffled onto lanes A/B/C/D at creation. The host knows; the wire doesn't.
- Identity-free protocol — the public experiment record contains no participant identity. Identities live in a server-side
secrets.jsonand merge into the view only after you callreveal. - Shared verification — the same user-defined
verifycommand runs against every lane, in the same environment. - Blind verdict — pick the winner from behavior alone (tests, diff, final answer, token/time cost). Then reveal and see who actually won.
Features
- 🏟 2–4 lane races with live progress feed (tool calls, turns, tokens) per lane
- 🔒 Anonymity contract enforced at the type level: the wire type
ArenaExperimenthas no identity field;redactExperimentstrips everything before serve - ✅ Shared verification — user-defined commands, per-lane exit code / timeout / duration, visible in the race view
- 🏁 Blind verdict → reveal flow with per-lane diffs and final answers
- 📤 Offline export — self-contained HTML report + raw JSON + per-lane unified patch, no network
- 🌿 Winner branch — promote the winning lane's worktree to
arena/<id>/<label>(real lanes only) - 🎬 Zero-cost demo mode — deterministic scripted lanes (focused / verbose / broken / timeout) that exercise the entire pipeline with no API key, no spend: worktree → change → verify → diff → review → reveal
- 🧹 Cleanup — prune stale worktrees and experiment state from the UI
- 🖥 Full client UI injected into DSH Web: create / list / live race / review / reveal
Quick start
- Install the plugin into your DSH Web profile (Cordis bundle — see
cordis.patch.yml):npm install dsh-blind-arena - Open DSH Web → the Arena plugin row appears.
- Create an experiment: point at a local repo, write a task, add verify commands, pick contestants.
- Watch the race live. Judge blind. Reveal. Export the report.
No credentials? Run the demo mode first — it walks the full product loop with scripted lanes so you can evaluate the flow before spending a single token.
Architecture
DSH Web client (React, injected) Host plugin (Cordis service `arena`)
┌───────────────────────────┐ ┌──────────────────────────────────────┐
│ CreateView / ListView │ /api RPC │ ArenaService (Typert remotes) │
│ RaceView / ReviewView │◄───────────►│ preflight · create · cancel · │
│ RevealView │ (redacted │ verdict · reveal · diff · export · │
└───────────────────────────┘ until │ createWinnerBranch · cleanup │
reveal) │ │ │
│ ▼ │
│ ArenaEngine │
│ preflight → worktrees → lanes → │
│ verify → diff → persisted record │
└──────────────────────────────────────┘
src/engine.ts— orchestration: preflight → worktrees → lanes → verification → diff → persistence; implements the anonymity contractsrc/runner.ts— one lane's agent lifecycle on top of@deepseek-ai/dsh-agent(session, model selection, consumed-work folding)src/verify.ts— shared verification runnersrc/git.ts— worktree / diff / branch primitivessrc/store.ts— durable store under~/.dsh/arena/<id>/: publicexperiment.json+ server-onlysecrets.jsonsrc/export.ts— offline HTML report + JSON + winner branchsrc/demo.ts— deterministic demo lanes (no API cost)src/client/— React UI injected into DSH Web
Storage: ~/.dsh/arena/. Everything is local; nothing leaves your machine except your own browser.
Requirements
- Node
^22.19.0 || >=24.0.0 - DSH (DeepSeek Harness) with Web client runtime
@deepseek-ai/dsh-agent,@deepseek-ai/dsh-llm,@deepseek-ai/dsh-session(0.1.0-rc.7)
License
MIT
安装
装一次目录插件,之后本站所有插件都能让 DeepSeek Harness 自动找、自动装:
dsh plugin add dshbase-catalog 然后对 agent 说「帮我装 dsh-blind-arena」,它会在目录里找到并自动安装。文档:dshbase-catalog · 已验证场景包。
该插件是 GitHub 源码(未发 npm)——直接从仓库装:
Web profile:
dsh plugin --profile web add github:changer-changer/dsh-blind-arena Headless(CLI)profile:
dsh plugin --profile headless add github:changer-changer/dsh-blind-arena 实测报告
尚未 L3 验证——若已跑过,见下方失败备注。
2026-08-26 · 标记 webonly 备注:验证: web-only;待 L4 web CDP;L4 web CDP runtime-fail on dsh 0.1.0-rc.8. 浏览全部待验证失败 →