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.

Receipt — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-receipt

Receipt

Local, privacy-first execution receipts for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-receipt@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Receipt is published as dsh-receipt and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.1.1stable
8/14/2026
0.1.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
87.8 kB
Files
16
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
40
Last push
8/14/2026
View source ↗Project homepage ↗
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).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

README

dsh-receipt

The agent saying “done” is a claim. A receipt is evidence.

dsh-receipt is a local, privacy-first plugin for DeepSeek Harness. It writes one machine-readable JSON receipt and one human-readable Markdown receipt after every observed terminal turn/end, including failures and cancellations.

首版聚焦一件事:在每个 turn/end 后,将 DSH 已经观察到的执行事实整理成一张本地收据,而不是尝试保存完整对话或上传遥测。

What a receipt contains

  • Session and turn identity, terminal reason, timestamps, and duration.
  • Actual provider/model provenance and last-wins token usage when DSH reports them, including usage-only failed requests and in-turn compaction calls.
  • Tool names, redacted shell commands, success/failure, observed elapsed time, error code, and safe execution metadata such as exit code.
  • Approval audit outcomes when approval events are present.
  • Read-only Git state at turn end: branch, HEAD, changed paths, diff statistics, and optional bounded SHA-256 hashes of non-sensitive changed tracked files.
  • A redaction report, explicit verification limitations, and a SHA-256 integrity digest for the receipt payload.

The plugin does not store prompts, full assistant messages, full tool output, environment variables, .env files, credentials, or private keys. File-content hashing is off by default; when explicitly enabled, it still never opens untracked files or sensitive-looking paths. Receipts are never uploaded.

Install from npm

Requirements: Node.js ^22.19.0 || >=24 and a DSH release compatible with 0.1.0-rc.6.

Install the stable channel into a DSH profile, verify the composed layer, and boot the profile:

dsh plugin --profile web add dsh-receipt
dsh --profile web --dump-config
dsh --profile web

To test the prerelease channel before it is promoted to latest, install dsh-receipt@next instead. The bundle activates itself through its packaged cordis.patch.yml; no manual source overlay is required.

Update or remove the package with the same profile-scoped plugin command:

dsh plugin --profile web add dsh-receipt@latest
dsh plugin --profile web remove dsh-receipt

Install from a checkout

Requirements: Node.js ^22.19.0 || >=24 and a DSH release compatible with 0.1.0-rc.6.

pnpm install
pnpm check
dsh plugin --profile web add ./
dsh --profile web --dump-config
dsh --profile web

Git installs must be allowed to run this package's prepare build, as described by the DSH plugin installation documentation. A packed tarball does not require an install-time build:

pnpm pack
dsh plugin --profile web add ./dsh-receipt-0.1.0.tgz

Output

By default, receipts are written below $DSH_HOME/receipts; if DSH_HOME is unset, the root is ~/.dsh/receipts.

receipts/
└── <safe-session-name>/
    └── turn-000001/
        ├── receipt.json
        └── receipt.md

The directory and files are created with owner-only permissions where the platform supports POSIX modes. JSON is the authoritative artifact; Markdown is a projection of the same already-redacted data.

Configuration

Override the bundle row in your profile's cordis.patch.yml:

- id: receipt
  name: dsh-receipt
  config:
    outputDir: /absolute/local/path/to/receipts
    includeOutputPreview: false
    maxOutputPreviewChars: 512
    maxCommandChars: 4096
    maxChangedFiles: 200
    maxHashedFileBytes: 0
    gitTimeoutMs: 3000

includeOutputPreview is deliberately off by default. When enabled, only a bounded, redacted text preview is stored; the complete output is still omitted.

maxHashedFileBytes is also deliberately 0 by default, so Git collection uses metadata only and never opens changed file contents. Set a positive per-file cap to opt in; sensitive-looking and untracked paths remain excluded.

Security model and limitations

  • Collection is allowlist-based. Unknown tool arguments are represented only by their key names, not their values.
  • Known credentials, authorization headers, private keys, sensitive object fields, and user-home paths are redacted before persistence.
  • Git commands are fixed, read-only invocations executed without a shell.
  • Git state is a snapshot of the whole workspace at turn end. It is evidence of state, not proof that every change was caused by that turn.
  • Git collection is non-transactional; concurrent workspace changes can race the status, diff-stat, and optional hash probes.
  • Tool elapsed times span DSH observations/commits and are not precise tool-body timings, especially for parallel calls.
  • Usage follows DSH's per-step last-wins fold, so streaming and final samples are not double-counted; reasoning tokens are already part of output tokens.
  • Only live turn/end events observed while the plugin is loaded produce receipts. Seeded crash-recovery history and turns completed while the plugin was unloaded are not backfilled.
  • Natural-language claims are not automatically classified or verified in this MVP.
  • Redaction is defense in depth, not a mathematical guarantee. Inspect a receipt before sharing it.
  • The integrity digest detects accidental or later content changes; it is not a signature and does not prove that DSH or another plugin was trustworthy.
  • The threat model does not defend against a malicious Harness/plugin deliberately encoding secrets into ordinary names or paths.
  • Receipt writing is best-effort: failures are logged in redacted form and do not fail the agent turn or its session/flush checkpoint.

Development

pnpm clean
pnpm typecheck
pnpm test
pnpm build

Every public publish runs pnpm check through prepublishOnly. The build removes lib/ first so renamed or deleted source files cannot leave stale JavaScript or declaration files in the package.

License

MIT

DeepSeek Harness is currently a developer preview. This plugin intentionally pins its tested API line and keeps all DSH event data behind a small internal receipt model.