@wangzn04/openclaw-gwcheck 2026.3.3 → 2026.3.4
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 +73 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# @wangzn04/openclaw-gwcheck
|
|
2
|
+
|
|
3
|
+
Gateway config check plugin for OpenClaw.
|
|
4
|
+
|
|
5
|
+
Adds a top-level CLI command:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
openclaw gwcheck
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start (new OpenClaw install)
|
|
12
|
+
|
|
13
|
+
### 1. Install OpenClaw
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm i -g openclaw@latest
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### 2. Install this plugin
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
openclaw plugins install @wangzn04/openclaw-gwcheck
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### 3. Enable plugin
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
openclaw plugins enable gwcheck
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Note: plugin may already be enabled after install, but enabling explicitly is recommended.
|
|
32
|
+
|
|
33
|
+
### 4. Restart gateway
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
openclaw gateway restart
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 5. Run gateway config check
|
|
40
|
+
|
|
41
|
+
Human-readable output:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
openclaw gwcheck
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
JSON output:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
openclaw gwcheck --json
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Verify Plugin Status (optional)
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
openclaw plugins list
|
|
57
|
+
openclaw plugins info gwcheck
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Common Issues
|
|
61
|
+
|
|
62
|
+
### `unknown command gwcheck`
|
|
63
|
+
|
|
64
|
+
Usually means plugin is not loaded yet.
|
|
65
|
+
|
|
66
|
+
1. Re-run install/enable commands.
|
|
67
|
+
2. Restart gateway.
|
|
68
|
+
3. Run `openclaw plugins list` and confirm `gwcheck` is enabled.
|
|
69
|
+
|
|
70
|
+
### Plugin install fails
|
|
71
|
+
|
|
72
|
+
- Check npm registry connectivity.
|
|
73
|
+
- Ensure your npm auth/session is valid if your environment requires it.
|