ljnljn2005/dsh-clawbot-notify ↗★ 1
dsh-clawbot-notify
DSH plugin: notify personal WeChat via ilink protocol (Weixin ClawBot) when a task completes, errors, or needs user input. Built-in QR login flow and WebUI settings panel.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ljnljn2005/dsh-clawbot-notify说明文档
阅读完整 README ↗使用步骤
- 首次登录:在任务中让 agent 调用
clawbot_login→ 用微信扫二维码 → 手机上确认 → 调用clawbot_login_confirm。凭据自动保存。 - 日常使用:无需任何操作,任务完成/报错/需选择时自动收到微信通知。
- 查看状态:可让 agent 调用
clawbot_account查看当前登录账号与目标。
配置项
| 字段 | 类型 | 默认 | 说明 |
|---|---|---|---|
title | string | DSH 提醒 | 通知标题前缀 |
notifyComplete | boolean | true | 任务完成时通知 |
notifyError | boolean | true | 任务出错时通知 |
notifyQuestion | boolean | true | 需要用户选择时通知 |
baseUrl | string | https://ilinkai.weixin.qq.com | ilink 服务地址 |
token | string | "" | 微信 bot token(可选,留空读账号文件) |
toUserId | string | "" | 目标用户 ID(可选,留空发给自己/账号绑定用户) |
accountId | string | "" | 多账号时指定;留空用最近登录的 |
accountsDir | string | ~/.codex-wechat/accounts | 账号文件目录 |
timeoutMs | number | 15000 | 发送超时 |
maxContentLength | number | 500 | 消息正文最大字符数 |
dryRun | boolean | false | 试运行:只记日志不真发 |