DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-eval

h

dsh-eval

Identified3

Agent evaluation platform for DeepSeek Harness: benchmark YAML, headless dsh orchestration, trace-based metrics, LLM judge, paired A/B, keyless replay, and cross-harness import.

dsh-eval

Agent Evaluation Platform for deepseek-harness.

npm version license

Run benchmarks against headless dsh profiles, harvest persisted session logs as traces, fold automatic metrics, grade task success and tool selection, and report or compare runs — one benchmark.yaml in, one JSON run + Markdown report out.

The dsh ecosystem already has observability and debugging tools (dsh-trace, dsh-tps, dsh-context-doctor). dsh-eval fills the missing slot: an evaluation platform.

Highlights

  • dsh eval run benchmark.yaml — orchestrate one headless dsh subprocess per case × trial
  • Trace harvesting from persisted session logs (everything a model sees is reconstructable from the log)
  • Automatic metrics: task success, tool success, tool-selection accuracy, steps, tokens, latency, cost, retry, invalid tool calls, context usage
  • Scripted grading: expected.tool (tool-selection accuracy) and expected.check (task success)
  • LLM judge: final-answer score and hallucination flags from a judge model
  • Subagent trace merging: child session logs fold into the trial metrics
  • Paired A/B: same-case win/lose/tie statistics across two runs
  • Keyless replay: record once with a key, replay in CI from recorded logs
  • Cross-harness import: dsh eval import codex|claude-code <log> --out run.json
  • dsh eval report run.json — Markdown report with per-trial scores and pooled rates
  • dsh eval compare v1.json v2.json — signed B - A comparison table

Status

npm 0.3.0 · 113 tests · 100% branch/line coverage on src · typecheck clean.

Quick start

Install the package directly:

pnpm add dsh-eval
dsh plugin --profile eval add dsh-eval

The npm package targets the official @deepseek-ai/* releases (0.1.0-rc.6 peers). For the source flow, clone this repo and link it to a deepseek-harness checkout:

git clone https://github.com/hccccc01333/dsh-eval.git
cd dsh-eval

Windows (junction):

New-Item -ItemType Junction -Path harness -Target D:\path\to\deepseek-harness

macOS / Linux (symlink):

ln -s /path/to/deepseek-harness harness

Then:

pnpm install
pnpm --filter dsh-eval build
pnpm --filter dsh-eval test

With a dsh launcher from the harness checkout:

dsh plugin --profile eval add dsh-eval
dsh eval run benchmark.yaml --out eval-run.json
dsh eval report eval-run.json
dsh eval compare eval-v1.json eval-v2.json
dsh eval import codex ~/.codex/sessions/.../session.jsonl --out codex-run.json

Benchmark document

name: skill-regression
model: deepseek-v4
profile: headless
command: [dsh]
trials: 3
timeoutMs: 600000
seed: 42
cases:
  - id: fix-tests-001
    prompt: Fix the failing tests in this workspace.
    workspace: ./fixtures/fix-tests
    expected:
      tool: bash
      check: ./check.sh
pricing:
  deepseek-v4:
    inputUsdPerMTokens: 0.27
    cacheReadUsdPerMTokens: 0.07
    cacheWriteUsdPerMTokens: 0.27
    outputUsdPerMTokens: 1.10

Each trial runs in a private temp workspace with an isolated DSH_HOME and non-interactive permissions. The primary session log becomes the trial's trace; scripted grading pools taskSuccess and toolSelectionAccuracy into run-level rates. See packages/eval/README.md for the full field reference.

Metrics

MetricSource
Task successexpected.check exit 0
Tool success / ratetool results in the session log
Tool-selection accuracyexpected.tool substring match
Steps / turnssession log turns and tool events
Tokens / context usagedisjoint token buckets + billed context
LatencyllmMs / toolMs / ttftMs / latencyMs
Costper-model pricing table (pricing)
Retryllm/retry events
Invalid tool calltool results carrying an internal failure identity
Final answer score / hallucinationLLM judge verdict from judge config

CLI

CommandWhat it does
dsh eval run benchmark.yaml --out run.jsonExecute the benchmark and write the JSON run
dsh eval report run.jsonRender a run as Markdown
dsh eval compare base.json candidate.jsonCompare two runs with signed B - A deltas
dsh eval import codex|claude-code log.jsonl --out run.jsonImport an external session log as a one-trial run

Roadmap

  • Per-arm leaderboards and significance testing over paired trials
  • Parallel trial execution across cases
  • Web UI dashboard for run reports and comparisons

Repository layout

packages/eval/    plugin bundle + CLI app + tests
harness/          local deepseek-harness checkout (gitignored junction/symlink)

License

MIT

Comments

Loading…

Similar plugins

dsh-trace-insight

by Liu-Bot24

DeepSeek Harness(DSH)只读执行轨迹复盘插件,支持规则分析、独立模型解读、证据定位、任务概览与运行对比。

Development & InfrastructureManifest valid

4

MIT

JavaScript

Sep 14, 2026

dsh plugin --profile web add dsh-plugin-trace-insight

by BiBoyang

DSH 插件评测工具:YAML 用例驱动真实 agent 回归评测 + baseline 对比 PASS/WARN/FAIL 门禁|Regression eval harness for DeepSeek Harness plugins

Tools & CapabilitiesDevelopment & InfrastructureModels & ProvidersManifest valid

13

35/wk

TypeScript

Sep 3, 2026

dsh plugin --profile web add dsh-eval-harness

by wxxb789

Multi-agent orchestration and LLM model routing for DeepSeek Harness (DSH): semantic AI agent profiles, exact model routes, declarative teams and strategies, and bounded subagent delegation - a TypeSc

Manifest valid

3

MIT

TypeScript

Sep 2, 2026

dsh plugin --profile web add dsh-legion

by MistyBridge

Multi-agent orchestration for DeepSeek Harness: turn isolated sessions into a team that assigns work, reviews output, and runs DAG workflows — durable task ledger, real reviewers, crash-safe recovery.

Manifest valid

6

TypeScript

Sep 4, 2026

dsh plugin --profile web add dsh-agent-bus

by toolclub

Persistent multi-model workflow teams for DeepSeek Harness — dynamic lead planning, bounded DAGs, per-agent model/tools, Run Center and Token insights.

Workflow & AutomationTools & CapabilitiesModels & ProvidersManifest valid

202

MIT

TypeScript

Sep 19, 2026

dsh plugin --profile web add dsh-agent-team-gui

by lispking

A self-evolving plugin for DeepSeek Harness (dsh). It observes how the agent runs, proposes improvements to its own assets via the LLM, validates each proposal inside a sandboxed trial agent, and appl

Workflow & AutomationManifest valid

3

MIT

TypeScript

Aug 25, 2026

dsh plugin --profile web add dsh-auto-evolve