dsh-full-with-approval
A DeepSeek Harness (DSH) profile plugin that adds a fourth permission preset, full-with-approval:
Full compute access — the session sandbox mode is
danger-full-access, so processes run unconfined: CUDA/GPU, devices, network and any binary your machine can run.Approval-gated file edits — while this preset is active, every
write/editthat would modify- a file outside the session workspace (except the platform temp areas and configured scratch roots), or
- a protected file inside the workspace (default:
.git/**,.env*),
asks the user for one-shot approval before anything executes. Approval is resolved through the same interactive prompt the sandbox escalation retries use (
ctx.approval,allowed-once). Rejected or cancelled ⇒ the tool fails and nothing is written. If no approval channel is available, the call fails closed.
Everything else — writes inside the workspace to ordinary files, temp/scratch files, all reads and every command — proceeds untouched.
How it works
The plugin is a thin load-bearing layer over existing DSH extension points; no core package is modified.
cordis.patch.ymlpatch entryfull-with-approvalmounts the host plugin.- The same patch overrides the
permissionpreset table (by id) to add the 4th presetfull-with-approval = { sandbox: danger-full-access, approval: ask }. The GUI permission selector and/permissioncommand read this table, so the new row appears automatically. - The plugin listens on the tools registry's
tools/pre-executewaterfall (the official allow / deny / ask before dispatch hook). When the session's effective preset isfull-with-approvaland the call is awrite/editwhose target is outside the workspace or protected, it returns{ kind: "ask", reason }. The registry resolves the ask throughctx.approval.request(...)and only dispatches onallowed-once.
Install
# from the parent directory of a git checkout (pnpm `file:` install: copies the
# package and installs its declared dependencies)
dsh plugin --profile web add ./dsh-full-with-approval
# or from a local folder by absolute path (the `link:` form does not manage the
# plugin's own dependencies; keep `npm install` in the checkout)
dsh plugin --profile web add /path/to/dsh-full-with-approval
# once published as an npm package
dsh plugin --profile web add dsh-full-with-approval
dsh plugin add runs pnpm and reconciles the profile's bundle list: a package declaring dsh.bundle joins the layer stack automatically. The change applies on the next boot of the dsh profile (restart the app / refresh after HMR).
If pnpm aborts with
ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION(a supply-chain policy on the profile's lockfile, unrelated to this plugin), relax it for the install:dsh plugin --profile web add ./dsh-full-with-approval --config.minimum-release-age=0
Usage
- In the web UI open the permission selector and pick Full With Approval (4th option), or run:
/permission full-with-approval - While the preset is active, protected writes raise the approval prompt; approve to let that one write through.
- Switch back to
workspace-write/danger-full-access/read-onlyat any time; the gate follows the preset.
Configuration
The plugin entry config (patch cordis.patch.yml in the profile or override via cordis.patch.yml of your profile):
- id: full-with-approval
config:
# Globs matched against the POSIX path relative to the session workspace.
# An absolute pattern matches the absolute target path.
protectedPaths:
- ".git/**"
- ".env*"
- ".env/**"
# Absolute scratch roots that never prompt (besides the platform temp dir).
extraWritableRoots: []
Changing protectedPaths takes effect on reload/restart.
What is intentionally NOT gated
- Reads are always allowed (every sandbox mode permits reading).
- Temp areas (
/tmp,os.tmpdir()) andextraWritableRootsnever prompt. - Command-driven writes (
bash,pwsh, terminal) are not tracked per-file: the sandbox is unconfined by design, so a command may write anywhere the user account can. The sanctioned edit path — and the one this plugin gates — is thewrite/edittool family.
Known caveats
- Selector icon — the core Web UI draws permission icons from a value-keyed table inside the
@deepseek-ai/dsh-client-ui-conversationclient bundle; plugin-added presets get none (the flat client module graph cannot override that table from a plugin bundle). Until supported upstream, draw the 4th row's shield-check glyph with one command (idempotent, backs up the bundle file, live-served — refresh the page after re-running on each dsh upgrade):node tools/patch-ui-glyph.mjs - The 4th option does not show the extra risk-confirmation gate the stock
danger-full-accessrow shows (that gate is keyed on the preset value in the core UI client); the row's own one-shot approvals still guard every protected write. run_code/code-mode executions are not inspected for file effects; only nativewrite/editcalls are gated.- Path classification is canonicalize-then-compare against the session workspace; on filesystems with odd symlink aliasing (Windows 8.3, case-insensitive paths) treat the workspace boundary as advisory — the sandbox fence itself is the kernel-level authority where modes confine.
Development
npm install --no-audit --no-fund # picomatch
node --test # classifier unit tests
DSH_AI_NODE_MODULES=/path/to/node_modules/@deepseek-ai \
node test/pre-execute.harness.mjs # full ask→approval→dispatch chain
Release
npm pack # build the tarball
License
MIT
No comments yet. Be the first to write one.