@xwang152/claw-lark 0.1.4 → 0.1.6

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
@@ -42,13 +42,11 @@ If you wish to install from source or for development/debugging purposes:
42
42
  git clone https://github.com/xwang152/claw-lark.git
43
43
  cd claw-lark
44
44
 
45
- # 2. Install dependencies and build
45
+ # Install dependencies
46
46
  npm install
47
- npm run build
48
47
 
49
- # 3. Link the plugin to OpenClaw
50
- # Use absolute path for linking
51
- openclaw plugins link $(pwd)
48
+ # Install plugin into OpenClaw
49
+ openclaw plugins install --link .
52
50
  ```
53
51
 
54
52
  ### 3. Restart Gateway
@@ -67,6 +65,24 @@ openclaw plugins list
67
65
 
68
66
  You should see `lark` with status `loaded`.
69
67
 
68
+ ## Upgrade Plugin
69
+
70
+ ### Automatic Installation
71
+
72
+ ```bash
73
+ openclaw plugins update @xwang152/claw-lark
74
+ openclaw gateway restart
75
+ ```
76
+
77
+ ### Manual Installation
78
+
79
+ ```bash
80
+ cd claw-lark
81
+ git pull
82
+ npm install
83
+ openclaw gateway restart
84
+ ```
85
+
70
86
  ## Lark App Setup
71
87
 
72
88
  1. Go to [Lark Developer Console](https://open.larksuite.com/app)
package/README_zh.md CHANGED
@@ -62,6 +62,24 @@ openclaw plugins list
62
62
 
63
63
  您应该能看到 `lark` 插件且状态为 `loaded`。
64
64
 
65
+ ## 升级插件
66
+
67
+ ### 自动安装用户
68
+
69
+ ```bash
70
+ openclaw plugins update @xwang152/claw-lark
71
+ openclaw gateway restart
72
+ ```
73
+
74
+ ### 源码安装用户
75
+
76
+ ```bash
77
+ cd claw-lark
78
+ git pull
79
+ npm install
80
+ openclaw gateway restart
81
+ ```
82
+
65
83
  ## 飞书应用设置
66
84
 
67
85
  1. 前往 [飞书开放平台](https://open.feishu.cn/app) (国内) 或 [Lark Developer Console](https://open.larksuite.com/app) (国际)
package/index.ts CHANGED
@@ -29,9 +29,9 @@ export type {
29
29
  } from "./src/types.js";
30
30
 
31
31
  const plugin = {
32
- id: "feishu",
33
- name: "Feishu",
34
- description: "Feishu / Lark channel plugin for OpenClaw",
32
+ id: "lark",
33
+ name: "Lark",
34
+ description: "Lark / Feishu channel plugin for OpenClaw",
35
35
  configSchema: emptyPluginConfigSchema(),
36
36
  register(api: OpenClawPluginApi) {
37
37
  setLarkRuntime(api);
@@ -1,6 +1,6 @@
1
1
  {
2
- "id": "feishu",
3
- "channels": ["feishu"],
2
+ "id": "lark",
3
+ "channels": ["lark"],
4
4
  "configSchema": {
5
5
  "type": "object",
6
6
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xwang152/claw-lark",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "Lark/Feishu channel plugin for OpenClaw with WebSocket and Webhook support",
6
6
  "license": "MIT",