DeepSeek Harness 插件

dsh-tool-git-lxj808624

Structured, safe Git tool family for DeepSeek Harness: status/diff/log/branch/stage/commit/stash/show/fetch/pull/remote/checkout with a destructive-command guard.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
lxj808624/dsh-tool-git
最近更新
2026年8月16日
分类
工具与能力
GitHub stars
4
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/lxj808624/dsh-tool-git
插件名:dsh-tool-git-lxj808624
作者:lxj808624

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-tool-git

![npm](https://www.npmjs.com/package/dsh-tool-git) ![CI](https://github.com/lxj808624/dsh-tool-git/actions) ![License](LICENSE) ![awesome-deepseek-harness](https://github.com/0xsline/awesome-deepseek-harness) ![GitHub stars](https://github.com/lxj808624/dsh-tool-git)

Structured, safe Git tool family for DeepSeek Harness (dsh).

Coding agents reach for git constantly, but the stock runtime only offers raw bash. dsh-tool-git gives the model eight structured tools that run git through a shell-free subprocess runner and return canonical JSON values — plus a tools/pre-execute safety gate that stops destructive git operations (force push, hard reset, rebase, amend, branch deletion, …) before they happen, whether the model calls them through these tools or through a shell tool.

  • No shell injection: every command goes through execFile with an explicit

argument array. Model-supplied paths and messages are never string-interpolated.

  • Machine output: porcelain v2, --numstat, and --format records are parsed

into structured JSON, not prose.

  • Safety by default: destructive operations are denied with an explanation

unless you opt into ask (approval prompt) or allow.

Tools

ToolWhat it does
git_statusWorking tree state: branch, ahead/behind, staged / unstaged / untracked files
git_diffPer-file insertion/deletion stats, optional unified patch, --cached / rev bases
git_logCommit history: hash, author, date, subject, body; maxCount, rev range, path filter
git_branchBranches with upstream and ahead/behind tracking state
git_stageStage explicit paths, or all / tracked-only changes
git_commitCreate a commit with a message; returns hash and statistics
git_stashlist / push / pop stashes, with conflict-safe pop
git_showOne commit: metadata, per-file stats, optional patch
git_fetchDownload refs from a remote without touching the worktree
git_pullFast-forward-only by default; reports not-fast-forward / conflict outcomes
git_remoteList configured remotes with fetch/push URLs
git_checkoutSwitch branches, or create and switch (-b); never discards changes

Every tool accepts an optional repoDir argument and reports the resolved repository root in its result.

Safety gate

The gate listens on tools/pre-execute and inspects every tool call:

  • The plugin's own tools — e.g. git_commit with amend: true.
  • Shell toolsbash, tool:bash, bash_persistent, terminal,

tool:terminal, pwsh — scanning their command text for destructive git invocations such as:

push --force / --force-with-lease · push --delete · reset --hard · clean -f · branch -d/-D · tag -d · rebase · pull --rebase · commit --amend · checkout -- / checkout . / checkout -f · switch -f · restore (discarding worktree) · rm -r · update-ref -d · filter-branch

Pattern matching is per-command: it never crosses |, ;, or newline

boundaries, so git add . && git push --force is still caught but innocent compound commands are not misread.

This is a policy guardrail, not a sandbox. An agent that can run arbitrary code can always route around a string matcher (aliases, -c rewrites, scripting). The gate exists to make accidental destructive calls fail loudly with an explanation — deliberate destructive work is authorized through the configured policy, not by bypassing the gate.

Install

npm (recommended) — from any directory:

dsh plugin --profile web add dsh-tool-git

From GitHub (or a local checkout / tarball):

dsh plugin --profile web add github:lxj808624/dsh-tool-git#v0.1.3

Then restart dsh --profile web. For GitHub installs, pnpm asks you to allowlist the prepare build script once (see the official packaging guide).

Configuration

All options are optional; the defaults are shown below:

# profile-level or bundle patch config for the tool-git row
- id: tool-git
  name: dsh-tool-git
  config:
    workDir: ''                # repo discovery start dir (default: process cwd)
    gitPath: git               # git executable
    destructivePolicy: deny    # deny | ask | allow
    extraDestructivePatterns: []  # extra case-insensitive regexes for the gate
    logMaxCommits: 20          # git_log default count (cap 100)
    diffContextLines: 3        # patch context lines for git_diff / git_show
  • deny (default) — destructive calls are rejected with the pattern name and

an explanation.

  • ask — destructive calls go through the runtime's approval seam

(ctx.approval); without a mounted approval service they degrade to deny.

  • allow — the gate passes everything through.

Development

Prerequisites: Node.js ≥ 22.19 and pnpm. The project is self-contained — all @deepseek-ai/* types resolve from the published public API (0.0.1-rc.5 line) installed as devDependencies, so no deepseek-harness checkout is required.

pnpm install
pnpm run typecheck   # tsc against the public @deepseek-ai/* API
pnpm test            # vitest: boots the plugin, runs real git in temp repos
pnpm run build       # tsc declarations + tsdown bundle (lib/index.mjs)

The tests create a disposable repository, register the plugin on a Cordis context with the real dsh-tools runtime, and execute every tool through the full pipeline (tools/pre-execute → dispatch → tools/result).

Publish

  • dsh.bundle.patch in package.json points at cordis.patch.yml, so

dsh plugin add activates the plugin as a profile layer.

  • prepare runs tsdown --config tsdown.prepare.config.ts, which transpiles

src/ without project references — so GitHub installs build cleanly without a sibling harness checkout. Prefer publishing prebuilt tarballs / npm packages to avoid pnpm's build-script allowlist.

License

[MIT](LICENSE)

Contributors

dsh-tools peer-resolution issue that crashed the host tool dispatcher on DeepSeek Harness 0.1.0-rc.6 (#1, #2).