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.

Plugin Git — DSH Plugin for DeepSeek Harness
← Plugins

dsh-plugin-git

Plugin Git

Git workspace, review, commit and push integration 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-plugin-git@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Plugin Git is published as dsh-plugin-git and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.1stable
8/19/2026
0.1.0stable
8/19/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
1 MB
Files
25
Surface
web
License
MIT
Source
npm
Weekly downloads
26
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-plugin-git

Single-package Git workspace integration for DeepSeek Harness. It includes the Host Git service, typed Remote contribution, browser UI, file tree, turn review, remote comparison, revert, commit and push workflows.

Prerequisites

  • Node.js 22.19 or newer (or Node.js 24+)
  • pnpm 11
  • A local, built checkout of DeepSeek Harness

The Harness packages used by this plugin are not currently available from the public npm registry. The build therefore needs a Harness checkout, but that checkout and this plugin may live in any directories.

Build

First install and build DeepSeek Harness according to its own README. Then run the following commands in this plugin directory:

pnpm install
pnpm run configure -- --harness "D:\anywhere\deepseek-harness"
pnpm build
pnpm test

On macOS or Linux, the same command accepts a POSIX path:

pnpm install
pnpm run configure -- --harness /home/me/src/deepseek-harness
pnpm build
pnpm test

configure remembers the checkout in the ignored .dsh-build directory. For CI, set DSH_HARNESS_ROOT instead. No absolute checkout path is written to a tracked or published file.

Install into a web profile

After a successful build, add the plugin directory to the target profile and ask Harness to regenerate its installed plugin bundle:

cd "$env:USERPROFILE\.dsh\profiles\web"
pnpm add "D:\anywhere\dsh-plugin-git"

cd "D:\anywhere\deepseek-harness"
pnpm dsh plugin --profile web install

Run pnpm pack in the plugin directory to create a portable .tgz package. Recipients can install that archive and use the plugin without your local path.