DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Git Status Pill — DeepSeek Harness 插件(DSH Plugin)
← Plugins
G

dsh-git-status-pill

Git Status Pill

适用于 DeepSeek Harness 的浮动 Git 状态提示条:实时显示分支、增减行数变化,并提供“创建 PR”提示。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:luigiinred/dsh-git-status-pill#d922b7f2c39f6101e644e58b43258ab3435ffd5a
README兼容性版本

说明

适用于 DeepSeek Harness 的浮动 Git 状态提示条:实时显示分支、增减行数变化,并提供“创建 PR”提示,覆盖整个应用界面。

兼容性与来源证明

Git Status Pill 以 dsh-git-status-pill 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/17

版本

0.1.0stable
2026/9/17

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/16
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-git-status-pill

A floating git status pill for DeepSeek Harness. It shows, live, for the session's repository:

  • the branch and repository name
  • +/− line changes (git diff HEAD --shortstat)
  • changed-file and untracked-file counts, upstream, and ahead/behind
  • a Create PR prompt: an editable title, the generated gh pr create command, and a ready-to-send agent prompt

It renders into the harness shell.overlay slot — the frame-wide, click-through floating layer — so it sits above every column without blocking the app. Drag it by the grip handle; hide it with ✕.

Install

# from a registry
dsh plugin --profile web add dsh-git-status-pill

# or straight from a checkout / tarball
dsh plugin --profile web add /absolute/path/to/dsh-git-status-pill

dsh plugin … add forwards to pnpm inside the profile directory, so the package lands in the profile's node_modules.

Then make sure the package is in the profile's dsh.profile.bundles list in $DSH_HOME/profiles/web/package.json:

{
  "dsh": {
    "profile": {
      "bundles": ["@deepseek-ai/dsh-base", "@deepseek-ai/dsh-web-app", "dsh-git-status-pill"]
    }
  }
}

That list is what applies this package's cordis.patch.yml, which inserts the host row:

- insert:
    - id: git-status-pill
      name: dsh-git-status-pill

Restart the web profile. The pill appears at the bottom-right of the frame.

Publish

npm login
npm publish --access public

publishConfig/access is not set in package.json because the package is unscoped; add "publishConfig": { "access": "public" } if you rename it under a scope. Before publishing, set the real repository.url in package.json.

How it is wired

HalfFileMechanism
Hostlib/index.jsESM Cordis plugin. inject: ['webServer'], registers one exact HTTP route, reads git through the ctx.shell service.
Clientlib/client.jswindow.__ModuleLoader__ bundle. Injects slots, claims shell.overlay, polls the host route with fetch.
Compositioncordis.patch.ymlInserts the host row when the bundle is applied.

Why an HTTP route instead of a typert Remote

The canonical host→client bridge in the harness is a typert Remote namespace — the client calls ctx.remote.<namespace>.<method>(), the host declares @Remote(...) methods, and a plugin's client half mounts its own descriptor with await ctx.remote.$mount(contribution). That is how shipped plugins and community plugins like dsh-cost-meter do it.

The catch is that the descriptors on both sides (lib/typert.host.js and the client contribution) are generated by @deepseek-ai/dsh-typert-generator from a Host FaceModel. That generator is not part of an installed harness (0.1.5-rc.1), and hand-writing generated schema descriptors is brittle.

Since the harness web server is a public service, this plugin uses a plain exact-path HTTP route instead: no codegen, no build step, plain JavaScript on both sides. The tradeoff is that it does not participate in typert's scope and schema validation. If you later want the first-class transport, port the route in lib/index.js to a TypertRemoteService subclass and run the generator.

Configuration

Both the route path and the poll interval are constants at the top of the relevant file. The route must be unique across the composition — a duplicate (kind, path) throws at registration.

ConstantFileDefault
ROUTElib/index.js, lib/client.js/git-status-pill/status
POLL_MSlib/client.js4000
DEFAULT_POSlib/client.jsbottom-right, above the composer

Behaviour notes

  • Non-repository workspaces. When the session workspace is not a checkout, the pill scans the workspace and its parent for .git directories and offers them as chips, plus a field for an absolute path. A downward-only scan misses sibling repositories, which is why the parent is included.
  • Sandbox. Reads outside the session workspace can be refused by the harness sandbox. A refusal is reported in the payload (denied: true) rather than silently rendered as zeros.
  • gh. The host reports whether gh is on PATH; without it the panel says so and points at the agent prompt.
  • Clipboard. Uses navigator.clipboard and falls back to a selectable textarea.

Status

The widget logic is verified against real repositories. The package packaging — module-loader wrapper, cordis.patch.yml, and the HTTP route — has not yet been installed into a profile and booted end-to-end. Treat 0.1.0 as a first cut: install it, restart, and check the run card / browser console.

License

MIT