DeepSeek Harness 插件

dsh-plugin-mlquant-benchmark

DeepSeek Harness tools for reproducing the ml-quant-trading protocol v1 benchmark.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
initial-d/dsh-plugin-mlquant-benchmark
最近更新
2026年8月20日
分类
工具与能力
GitHub stars
1
载体类型
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/initial-d/dsh-plugin-mlquant-benchmark
插件名:dsh-plugin-mlquant-benchmark
作者:initial-d

检查来源文件

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

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

dsh-plugin-mlquant-benchmark

![CI](https://github.com/initial-d/dsh-plugin-mlquant-benchmark/actions/workflows/ci.yml)

DeepSeek Harness tools for reproducing the initial-d/ml-quant-trading protocol v1 CPU benchmark.

The point is narrow: make a DSH agent able to run the existing benchmark, read the machine-readable artifact, validate it against the benchmark protocol, and draft an issue-ready report. This plugin does not add a trading agent, does not call market data APIs, and does not configure any model provider.

Why this exists

ml-quant-trading is a good reproducibility target for agent harnesses:

  • deterministic synthetic benchmark input;
  • fixed protocol v1 command, seed, panel size, repetitions, and thread counts;
  • JSON artifact suitable for automated checking;
  • public issue template for DeepSeek Harness benchmark reports;
  • explicit boundary that benchmark throughput is not trading performance.

Challenge: can DeepSeek Harness reproduce a quant benchmark end to end, preserve the evidence bundle, and avoid turning runtime numbers into alpha claims?

Tools

This package registers four DSH tools:

ToolPurpose
mlquant_benchmark_v1_cpuRun the fixed protocol v1 CPU benchmark and write artifacts/benchmark-v1.json.
mlquant_read_benchmark_jsonRead the JSON artifact and render a compact Markdown result table.
mlquant_validate_benchmark_jsonCheck protocol v1 fields, expected cases, fixed parameters, and variance warnings.
mlquant_draft_github_issueDraft a DeepSeek Harness benchmark issue body from the JSON artifact. It does not post to GitHub.

Install

Install the package in a DeepSeek Harness profile or preset environment:

dsh plugin --profile web add github:initial-d/dsh-plugin-mlquant-benchmark

The package declares a dsh.bundle manifest that inserts:

- id: mlquant-benchmark
  name: dsh-plugin-mlquant-benchmark

If you use a local checkout while developing, add the same row manually:

- id: mlquant-benchmark
  name: file:/path/to/dsh-plugin-mlquant-benchmark

This package is intentionally not published to npm yet. GitHub distribution is enough for the first DSH-facing benchmark reports; npm can come later if there is real usage.

Suggested DSH prompt

Read AGENTS.md, docs/benchmarking.md, and docs/reality_check.md.
Use the mlquant benchmark tools to run the protocol v1 CPU benchmark, validate
and read the JSON artifact, and draft a DeepSeek Harness benchmark report. Keep
the result as an engineering reproducibility benchmark, not a trading-performance
claim.

Public report path

Post the drafted report through the main repository's dedicated template:

<https://github.com/initial-d/ml-quant-trading/issues/new?template=deepseek_harness_benchmark.yml>

Seed example:

<https://github.com/initial-d/ml-quant-trading/issues/61>

Development

npm install
npm test

The test loads the plugin with a mock ctx.tools.register, verifies that the four tools register, reads and validates sample artifacts, and drafts an issue body.

Non-goals

  • No investment advice.
  • No backtest-performance claim.
  • No hidden model provider configuration.
  • No posting to GitHub from the tool.
  • No private data or API keys in artifacts.