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.

Feishu Notifier — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
F

dsh-feishu-notifier

Feishu Notifier

Send DeepSeek Harness interaction and turn notifications to a Feishu bot

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

npx -y @deepseek-ai/dsh plugin --profile web add github:blooming-fang/dsh-feishu-notifier#b267f9641865ffc5845384c550aba9e05b71a74a
READMECompatibilityVersions
配置界面

Compatibility and provenance

Feishu Notifier is published as dsh-feishu-notifier and currently resolves to version 0.1.7. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/10/2026

Versions

0.1.7stable
9/10/2026
0.1.6stable
8/24/2026
0.1.4stable
8/21/2026
Show 1 more versionCollapse versions
0.1.3stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.7
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 3
Weekly downloads
0
Last push
9/10/2026
View source ↗
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

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-feishu-notifier

一个 DeepSeek Harness Bundle:当智能体请求用户批准、等待用户回答问题或确认计划,以及一轮对话结束时,向飞书机器人发送文本通知。

配置界面

使用要求

  • DeepSeek Harness 0.1.5-rc.1 或兼容版本。
  • Node.js 22.19+。
  • 在 Web 设置中配置飞书自定义机器人 Webhook。

本地开发

pnpm install
pnpm run build
pnpm pack:check

构建会生成:

  • lib/index.js:Node/Cordis Loader 入口;
  • lib/client.js:Web 浏览器插件入口。

从 npm 安装

将插件发布到 npm 后,用户可以直接使用以下命令安装到 web Profile:

dsh plugin --profile web add dsh-feishu-notifier
dsh --profile web

如果使用源码方式运行 DeepSeek Harness,则将 dsh 替换为 pnpm dsh:

pnpm dsh plugin --profile web add dsh-feishu-notifier
pnpm dsh --profile web

启动后打开:

设置 → 飞书通知

填写飞书机器人 Webhook,点击“保存 Webhook”,然后点击“发送测试消息”验证连接。配置会通过插件自己的 Host API 持久化到 DSH 的 settings.yaml,通常位于 C:\Users\<用户名>\.dsh\settings.yaml。真实 Webhook 不会包含在 npm 包中,每位用户都需要配置自己的地址。

飞书通知

从 GitHub 安装

建议使用 release tag 或 commit SHA,确保安装内容可复现:

pnpm dsh plugin --profile demo add github:blooming-fang/dsh-feishu-notifier

从 GitHub 安装时会执行 prepare 构建插件。只应安装可信仓库中的代码;pnpm 可能要求在 Profile 的 workspace 配置中加入 allowBuilds 授权。

通知事件

插件会发送以下通知:

  • 用户审批请求;
  • ask_user_question 用户问题请求;
  • exit_plan_mode 计划确认请求;
  • turn/end 对话轮次结束事件,并将完成、错误、取消和中断原因转换为可读文本。

Webhook 属于敏感设置,保存后不会返回给浏览器。不要把真实 Webhook 地址提交到 GitHub 或发布到 npm。