DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Task Notify — DeepSeek Harness 插件(DSH Plugin)
← Plugins
T

@ltao0829/dsh-task-notify

Task Notify

DeepSeek Harness 的任务完成提醒:代理回合或后台作业完成时显示页面内提示、操作系统通知并播放声音

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ltao0829/dsh-task-notify#df83e98904a7bd03def3773ee6186228e88f6af8
README兼容性版本
Turn completedApproval requiredJob failed

兼容性与来源证明

Task Notify 以 @ltao0829/dsh-task-notify 发布,当前版本为 0.1.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.2stable
2026/9/13
0.1.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
0.1.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
BSD-3-Clause
发布源
github
GitHub
★ 6
周下载
0
最近提交
2026/9/15
查看源码 ↗
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

dsh-task-notify

Lifecycle notification layer for AI coding agents, currently supporting DeepSeek Harness.

AI coding agents increasingly run long-lived, autonomous tasks: a turn can take minutes, and the human has usually moved to another window. This project adds the missing notification layer on top of an agent's task lifecycle, so the moment an agent completes, fails, settles a background job, or starts waiting for a human (approval / plan review / question), you get an in-page toast, an OS-level desktop notification, and an optional sound.

Inspired by Codex's desktop-notification UX — not a Codex integration. Not affiliated with or sponsored by OpenAI. Today the project ships as a DeepSeek Harness (DSH) plugin. Its lifecycle-detection core is host-agnostic and is designed to grow into adapters for other coding agents.

Why this exists

Long-running agent tasks invert the normal attention model: instead of watching a terminal, users submit a task and switch away. UI-only status indicators (a spinner in a background tab) fail exactly when they matter most — when the user is not looking. dsh-task-notify turns lifecycle transitions into interruptible, OS-level signals, closing the feedback loop between an autonomous agent and a distracted human.

Demo

Placeholder — replace with short recordings (GIF or MP4, ~10–30 s each). See docs/demo-guide.md.

Turn completedApproval requiredBackground job failed
Turn completedApproval requiredJob failed

Features

  • Turn completion — fires when an agent turn (thinking or tool use) finishes.
  • Background job — fires when a background command or subagent job settles (completed, failed, killed).
  • Review needed — fires when a running task waits for approval, plan review, or a question answer.
  • Failure — fires when an agent turn errors or a background job fails / is killed.
  • Three channels — OS-level browser notification, in-page toast, optional two-tone beep.
  • Per-event config — every trigger and channel can be toggled independently.

Install

Prerequisites: Node.js and pnpm.

# npm (recommended)
dsh plugin --profile web add @ltao0829/dsh-task-notify

# or from Git
dsh plugin --profile web add git+https://github.com/ltao0829/dsh-task-notify.git

Restart dsh web and refresh the page. On the first click/keypress the browser asks for notification permission — allow it to receive desktop notifications.

Configuration

The settings card lives in the plugin section of DSH's settings UI. Values are stored locally in localStorage (dsh.taskNotify.v1):

ToggleDefaultMeaning
Enable remindersonmaster switch
Turn completiononan agent turn finishes
Background jobona background command / subagent job settles
Review neededona running task waits for approval / plan review / question
Failureona turn errors or a job fails / is killed
Browser notificationonalso send an OS-level notification (needs permission)
Soundoffalso play a short beep

Architecture

              coding agent
                   │
                   ▼
     host adapter  (DeepSeek Harness today;
                   Claude Code / Codex / OpenCode later)
                   │
                   ▼
   sessions snapshot (N-1 vs N)
                   │
                   ▼
   lifecycle detector  ──►  events: turn | job | review | failure
                   │
                   ▼
   notification dispatcher
         │          │          │
         ▼          ▼          ▼
       OS          toast      sound
   notification

The detector (src/detect.ts) is a pure function: a snapshot goes in, lifecycle events come out. It knows nothing about DSH or the DOM, which is what makes additional coding-agent adapters a matter of implementing a new snapshot provider rather than rewriting the notification core.

  • The first snapshot only establishes a baseline — refreshing the page never replays history.
  • src/detect.ts is host-agnostic (plain data in / plain data out) and is unit-tested in isolation.

Project layout

src/index.ts                         host half — registers the settings section
src/detect.ts                        pure lifecycle detector (snapshot diff)
src/client/index.ts                  browser half — watcher + failure watcher
src/client/notify.ts                 toast / OS notification / sound
src/client/settings.ts               localStorage-backed settings store
src/client/TaskNotifySettingsCard.tsx settings UI card
tests/*.spec.ts                      detector, settings, notification, lifecycle tests

Security & Privacy

  • No external server, no cloud backend.
  • No telemetry, no analytics, no tracking.
  • No API key required.
  • Notifications are generated locally in the browser.
  • Settings are stored locally in localStorage only.
  • The plugin does not upload or exfiltrate conversation content.

The plugin runs with the permissions of your DSH process, like any other DSH plugin.

Roadmap

Current

  • Turn-completion notifications
  • Background-job notifications
  • Approval / plan-review / question notifications
  • Failure notifications
  • OS notification + toast + sound
  • npm distribution (@ltao0829/dsh-task-notify)
  • CI/CD (typecheck + test + build + pack dry-run)

Near term

  • npm download metrics / adoption tracking
  • Cross-platform notification backend
  • Notification customization
  • Better test coverage

Long term

  • Agent-agnostic lifecycle API
  • Additional coding-agent adapters (Claude Code, Codex, OpenCode, …)
  • Reusable notification core

Related projects

  • dsh-launcher — one-click launcher for DeepSeek Harness Web.

Together these form a small suite of tooling for AI coding-agent workflows.

Contributing

See CONTRIBUTING.md.

Compatibility & Disposable Profile Verification

  • Node.js: >=20.0.0 (tested on Node 20 and Node 22/24)
  • DeepSeek Harness: >=0.1.0-rc.6 <0.2.0, verified compatible across official DSH releases including 0.1.5-alpha.2, 0.1.5-rc.1, and 0.1.5-rc.2.

Isolated Verification Command

To verify plugin installation, configuration composition, web service startup, and cleanup in an isolated disposable DSH profile without touching your existing ~/.dsh:

pnpm run verify:profile

Evidence report: docs/verification-evidence.md.

Note on limitations: Catalog validation and disposable profile acceptance verify the plugin lifecycle contract and standard Web profile boot. System-level OS notifications require user-granted browser notification permissions.

Development

pnpm install
pnpm run typecheck
pnpm test
pnpm run build
pnpm run verify:profile

License

BSD-3-Clause