dsh-lark-bot 0.19.11 → 0.19.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/README_EN.md +3 -1
- package/dist/cli.js +801 -242
- package/dist/cli.js.map +1 -1
- package/dist/plugin.d.ts +120 -1
- package/dist/plugin.js +853 -232
- package/dist/plugin.js.map +1 -1
- package/dist/skill.js +2 -1
- package/dist/skill.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,6 +61,7 @@ dsh --profile dsh-lark # ② 启动
|
|
|
61
61
|
- **快速 / 平衡 / 深度模式**:`/mode` 一键选任务强度,下一轮生效且不打断当前任务。
|
|
62
62
|
- **关键任务先拍板**:`lark_request_plan_approval` 先出完整计划,再批准或附意见继续规划。
|
|
63
63
|
- **跨会话通知 + @人**:A 群跑完任务主动推送到 B 群 / 私聊并 @ 你。
|
|
64
|
+
- **通知转发到常用 IM(纯通知)**:把完成 / 失败 / 审批与突发 / 故障通知,经 `/channels` 配置后单向推送到 Telegram / 企业微信群机器人等;只推送、无入站交互,飞书仍是唯一完整交互平台,未配置时行为不变。
|
|
64
65
|
|
|
65
66
|
> 流式过程卡以飞书原生折叠面板实时展示阶段、耗时与工具状态。
|
|
66
67
|
|
|
@@ -80,7 +81,8 @@ dsh --profile dsh-lark # ② 启动
|
|
|
80
81
|
| `/session`、`/session bind` | 浏览 / 显式绑定 DSH session |
|
|
81
82
|
| `/role list\|show\|set\|clear` | 查看 / 绑定角色 |
|
|
82
83
|
| `/notify <scope\|chatId> <text>` | 跨会话发送通知(管理员) |
|
|
83
|
-
| `/notifications [show\|off\|on …]` | 配置完成 / 失败 /
|
|
84
|
+
| `/notifications [show\|off\|on …]` | 配置完成 / 失败 / 审批提醒(`sinks=` 转发到其他 IM 渠道) |
|
|
85
|
+
| `/channels [list\|show\|add\|remove\|enable\|disable …]` | 管理出站通知渠道(管理员) |
|
|
84
86
|
| `/stop` | 终止当前任务 |
|
|
85
87
|
| `/upgrade` | 自更新(管理员) |
|
|
86
88
|
| `/doctor` | 生成脱敏诊断包(管理员) |
|
package/README_EN.md
CHANGED
|
@@ -61,6 +61,7 @@ app → once bound, message the bot directly; groups / threads default to `@bot`
|
|
|
61
61
|
- **Quick / balanced / deep mode**: `/mode` picks the strength for the next turn without interrupting the current task.
|
|
62
62
|
- **Plan gate for key tasks**: `lark_request_plan_approval` sends the full plan first, then approves or revises.
|
|
63
63
|
- **Cross-session notify + @**: a task finishing in group A can push to group B / DM and @ you.
|
|
64
|
+
- **Forward notifications to other IMs (notification-only)**: after `/channels` is configured, completion / failure / approval and urgent/fault notifications can be pushed one-way to Telegram / WeCom group robots and more. Push-only, no inbound interaction; Feishu stays the sole full-interaction platform and the default behavior is unchanged when no channel is configured.
|
|
64
65
|
|
|
65
66
|
> Streaming process cards render in a native Feishu collapsible panel.
|
|
66
67
|
|
|
@@ -80,7 +81,8 @@ Command help, status, and cards are bilingual; `/help` is the full authoritative
|
|
|
80
81
|
| `/session`、`/session bind` | Browse / explicitly bind a DSH session |
|
|
81
82
|
| `/role list\|show\|set\|clear` | View / bind roles |
|
|
82
83
|
| `/notify <scope\|chatId> <text>` | Cross-session notification (admin) |
|
|
83
|
-
| `/notifications [show\|off\|on …]` | Configure completion / failure / approval reminders |
|
|
84
|
+
| `/notifications [show\|off\|on …]` | Configure completion / failure / approval / urgent reminders (`sinks=` forwards to other IM channels) |
|
|
85
|
+
| `/channels [list\|show\|add\|remove\|enable\|disable …]` | Manage outbound notification channels (admin) |
|
|
84
86
|
| `/stop` | Stop current tasks |
|
|
85
87
|
| `/upgrade` | Self-update (admin) |
|
|
86
88
|
| `/doctor` | Generate a redacted diagnostic bundle (admin) |
|