dsh-file-checksum
Manifest valid★ 1Raw-file SHA-256 and SHA-512 verification plugin for DeepSeek Harness
dsh-file-checksum
A small, read-only DeepSeek Harness plugin that computes SHA-256 or SHA-512 for a file through the active Harness filesystem provider.
Unlike text-hashing tools, file_checksum reads the file's raw bytes without placing its contents in the model conversation. It works with the filesystem mounted by the current DSH profile, including compatible remote providers.
Install
Install directly from GitHub into a profile:
dsh plugin --profile web add github:yan9651688/dsh-file-checksum
For reproducible installs, pin a commit:
dsh plugin --profile web add github:yan9651688/dsh-file-checksum#<commit-sha>
Then start that profile as usual:
dsh --profile web --dump-config
dsh --profile web
This repository ships plain ESM JavaScript, so a GitHub install does not need a prepare build or pnpm allowBuilds entry.
Tool
file_checksum accepts:
| Parameter | Required | Description |
|---|---|---|
file_path | yes | Absolute path, or a path relative to the current agent session workspace. |
algorithm | no | sha256 (default) or sha512. |
expected | no | Expected hexadecimal digest. The tool returns match or mismatch. |
Example prompt:
Use file_checksum to verify dist/app.tgz against this SHA-256: <digest>
The canonical result is structured for Native and Code Mode callers:
{
"path": "/workspace/dist/app.tgz",
"algorithm": "sha256",
"digest": "...",
"bytes": 12345,
"verification": "match"
}
A checksum mismatch is a successful tool result with verification: "mismatch"; missing, non-regular, oversized, or unreadable files are tool errors.
Configuration
The bundle defaults to a 64 MiB whole-file limit:
- insert:
- id: file-checksum
name: dsh-file-checksum
config:
maxBytes: 67108864
Override the row in a later profile patch to choose a different positive integer, up to 256 MiB. The limit exists because the current DSH raw-byte filesystem API returns a complete bounded file rather than a byte stream.
Data and safety
- Reads through
ctx.fs; it does not invoke a shell or bypass the active filesystem provider. - Reads one regular file and never writes or deletes files.
- Declares checksum calls exclusive so one Native or Code Mode batch cannot multiply the configured whole-file memory limit.
- Does not access environment variables, credentials, or the network.
- Returns the digest, byte count, display path, and verification status; it does not return file contents.
- Records the successful or missing read through DSH's
fs/observedevent, matching the built-in file-read behavior. - A digest identifies content integrity. It is not encryption and does not make sensitive data safe to share.
Known limitations
- One file per call; directories and Git tree hashes are not supported.
- Files larger than
maxBytesare rejected rather than streamed or truncated. - Separate agents or sessions may still run calls concurrently; each call can buffer up to
maxBytes. - The plugin is intended for DSH
0.1.0-rc.6and later compatible0.1.xreleases. DeepSeek Harness is still in developer preview, so breaking upstream changes may require a plugin update.
Development
npm install
npm test
npm pack --dry-run
The tests mount the real Cordis context, tool registry, and local DSH filesystem provider. They cover standard hash vectors, binary bytes, expected-digest comparison, session-relative paths, filesystem observations, error cases, and lifecycle cleanup.
License
Comments
Loading…
From the same category
by deepseek-ai
DeepSeek Harness: Everything is a Plugin.
★ 234.5k
MIT
TypeScript
Sep 23, 2026
by nexu-io
🎨 Best DeepSeek Harness Design Plugin. The open-source Claude Design alternative. 🖥️ Local-first desktop app. 🖼️ Your coding agent becomes the design engine: prototypes, landing pages, dashboards,
★ 97.9k
Apache-2.0
TypeScript
Sep 24, 2026
by tt-a1i
Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.
★ 70.7k
↓ 3.5k/wk
MIT
JavaScript
Sep 24, 2026
dsh plugin --profile agent add @tt-a1i/archify-dshby Tencent
Open-source LLM knowledge platform: turn raw documents into a queryable RAG, an autonomous reasoning agent, and a self-maintaining Wiki.
★ 29.4k
↓ 838/wk
NOASSERTION
Go
Sep 24, 2026
dsh plugin --profile web add @wxg-prc-cpg/dsh-weknoraby awesome-dsh-plugin
A curated list of plugins for DeepSeek Harness (dsh) · DeepSeek Harness 插件精选列表
★ 16.8k
CC0-1.0
Python
Sep 24, 2026
by zhu1090093659
DeepSeek Harness (DSH) Web Plugin Aggregation Ecosystem · Everything is a plugin, distributed via the Creative Workshop
★ 8k
Apache-2.0
TypeScript
Sep 24, 2026
dsh plugin --profile web add dsh-web