@marshulll/openclaw-wecom 0.1.7 → 0.1.8

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
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > The npm package **bundles dependencies** (no extra `npm install` on the server).
24
25
 
25
26
  ### Local path
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > For local path installs, run `npm install` in the project directory first.
31
33
 
32
34
  ## Configuration
33
35
  Write config to `~/.openclaw/openclaw.json`.
@@ -91,6 +93,7 @@ Install guide: `docs/INSTALL.md`
91
93
  - No reply: ensure plugin enabled and gateway restarted
92
94
  - Media too large: adjust `media.maxBytes` or send smaller files
93
95
  - invalid access_token: verify `corpId/corpSecret/agentId`
96
+ - Plugin failed to load due to missing deps: upgrade to latest and install via npm
94
97
 
95
98
  ## Docs
96
99
  - Dev doc: `docs/TECHNICAL.md`
package/README.md CHANGED
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > npm 安装包已**内置依赖**(无需再在服务器执行 `npm install`)。
24
25
 
25
26
  ### 本地路径加载
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > 本地路径加载需要先在项目目录执行 `npm install`。
31
33
 
32
34
  ## 配置
33
35
  主配置写入:`~/.openclaw/openclaw.json`
@@ -91,6 +93,7 @@ openclaw gateway restart
91
93
  - 没有回复:确认已启用插件并重启 gateway
92
94
  - 媒体过大:调整 `media.maxBytes` 或发送更小文件
93
95
  - invalid access_token:检查 `corpId/corpSecret/agentId`
96
+ - 依赖缺失导致插件未加载:请升级到最新版本并通过 npm 安装
94
97
 
95
98
  ## 资料入口
96
99
  - 开发文档:`docs/TECHNICAL.md`
package/README.zh.md CHANGED
@@ -21,6 +21,7 @@ openclaw plugins install @marshulll/openclaw-wecom
21
21
  openclaw plugins enable openclaw-wecom
22
22
  openclaw gateway restart
23
23
  ```
24
+ > npm 安装包已**内置依赖**(无需再在服务器执行 `npm install`)。
24
25
 
25
26
  ### 本地路径加载
26
27
  ```bash
@@ -28,6 +29,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
28
29
  openclaw plugins enable openclaw-wecom
29
30
  openclaw gateway restart
30
31
  ```
32
+ > 本地路径加载需要先在项目目录执行 `npm install`。
31
33
 
32
34
  ## 配置
33
35
  主配置写入:`~/.openclaw/openclaw.json`
@@ -91,6 +93,7 @@ openclaw gateway restart
91
93
  - 没有回复:确认已启用插件并重启 gateway
92
94
  - 媒体过大:调整 `media.maxBytes` 或发送更小文件
93
95
  - invalid access_token:检查 `corpId/corpSecret/agentId`
96
+ - 依赖缺失导致插件未加载:请升级到最新版本并通过 npm 安装
94
97
 
95
98
  ## 资料入口
96
99
  - 开发文档:`docs/TECHNICAL.md`
package/docs/INSTALL.md CHANGED
@@ -8,6 +8,7 @@ openclaw plugins install @marshulll/openclaw-wecom
8
8
  openclaw plugins enable openclaw-wecom
9
9
  openclaw gateway restart
10
10
  ```
11
+ > npm 包已内置依赖(无需在服务器额外执行 `npm install`)。
11
12
 
12
13
  ### 方式二:本地路径加载
13
14
  ```bash
@@ -15,6 +16,7 @@ openclaw plugins install --link /path/to/openclaw-wecom
15
16
  openclaw plugins enable openclaw-wecom
16
17
  openclaw gateway restart
17
18
  ```
19
+ > 本地路径加载前请先在项目目录执行 `npm install`。
18
20
 
19
21
  ## 配置
20
22
 
@@ -101,3 +103,4 @@ openclaw gateway restart
101
103
  ## 常见问题
102
104
  - 回调验证失败:检查 Token / AESKey / URL 是否一致
103
105
  - 没有回复:检查 OpenClaw 是否已启用插件并重启 gateway
106
+ - 插件加载失败(缺依赖):升级到最新版本并用 npm 安装
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marshulll/openclaw-wecom",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "OpenClaw WeCom channel plugin (intelligent bot + internal app)",
6
6
  "author": "OpenClaw",