DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Evidence Ledger — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
E

dsh-evidence-ledger

Evidence Ledger

Local append-only evidence ledger for DeepSeek Harness

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Freakz2z/dsh-evidence-ledger#a430069a7fa192d559508ff0d0054d71b2b67033
READMECompatibilityVersions

Compatibility and provenance

Evidence Ledger is published as dsh-evidence-ledger and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/1/2026

Versions

0.2.0stable
9/1/2026
0.1.1stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/1/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in security-access.

Doctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consolePocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).Mobiledsh-mobileDeepSeek Harness mobile adaptation and secure access plugin, supporting LAN, remote connections, Android App, and mobile browsers.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-evidence-ledger

面向 DeepSeek Harness 的本地证据账本插件。

它给 DSH agent 提供一个 evidence_ledger 工具,用于把事实、测试结果、决策、失败路径和待验证项记录到工作区内的 JSONL 文件。账本默认位于 .dsh/evidence-ledger.jsonl,只追加、不联网、不删除历史记录。

安装

dsh plugin --profile demo add github:Freakz2z/dsh-evidence-ledger

安装 bundle 后,插件会自动加入 profile。npm 包发布后也可以使用 dsh-evidence-ledger 作为安装 spec;随后用 evidence_ledger 工具记录或检索证据。

工具用法

记录一条已经观察到的测试结果:

{
  "action": "record",
  "kind": "test",
  "status": "verified",
  "claim": "npm test passes",
  "evidence": "node test.mjs exited with code 0",
  "source": "test.mjs",
  "tags": ["release", "ci"]
}

查询最近记录:

{
  "action": "list",
  "query": "release",
  "limit": 10
}

也可以按类型、状态或标签缩小结果:

{
  "action": "list",
  "kind": "test",
  "status": "verified",
  "tag": "ci",
  "limit": 20
}

需要快速查看账本分布时,可以使用 summary:

{
  "action": "summary",
  "status": "verified"
}

支持的 kind:fact、test、decision、failure、note。

支持的 status:observed、verified、rejected、pending。

list 的 kind、status 和 tag 是精确筛选;query 仍会在声明、证据、来源和标签中进行不区分大小写的全文搜索。

summary 使用相同的筛选条件,返回匹配记录总数、按 kind 与 status 聚合的数量,以及最新一条匹配记录。

记录内容应区分“已经看到的证据”和“尚未验证的判断”。插件不会替 agent 判断一条声明是否真实,只负责保存原始记录并提供可检索的来源指针。

配置

默认配置已经足够使用。需要修改文件位置或列表上限时,可以在 profile 的 patch 中覆盖配置:

- id: evidence-ledger
  config:
    path: .dsh/project-evidence.jsonl
    maxResults: 40

path 必须是工作区内的相对路径;插件拒绝绝对路径和逃出工作区的 .. 路径。maxResults 范围为 1–100。

隐私与边界

  • 不发起网络请求,也不依赖远程服务。
  • 只写入配置的工作区内文件。
  • 使用 JSONL 追加记录,历史记录不会被插件自动覆盖或删除。
  • 不读取工作区中的其他文件来“推断”证据;写入内容来自工具调用参数。
  • 记录前请避免把 token、密码、私钥和完整个人数据放入 claim、evidence 或 source。

开发

npm ci
npm test
npm run pack:check

需要检查真实 Loader 组合时,可在一个已构建的 DeepSeek Harness checkout 中安装本地包:

dsh plugin --profile demo add .

License

MIT