@xwang152/claw-lark 0.1.14 → 0.1.16
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 +1 -19
- package/README_zh.md +1 -19
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ Verify installation:
|
|
|
63
63
|
openclaw plugins list
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
You should see `
|
|
66
|
+
You should see `lark` with status `loaded`.
|
|
67
67
|
|
|
68
68
|
## Upgrade Plugin
|
|
69
69
|
|
|
@@ -174,24 +174,6 @@ LARK_VERIFICATION_TOKEN=your-token # Optional, for verifying request aut
|
|
|
174
174
|
|
|
175
175
|
## Troubleshooting
|
|
176
176
|
|
|
177
|
-
### "Invalid config ... plugin not found: lark"
|
|
178
|
-
|
|
179
|
-
If you see this error after upgrading/renaming the plugin:
|
|
180
|
-
`Invalid config at .../openclaw.json: - plugins.entries.lark: plugin not found: lark`
|
|
181
|
-
|
|
182
|
-
This happens because the old plugin ID `lark` is still in your configuration but the plugin files are gone or renamed.
|
|
183
|
-
|
|
184
|
-
**Fix:**
|
|
185
|
-
1. Open `~/.openclaw/openclaw.json` (or your config file)
|
|
186
|
-
2. Remove the line `"lark": "lark"` or `"lark": "..."` from `plugins.entries`
|
|
187
|
-
3. Save the file
|
|
188
|
-
4. Re-install the plugin using the new name:
|
|
189
|
-
```bash
|
|
190
|
-
openclaw plugins install @xwang152/claw-lark
|
|
191
|
-
# or for manual install
|
|
192
|
-
openclaw plugins install --link .
|
|
193
|
-
```
|
|
194
|
-
|
|
195
177
|
### "plugin already exists: ... (delete it first)"
|
|
196
178
|
|
|
197
179
|
If installation fails and leaves a partial folder, you may see this error when trying to reinstall.
|
package/README_zh.md
CHANGED
|
@@ -61,7 +61,7 @@ openclaw gateway restart
|
|
|
61
61
|
openclaw plugins list
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
您应该能看到 `
|
|
64
|
+
您应该能看到 `lark` 插件且状态为 `loaded`。
|
|
65
65
|
|
|
66
66
|
## 升级插件
|
|
67
67
|
|
|
@@ -180,24 +180,6 @@ LARK_VERIFICATION_TOKEN=your-token # 可选,用于验证请求真实
|
|
|
180
180
|
|
|
181
181
|
## 常见问题 / 迁移指南
|
|
182
182
|
|
|
183
|
-
### "Invalid config ... plugin not found: lark"
|
|
184
|
-
|
|
185
|
-
如果您在升级或重命名插件后看到此错误:
|
|
186
|
-
`Invalid config at .../openclaw.json: - plugins.entries.lark: plugin not found: lark`
|
|
187
|
-
|
|
188
|
-
这是因为旧的插件 ID `lark` 仍然存在于您的配置中,但插件文件已被移除或重命名。
|
|
189
|
-
|
|
190
|
-
**解决方法:**
|
|
191
|
-
1. 打开 `~/.openclaw/openclaw.json` (或您的配置文件)
|
|
192
|
-
2. 找到 `plugins.entries`,删除 `"lark": "lark"` 或类似行
|
|
193
|
-
3. 保存文件
|
|
194
|
-
4. 使用新名称重新安装插件:
|
|
195
|
-
```bash
|
|
196
|
-
openclaw plugins install @xwang152/claw-lark
|
|
197
|
-
# 或者手动安装
|
|
198
|
-
openclaw plugins install --link .
|
|
199
|
-
```
|
|
200
|
-
|
|
201
183
|
### "plugin already exists: ... (delete it first)"
|
|
202
184
|
|
|
203
185
|
如果安装失败导致文件夹残留,您在重试时可能会看到此错误。
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xwang152/claw-lark",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Lark/Feishu channel plugin for OpenClaw with WebSocket and Webhook support",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@larksuiteoapi/node-sdk": "^1.37.0"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"bundledDependencies": [
|
|
49
49
|
"@larksuiteoapi/node-sdk"
|
|
50
50
|
],
|
|
51
51
|
"peerDependencies": {
|