@xwang152/claw-lark 0.1.5 → 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 +18 -0
- package/README_zh.md +18 -0
- package/index.ts +3 -3
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,24 @@ openclaw plugins list
|
|
|
65
65
|
|
|
66
66
|
You should see `lark` with status `loaded`.
|
|
67
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
|
+
|
|
68
86
|
## Lark App Setup
|
|
69
87
|
|
|
70
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: "
|
|
33
|
-
name: "
|
|
34
|
-
description: "
|
|
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);
|
package/openclaw.plugin.json
CHANGED