DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Galvanize Dsh — DeepSeek Harness 插件(DSH Plugin)
← Plugins
G

galvanize-dsh

Galvanize Dsh

用于 galvanize 事件触发器的原生 DSH (DeepSeek Harness) 捆绑包:在代理的工具架构中提供 trigger_add/list/remove/test/status,通过核心的版本化本地 API 实现轻量客户端。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:jarvis959/galvanize-dsh#c3c97c3619456ba92c0bda7debf66b510571aa9c
README兼容性版本

兼容性与来源证明

Galvanize Dsh 以 galvanize-dsh 发布,当前版本为 0.1.6。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/29

版本

0.1.6stable
2026/8/29
0.1.5stable
2026/8/29
0.1.2stable
2026/8/28

相关插件

正在加载相关插件…

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

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

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

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

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

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rPocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

galvanize-dsh: triggers inside your DSH agent

Give your DeepSeek Harness agent a way to wake itself up. Once this bundle is installed, your DSH agent registers event triggers by itself: a file landing in a folder, an email arriving, a webhook firing, a git push. When one happens, the galvanize core spawns a fresh headless DSH session with your prompt and the event's data — so "wake me when a resume shows up in my downloads" is a real push trigger, not a poll job. The plugin itself is a thin, verified client: five trigger_* tools in the agent schema, every answer proxied from the core's local API. Installation ends by proving the plugin loaded — a headless boot-probe plus three green checks — because a broken DSH plugin fails as a silent no-op, and "should be fine" is the one answer this installer refuses to give.

Install

Works on Windows, macOS, and Linux (Node ^22.19 || >=24 — DSH's own range). No cloning needed; one command runs straight from GitHub:

npx github:jarvis959/galvanize-dsh install
# or global: npm install -g github:jarvis959/galvanize-dsh
# from a clone: npm ci && node lib/cli.js install

install needs two things on the machine first:

# 1. the galvanize core (same family; daemon + autostart included):
pipx install "git+https://github.com/jarvis959/galvanize.git"
galvanize init

# 2. DeepSeek Harness with its CLI on PATH:
npm install -g @deepseek-ai/dsh

Then that one npx github:… command mounts the bundle into your DSH web profile (--profile <p> to change), bootstraps the headless wake profile, boots DSH once as a probe, and prints three green checks only if the plugin is verifiably running:

  ✔ core /version handshake        core 0.1.2, api 1
  ✔ patch row 'galvanize/tools'    row present, package resolvable
  ✔ plugin heartbeat               plugin 0.1.2, core_api_ok=true, 3s ago
LOADED: all three checks green.

galvanize-dsh verify re-runs those checks any time; galvanize-dsh uninstall reverses everything.

First trigger

galvanize add folder ~/inbox --name triage --wake dsh \
  --prompt 'Read {file} and write a triage summary to ~/inbox-out/{file}.md'

echo hello > ~/inbox/demo.txt   # a minute later: ~/inbox-out/demo.txt.md

Or skip the CLI and just tell your agent in a DSH chat: "wake me when a lab report lands in my inbox" — it calls trigger_add itself, test-fires once so you watch it work, and stays quiet until the event actually happens.

What the agent gets

ToolWhat it does
trigger_addregister a trigger (folder / webhook / emit / imap) — the event-shaped alternative to a poll job
trigger_listwhat's watching, with settings
trigger_testfire a synthetic event through the real dispatch path
trigger_statushonest health: daemon, last fire, fires today, last error
trigger_removetake one out (route cleanup included)
event ── galvanize core ── wake ──▶ dsh --profile headless "<your prompt>"
 (folder/        (dedupe, cooldown,          │
  mail/webhook/   routes, delivery)          ▼
  git/emit)                          fresh DSH session
  • Thin client: no wake or trigger logic in JS — everything proxies to the core's loopback API (GET /version, POST /manage/<op>, bearer token), so behavior matches the core's plugins for Hermes / Claude Code / Codex.
  • Exactly-one-surface: plugin and galvanize mcp never coexist; the active one claims ~/.galvanize/surfaces.json and the core's doctor flags double-mounts.
  • Wake preset: the core spawns dsh --profile <wakeProfile> "<prompt>" per event; the profile, command, and heartbeat cadence are config on the bundle row.

Development

npm ci && npm run build && npx vitest run && npx publint

src/index.ts (tools) · src/core-client.ts (serve client) · src/cli.ts (installer / verify / uninstall) · test/ (18 tests against a stub core — no DSH needed). CI runs the matrix on Windows, Linux, and macOS.

License

MIT