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.

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

dsh-git-bash

Git Bash

Make a Git for Windows installation resolvable as `bash` inside the dsh host process, so the official bash shell stack (dsh-bash-sandbox + dsh-tool-bash) can run on Windows

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-git-bash@0.1.3
READMECompatibilityVersions

Compatibility and provenance

Git Bash is published as dsh-git-bash and currently resolves to version 0.1.3. 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/16/2026

Versions

0.1.3stable
9/16/2026
0.1.2stable
9/13/2026

Related plugins

Loading related plugins…

Latest
0.1.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
33.7 kB
Files
9
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/16/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-git-bash

English · 中文

Built for dsh-TUI.

Make a Git for Windows installation resolvable as bash inside the dsh host process, so the official bash shell stack can run on Windows.

Requirements

  • Windows and a Git for Windows installation whose bin directory holds bash.exe. The default install location (%ProgramFiles%\Git\bin) is found automatically; a portable or non-standard install is configured through gitBinDir (see Configuration).
  • A profile whose bundle list contains @deepseek-ai/dsh-base — the rows this package's patch overrides are mounted there.
  • Node ^22.19 || >=24 (the same range the host requires).

⚠️ Read this before installing: this bundle is a shell-stack swap, not an addition. Its patch enables the bash rows and disables the pwsh rows at boot, before this plugin's apply() runs. If no Git for Windows installation is found, this plugin cannot repair that: bash stays unresolvable, the bash tool fails on every spawn, and the disabled pwsh rows leave no fallback shell. On a machine without Git for Windows, do not install this bundle — install Git for Windows first, or point gitBinDir at a portable installation. Removing the bundle restores the platform defaults: dsh plugin --profile <profile> remove dsh-git-bash.

The problem it solves

dsh ships two shell stacks and gates them by platform: on Windows @deepseek-ai/dsh-base mounts pwsh-sandbox + tool-pwsh and disables bash-sandbox + tool-bash. The bash stack is not disabled for lack of support — it is disabled because it spawns the bare name bash:

  • the executor runs ["bash", "-c", command], and
  • the sandbox layer builds its own ["bash", "-c", command] for the confined runner.

Neither place accepts a configurable executable path. A stock Windows PATH does not resolve bash: Git for Windows puts cmd\git.exe on PATH, but not bin\bash.exe. So the only seam that reaches both spawn sites is the process PATH — which is what this plugin edits.

What it does

On win32 only, during apply():

  1. detects a Git installation (%ProgramFiles%\Git\bin, %ProgramFiles(x86)%\Git\bin, %LOCALAPPDATA%\Programs\Git\bin, then C:\Program Files\Git\bin) and checks that it really holds bash.exe;
  2. prepends that directory to process.env.PATH — but only when that directory is not already a PATH entry, and never reordering an existing entry;
  3. records what it decided in ~/.dsh-tui/dsh-git-bash.log (bounded: past 128 KiB the older half is dropped, and node --test runs never write it);
  4. restores the previous PATH on unload — but only while the value is still its own, so a PATH someone else edited afterwards is left alone.
  5. when no installation is found, reports it at error level with the consequence and the three ways out. It does not fail the boot, so that message is the only signal that the bash tool will not work.

On other platforms it logs skipped: not win32 and does nothing.

It never throws: a missing installation, an unreadable log or a hostile config leaves PATH exactly as it was. That is deliberately not the same as leaving the machine as it was — the bundle patch has already swapped the shell stacks by then, and no plugin can undo that. Hence the warning above and the error-level report.

Enabling the bash stack: the bundle patch does both halves

A plugin cannot register a tool; it can only make the environment the official tools need. So this package's own bundle patch does both halves, and installing the package IS the installation:

- insert:
    - id: dsh-git-bash
      name: 'dsh-git-bash'
- id: bash-sandbox      # enabled (config restated: a patch replaces it whole)
  disabled: false
- id: pwsh-sandbox      # disabled
  disabled: true
- id: tool-bash         # enabled -> the `bash` tool appears
  disabled: false
- id: tool-pwsh         # disabled
  disabled: true

Both stacks provide ctx.shell, so exactly one may mount: this is a swap, not an addition. pwsh remains reachable from bash (powershell -Command '…') if you need it.

Reverting is removing the bundle (dsh plugin --profile <p> remove dsh-git-bash): every override above disappears with it and the platform gating in @deepseek-ai/dsh-base applies again.

Do not put this swap in a LIVE profile's own cordis.patch.yml instead. That file is watched by patchReload: live, so editing it re-configures running sessions immediately — before this plugin's row is loaded, which leaves them with a shell stack that cannot spawn bash. A bundle patch is read at boot, which is the order this needs.

Install

# from npm (package name: dsh-git-bash)
dsh plugin --profile dsh-tui add dsh-git-bash

# from a local checkout (development)
dsh plugin --profile dsh-tui add file:/absolute/path/to/dsh-git-bash

Then restart the TUI (/restart) and confirm the composition before trusting it:

dsh --profile dsh-tui --dump-config    # composes the tree without starting the UI

Also check the detection result — ~/.dsh-tui/dsh-git-bash.log or the host log records it, and a missing installation shows up there as a SHELL TOOLS WILL NOT RUN error (see Diagnostics).

Configuration

KeyTypeDefaultMeaning
gitBinDirstring""Directory holding bash.exe. Empty = auto-detect. When set, it is the only candidate — a typo is reported at error level instead of being papered over.

Set it on the plugin's row when detection cannot find your installation:

- id: dsh-git-bash
  config:
    gitBinDir: 'D:\PortableGit\bin'

Known limitations

  • A machine without Git for Windows ends up with no working shell. The stack swap is unconditional (it is a static patch, applied before this plugin runs), so a missing or undiscoverable installation cannot be compensated for at runtime. The plugin says so at error level, but it cannot restore the pwsh rows. Install Git for Windows, set gitBinDir, or remove the bundle.
  • This enables a platform-gated stack. dsh disables the bash rows on Windows by design; this plugin removes the reason it cannot work, but that composition is not one upstream tests. Keep the .bak of your cordis.patch.yml: rolling back is deleting the four override lines above.
  • Sandbox modes are the untested part. With danger-full-access the executor skips the confinement wrapper entirely, which is what has been exercised here. Under workspace-write the sandbox layer wraps the command in the Windows ACL restricted-token runner — a path built for POSIX. Treat confined modes as unverified.
  • A plugin cannot add tools; it can only make the environment the official tools need. If the bash rows are not enabled, this plugin changes nothing visible.
  • The PATH edit is process-wide inside the host process, which is exactly the point: every consumer resolving bash (the agent's own commands included) benefits.

Development

pnpm install
pnpm test              # node:test unit tests (pure discovery/PATH rules)
pnpm check:encoding    # no UTF-8 BOM / damaged sequences / tab indentation
pnpm verify            # both, in order

The tests are pure and injectable: resolveBinDir takes its environment and its existence probe as arguments, so the discovery rules are pinned without touching the machine. The win32 cases exercise the real installation when one is present and skip otherwise.

Diagnostics

~/.dsh-tui/dsh-git-bash.log holds one line per decision: the detected directory, already resolvable, SHELL TOOLS WILL NOT RUN … when no installation was found, and the unload restore (or PATH left alone: it changed after this plugin). Every message is also sent to the host logger — the missing-installation one at error level.

Publishing

  • Repository: https://github.com/VviLliAm-qwq/dsh-git-bash (public)
  • Release: v* tags drive .github/workflows/release.yml, which publishes to npm through trusted publishing (OIDC) — no token is stored in the repository.

License

MIT.