@colinlu50/openclaw-lark-stream 2026.323.1 → 260323.2.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.md CHANGED
@@ -11,6 +11,7 @@
11
11
  官方插件在 LLM 生成完一个 block 后才一次性推送结果。本 Fork 实现了:
12
12
 
13
13
  - **实时流式输出** — 每个 block 的内容在生成过程中逐步追加到流式卡片
14
+ - **群聊流式输出** — 群聊中也可使用流式输出
14
15
  - **工具调用状态** — agent 调用工具时,卡片顶部实时显示当前工具,完成后自动折叠为摘要面板
15
16
 
16
17
  ## 📢 News
@@ -19,12 +20,15 @@
19
20
 
20
21
  ## 📦 安装
21
22
 
22
- 需要 [OpenClaw](https://openclaw.ai)(>= 2026.2.26)和 Node.js(>= v22)。
23
+ 需要 [OpenClaw](https://openclaw.ai) Node.js(>= v22)。
23
24
 
24
- > 查看 OpenClaw 版本:`openclaw -v`,如版本过低请先升级:
25
+ > [!WARNING]
26
+ > OpenClaw 新发布的 **3.22** 版本存在不兼容变更,飞书插件运行会出现异常,正在兼容中。预计 **3.24 日**兼容完成。
27
+ > 请暂时使用 3.13 版本:
25
28
  > ```bash
26
- > npm install -g openclaw
29
+ > npm install -g openclaw@2026.3.13
27
30
  > ```
31
+ > 查看当前版本:`openclaw -v`
28
32
 
29
33
  ```bash
30
34
  npx -y @colinlu50/openclaw-lark-stream install
@@ -58,4 +62,4 @@ openclaw config set channels.feishu.footer.status false # 隐藏完成状态
58
62
 
59
63
  ## 📄 许可证
60
64
 
61
- MIT — 与上游项目相同。
65
+ MIT
@@ -74,8 +74,13 @@ function checkOpenClawVersion() {
74
74
  try {
75
75
  const ver = execSync("openclaw -v", { encoding: "utf8" }).trim();
76
76
  console.log(`OpenClaw version: ${ver}`);
77
+ if (!ver.includes("2026.3.13")) {
78
+ console.warn(`\n⚠️ This plugin is tested with OpenClaw 2026.3.13.`);
79
+ console.warn(` Current version: ${ver}`);
80
+ console.warn(` To install the compatible version: npm install -g openclaw@2026.3.13\n`);
81
+ }
77
82
  } catch {
78
- console.error("❌ OpenClaw not found. Install it first: npm install -g openclaw");
83
+ console.error("❌ OpenClaw not found. Install it first: npm install -g openclaw@2026.3.13");
79
84
  process.exit(1);
80
85
  }
81
86
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colinlu50/openclaw-lark-stream",
3
- "version": "2026.323.1",
3
+ "version": "260323.2.0",
4
4
  "description": "OpenClaw Lark/Feishu channel plugin",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",