Back to home@sha2kyou

dsh-settings-about

dsh Settings → About plugin: runtime version, env, installed plugins (requires @deepseek-ai/dsh@0.1.1-rc.1)

Stars
1
Language
JavaScript
Created
Aug 21, 2026
Updated
Aug 21, 2026

Introduction

dsh-settings-about

English | 中文

DeepSeek Harness (dsh) plugin that adds Settings → About: verified runtime facts from the currently running dsh process, plus an installed-plugin inventory (id, module, version, enabled, fiber phase).

Settings → About

Version requirements (important)

RequirementConstraint
dsh@deepseek-ai/dsh@0.1.1-rc.1 only (the 0.1.1-rc.* line with credentials document version 1)
Not supported@deepseek-ai/dsh@0.1.0-rc.* and older (flat .credentials.yaml without version / refs)
Profileweb only (this package ships a browser dsh.client UI)
Node.jsWhatever that dsh release requires (typically Node ^22.19 || >=24; verify with your install)
pnpmRequired on PATHdsh plugin forwards to pnpm

Install / upgrade dsh first:

npm install -g @deepseek-ai/dsh@0.1.1-rc.1
dsh --version   # must print 0.1.1-rc.1

Credentials must use the v1 layout (version: 1 + refs:). If you still have a pre-release flat file, start dsh web once on 0.1.1-rc.1 and let it migrate, or convert manually — do not use a 0.1.0 parser against a v1 file (or the reverse).

Install

dsh plugin --profile web add github:sha2kyou/dsh-settings-about
dsh web

Local checkout:

git clone https://github.com/sha2kyou/dsh-settings-about.git
dsh plugin --profile web add ./dsh-settings-about

Then open Settings → About.

Update (GitHub install):

dsh plugin --profile web update dsh-settings-about
# same effect for this github: spec:
# dsh plugin --profile web add github:sha2kyou/dsh-settings-about

Local checkout: git pull in the clone, then restart dsh web (a link:/path install already points at that directory).

Uninstall:

dsh plugin --profile web remove dsh-settings-about

Optional: About nav icon

Settings sidebar icons are hard-coded in @deepseek-ai/dsh-client-ui-settings-general by section id (unknown ids use the gear). To map aboutIconWarningOutline16:

node scripts/patch-about-nav-icon.mjs
# restart dsh web

Re-run after upgrading the global dsh install.

What the page shows

Values are collected from the running process only — missing data is omitted or listed under notes, never invented.

ItemSource
dsh version / license / description / package namedirname(realpath(process.argv[1]))/../package.json (same as dsh lib/bin.js)
Repository linkThat package.json repository.url when convertible to http(s)
DSH_HOME@deepseek-ai/dsh-home-paths from the same install
Node / platformprocess.version / platform / arch
Profile / bundlesargv / profile path / $DSH_HOME/profiles/<name>/package.json
ListenLive webServer.host:port
Installed pluginsCordis Loader entries (+ package.json version when resolvable). builtin is derived from profile dependencies only (no Loader provenance). UI can hide builtin: true.

Layout

FileRole
index.jsHost plugin — GET /dsh-about/info
collect.jsSnapshot builder
client.jsBrowser ModuleLoader bundle — settings.section about
cordis.patch.ymlBundle insert
scripts/patch-about-nav-icon.mjsOptional shell icon patch

License

MIT