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.

Im — DSH Plugin for DeepSeek Harness
← Plugins

dsh-im

Im

Unified IM bridge core: enables DeepSeek Harness to be controlled, notified, and approved via IM (session mapping / commands / notification bus / approval flow / MockChannel).

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-im@1.0.5
READMECompatibilityVersions

Compatibility and provenance

Im is published as dsh-im and currently resolves to version 1.0.5. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

1.0.5stable
8/15/2026
1.0.4stable
8/15/2026
1.0.3stable
8/15/2026
Show 1 more versionCollapse versions
1.0.2stable
8/15/2026

Related plugins

Loading related plugins…

Latest
1.0.5
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
81.7 kB
Files
13
Surface
any
License
MIT
Source
npm
GitHub
★ 3
Weekly downloads
203
Security scan
✓ v1.0.5 scan passed
Last push
8/15/2026
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 integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-im(核心)

统一 IM 桥核心插件:ctx.im 服务、会话映射、命令、渲染、通知总线、审批管理、MockChannel。

  • 依赖:inject: ['agents'](需要 dsh-agent/dsh-agent-loop)、可选 approval(dsh-user-approval,缺省 ask→deny)
  • 配置:见 docs/example-cordis.patch.yml 与 docs/install.md
  • 测试:npm run test:im(44 个:单测 + 真实 agent-loop 全链路 e2e,无网络/无 key)

扩展点(§8.3)

// 第三方渠道:实现 send() 契约后注册即可
ctx.im.registerChannel({
  platform: 'my-im',
  send: async (out) => { /* 发消息 */ },
  sendFile: async (chatId, name, text, mime) => { /* 发文件 */ },
});
// 入站:构造 ImMessage 后交给核心
ctx.im.dispatchInbound({ platform: 'my-im', chatId, userId, text, msgId, chatType });
// 按钮回调:data 载荷约定 approve:<id>:yes|no / trust:<platform>:<userId> / retry:<sessionId>
ctx.im.handleCallback({ platform, chatId, userId, userName, data });

事件(其他插件可复用):im/message、im/command、im/dispatch、im/approval。

审批接线(FR-6)

  • tools/pre-execute 风险门:仅拦截 IM 会话的工具调用(不双弹窗,§10),风险规则见 lib/risk.js
  • approval/request answerer:把官方审批缝路由到 IM 卡片;超时 → pending(可恢复拒绝 FR-6.4)
  • 文本降级:/approve <id> yes|no;首个响应者生效(FR-6.5);approvals.log 审计(FR-6.7)