lark-kiro-bridge 0.5.0 → 0.6.0

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.en.md CHANGED
@@ -59,6 +59,7 @@
59
59
  - 🔘 **Clickable buttons** — `/model` `/help` `/status` `/ws list` `/config` are all interactive cards, zero command memorization
60
60
  - 📝 **`/config` in-Feishu form** — Edit access control & preferences inside Feishu, takes effect instantly, anti-lockout validation
61
61
  - 🚄 **Rapid-fire message merging** — Multiple short messages within 200ms merge into a single Kiro call, no more abort-and-retry
62
+ - ⏰ **`/cron` scheduled tasks** — Accepts standard cron, shorthand (`@daily`), and Chinese keywords; falls back to Kiro translation with two-step confirmation. "Every day 9am summarize yesterday's commits" — done.
62
63
  - 🧠 **`/steering` to manage Kiro instruction files in Feishu** — list/view/edit/new/rm, global or project scope, edit via in-Feishu form, persists permanently
63
64
  - 🎤 **Voice input** — Send a voice message in Feishu → auto-transcribed (Feishu ASR) → fed to Kiro. Requires `ffmpeg` and ASR scope.
64
65
  - 🛡️ **Process group kill** — `detached: true` + `process.kill(-pid)` reaches kiro-cli's grandchildren
@@ -144,6 +145,7 @@ Platform mapping:
144
145
  | `/timeout [N\|off]` | `/to` | Idle watchdog threshold (minutes) |
145
146
  | `/ps` | — | List all bridge processes on this host |
146
147
  | `/steering` | `/memory` `/mem` | List Kiro steering files for current project (card + buttons) |
148
+ | `/cron` | `/schedule` | List scheduled tasks for current chat (card + buttons) |
147
149
  | `/doctor [desc]` | — | Let Kiro inspect logs and diagnose |
148
150
 
149
151
  ### Admin commands
@@ -156,6 +158,8 @@ Platform mapping:
156
158
  | `/ws use <name>` | Switch to a named workspace |
157
159
  | `/ws remove <name>` | Delete a named workspace |
158
160
  | `/steering edit/new/rm <name>` | Edit / create / delete a steering file |
161
+ | `/cron add <expr> <prompt>` | Add a scheduled task; expr accepts cron / `@daily` / Chinese keywords |
162
+ | `/cron rm/pause/resume/run <id>` | Delete/pause/resume/manually run a task |
159
163
  | `/exit <id\|#>` | Stop a bridge process (self / others) |
160
164
  | `/reconnect` | Force reconnect Feishu WebSocket |
161
165
 
@@ -302,7 +306,7 @@ Conventions: TypeScript strict / Biome lint / vitest tests / conventional commit
302
306
  - **v0.3** ✅ In-Feishu `/config` form + three-tier access control (DM bypass) + rapid-fire message merging
303
307
  - **v0.4** ✅ Linux systemd / Windows Task Scheduler daemon + `/ps` `/exit` in-Feishu process management
304
308
  - **v0.5** ✅ `/steering` to manage Kiro instruction files in Feishu (list/view/edit/new/rm, global/project scope)
305
- - **v0.6** `/cron` scheduled tasks natural-language or cron-expression schedules, e.g. "every day 6am summarize trending"
309
+ - **v0.6** `/cron` scheduled tasks (cron / shorthand / Chinese keywords; LLM fallback with two-step confirmation)
306
310
  - **v1.0** Centralized server deployment / multi-user isolation / web admin panel
307
311
 
308
312
  ## 📄 License
package/README.md CHANGED
@@ -59,6 +59,7 @@
59
59
  - 🔘 **按钮可点** — `/model` `/help` `/status` `/ws list` `/config` 全部可点击操作,0 命令记忆
60
60
  - 📝 **`/config` 飞书内表单** — 在飞书里改访问控制和偏好,即时生效,防自锁校验
61
61
  - 🚄 **rapid-fire 消息合并** — 200ms 内连发的多条短消息自动合并为一次 Kiro 调用,不再被前一条 abort
62
+ - ⏰ **`/cron` 定时任务** — 标准 cron / shorthand / 中文关键词都接受;不识别时让 Kiro 自己翻译,二次确认后创建。"每天 9 点总结昨天的 commits" 一句话搞定
62
63
  - 🧠 **`/steering` 飞书内管理 Kiro 指令文件** — list/view/edit/new/rm,全局或项目 scope,飞书表单直接改,永久生效
63
64
  - 🎤 **语音输入** — 飞书发语音消息 → 自动转写(飞书 ASR)→ 喂给 Kiro,需 `ffmpeg` 和 ASR 权限
64
65
  - 🛡️ **进程组 kill** — `detached: true` + `process.kill(-pid)` 杀掉 kiro-cli 全部子孙
@@ -144,6 +145,7 @@ lark-kiro-bridge restart # 重启
144
145
  | `/timeout [N\|off]` | `/to` | idle watchdog 阈值(分钟) |
145
146
  | `/ps` | — | 列出本机所有 bridge 进程 |
146
147
  | `/steering` | `/memory` `/mem` | 列出当前项目的 Kiro 指令文件(卡片+按钮) |
148
+ | `/cron` | `/schedule` | 列出当前 chat 的定时任务(卡片+按钮) |
147
149
  | `/doctor [描述]` | — | 让 Kiro 看日志自诊断 |
148
150
 
149
151
  ### 管理员命令
@@ -156,6 +158,8 @@ lark-kiro-bridge restart # 重启
156
158
  | `/ws use <name>` | 切到命名工作区 |
157
159
  | `/ws remove <name>` | 删除命名工作区 |
158
160
  | `/steering edit/new/rm <name>` | 编辑 / 新建 / 删除 steering 文件 |
161
+ | `/cron add <expr> <prompt>` | 添加定时任务;expr 接受 cron / `@daily` / `每天9点` 等 |
162
+ | `/cron rm/pause/resume/run <id>` | 删除/暂停/恢复/手动跑指定任务 |
159
163
  | `/exit <id\|#>` | 停止指定 bridge 进程(自己 / 他人) |
160
164
  | `/reconnect` | 强制重连飞书 WebSocket |
161
165
 
@@ -300,7 +304,7 @@ node bin/lark-kiro-bridge.mjs run # 本地跑(先 stop daemon)
300
304
  - **v0.3** ✅ `/config` 飞书内表单 + 三层访问控制(DM 豁免群白名单)+ rapid-fire 消息合并
301
305
  - **v0.4** ✅ Linux systemd / Windows Task Scheduler 守护 + `/ps` `/exit` 飞书内进程管理
302
306
  - **v0.5** ✅ `/steering` 飞书内管理 Kiro 指令文件(list/view/edit/new/rm,global/project scope)
303
- - **v0.6** `/cron` 定时任务 自然语言或 cron 表达式设定,"每天 6 点总结 trending"
307
+ - **v0.6** `/cron` 定时任务(cron / shorthand / 中文关键词;不识别让 Kiro 翻译并二次确认)
304
308
  - **v1.0** 服务器集中部署 / 多用户隔离 / Web 管理面板
305
309
 
306
310
  ## 📄 License