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.

Heartbeat — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
H

dsh-heartbeat

Heartbeat

dsh heartbeat plugin: periodic proactive checks + message tool (send iMessage) + settings UI. Independent of the iMessage gateway.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:fatatalia/dsh-heartbeat#deab4e92242cf530f84f48b5085d91aee3e8986d
READMECompatibilityVersions

Compatibility and provenance

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

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/23/2026

Versions

0.1.0stable
8/23/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Not declared
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/13/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-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rIm@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).

README

dsh-heartbeat — 心跳插件(独立)

dsh 的心跳插件:定期触发法塔依工作区 HEARTBEAT.md 检查,由法塔自行决定是否主动发送 iMessage 给代码东。独立于 iMessage 网关插件。

职责边界

  • 只做心跳节奏:定时触发 → 创建独立会话 → 投心跳 prompt → 法塔决策 → 归档。
  • 不实现发送:发消息由 iMessage 插件注册的全局 message 工具承担。心跳会话里的法塔要发时自然能调到它。
  • 不管理会话上下文:每次心跳独立会话(减少上下文),完成后归档(不堆积)。

工作方式

timer 循环(每 N 秒,可配)
  → 到点(非静默时段)触发一次心跳
  → 创建独立会话 heartbeat-<ts>(cwd=心跳工作区)
  → 投心跳 prompt:法塔读该工作区 HEARTBEAT.md 依清单检查
  → 要发则调 message 工具发 iMessage;否则静默(HEARTBEAT_OK)
  → 完成 → 自动归档该会话

配置项(Settings → 心跳)

配置说明默认
启用心跳总开关true
心跳间隔(秒)每 N 秒检查一次该不该心跳1800
心跳工作区路径心跳会话 cwd(读哪的 HEARTBEAT.md)~/dsh/default
静默时段开始/结束(时)该时段不自动心跳22 / 7
立即心跳一次手动触发(忽略静默)按钮

结构

dsh-heartbeat/
├── index.js              # host 插件:配置 remote(get/set/trigger) + 启动 await runner
├── client.js             # 配置页(Settings→心跳,含立即心跳按钮)
├── lib/heartbeat-core.mjs# HeartbeatRunner:静默检查/建会话/投 prompt/归档
├── cordis.patch.yml      # 插入 host 插件行
└── package.json          # dsh.bundle + dsh.client

依赖 dsh 服务(host)

typert/settings/agents/agentDefaultModel/agentPresets/sessions/workspaceRegistry/timer

message 工具(由 iMessage 插件提供)

  • iMessage 插件(dsh-imessage)注册全局 message 工具,任何 agent(含心跳会话)可调: message(action=send, channel=imessage, target=+8613800000000, message="...")
  • 心跳/法塔要发消息就调它。

心跳工作区资源

心跳工作区(如 ~/dsh/default)需有 HEARTBEAT.md(检查清单)+ 相关监控脚本(scripts/)+ 技能(skills/)。

说明

  • 自动心跳 every 间隔最小建议 ≥30s;默认 1800s。
  • 手动触发忽略静默时段(用于验证/主动心跳)。
  • 心跳会话归档后在工作区列表隐藏,session 文件保留可查。