DeepSeek Harness plugin

dsh-git-remotes

DSH web plugin: better-sidebar Git Remotes tab for fetch / ff-only pull / confirmed push. Does not replace the built-in Git stage/commit tab.

Jump to install

Source facts

Repository
yq04/dsh-git-remotes
Latest update
Aug 15, 2026
Category
Notifications & Integrations
GitHub stars
2
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/yq04/dsh-git-remotes
Plugin: dsh-git-remotes
Author: yq04

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README_EN.mdSource · read only
README language

dsh-git-remotes

简体中文 · English

A DeepSeek Harness web plugin that adds a Git Remotes tab to dsh-better-sidebar.

The built-in Git tab already stages, commits, and discards. This plugin does not replace it. It fills the remote gap:

  • branch, upstream, ahead/behind, remotes
  • git fetch (all remotes or one name; prune stale tracking refs by default)
  • git pull --ff-only (diverged histories become a human-readable error, never an implicit merge)
  • git push only after an in-tab confirm (no force-push, no model-facing auto-push tool)

Install

Install better-sidebar first, then this plugin on the official web profile:

dsh plugin --profile web add dsh-better-sidebar
dsh plugin --profile web add git+https://github.com/yq04/dsh-git-remotes.git

Without better-sidebar the host routes still mount; the client declares inject = ['betterSidebar'] so the tab stays inactive. Remove with:

dsh plugin --profile web remove dsh-git-remotes
dsh plugin --profile web --dump-config

Requires system git. Credentials stay in your existing helper / SSH agent. The plugin never stores tokens and redacts user:pass in error text.

Boundaries

DoesDoes not
fetch / ff-only pull / confirmed pushstage, commit, revert (use the built-in Git tab)
validate remote names before argvshell interpolation, --force
POST + application/json + Host trust fenceregister a model push tool
prune [gone] tracking refsdelete local branches automatically

Push requires confirm: true. That constraint is borrowed from Claude Code's bundled commit-commands plugin: /commit-push-pr is human-started. This plugin uses a sidebar confirm instead of a slash command, and it does not call gh pr create. Default fetch prune matches what /clean_gone needs (git fetch --prune first).

Develop

pnpm install
pnpm typecheck
pnpm test
pnpm build

dsh.bundle.patch is cordis.patch.yml. GitHub topics already set: dsh, dsh-plugin, dsh-better-sidebar, git.

License

BSD-3-Clause (same as the official plugin-template).