openclaw-manage 0.4.0 → 0.6.0
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.bak +13 -63
- package/dist/index.js +1749 -147
- package/dist/index.pkg.cjs +7382 -0
- package/package.json +5 -7
- package/dist/chunk-UXL57WT4.js +0 -1149
- package/dist/server-GZ3MD6AH.js +0 -7
package/README.md.bak
CHANGED
|
@@ -1,75 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="https://raw.githubusercontent.com/Sobranier/openclaw-cli/main/assets/welcome.png" alt="OpenClaw CLI" width="400" />
|
|
3
|
-
</p>
|
|
1
|
+
# openclaw-gateway
|
|
4
2
|
|
|
5
|
-
|
|
3
|
+
> Alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)**.
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
Keep your OpenClaw service alive. Automatically.
|
|
9
|
-
</p>
|
|
5
|
+
This package runs the same CLI engine as `openclaw-cli`.
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
<a href="./README.zh-CN.md">中文文档</a> | <a href="https://openclaw-cli.app">🌐 官网</a>
|
|
13
|
-
</p>
|
|
14
|
-
|
|
15
|
-
<p align="center">
|
|
16
|
-
<a href="https://www.npmjs.com/package/openclaw-cli"><img src="https://img.shields.io/npm/v/openclaw-cli?label=openclaw-cli&color=blue" alt="openclaw-cli" /></a>
|
|
17
|
-
|
|
18
|
-
<a href="https://www.npmjs.com/package/openclaw-cli"><img src="https://img.shields.io/npm/dm/openclaw-cli?color=blue" alt="downloads" /></a>
|
|
19
|
-
|
|
20
|
-
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-MIT-brightgreen" alt="license" /></a>
|
|
21
|
-
|
|
22
|
-
<img src="https://img.shields.io/node/v/openclaw-cli" alt="node" />
|
|
23
|
-
</p>
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## Why Doctor?
|
|
28
|
-
|
|
29
|
-
OpenClaw runs as a local daemon. When it crashes — network hiccup, system wake, bad update — your AI assistant goes dark. You notice only when you try to use it.
|
|
30
|
-
|
|
31
|
-
Doctor watches the gateway for you. It detects failures, restarts the service automatically, and notifies you. No config, no babysitting.
|
|
32
|
-
|
|
33
|
-
## Get Started
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
npm install -g openclaw-cli
|
|
37
|
-
openclaw-cli watch -d
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
That's it. OpenClaw CLI is now running in the background.
|
|
41
|
-
|
|
42
|
-
<p align="center">
|
|
43
|
-
<img src="https://raw.githubusercontent.com/Sobranier/openclaw-cli/main/assets/demo.gif" alt="OpenClaw CLI demo" width="700" />
|
|
44
|
-
</p>
|
|
45
|
-
|
|
46
|
-
## Core Commands
|
|
7
|
+
## Install
|
|
47
8
|
|
|
48
9
|
```bash
|
|
49
|
-
|
|
50
|
-
openclaw-cli watch -d # Start monitoring (background)
|
|
51
|
-
openclaw-cli unwatch # Stop monitoring
|
|
52
|
-
|
|
53
|
-
openclaw-cli status # Quick health check
|
|
54
|
-
openclaw-cli doctor # Full diagnostics
|
|
10
|
+
npm install -g openclaw-gateway
|
|
55
11
|
```
|
|
56
12
|
|
|
57
|
-
##
|
|
13
|
+
## Usage
|
|
58
14
|
|
|
59
15
|
```bash
|
|
60
|
-
openclaw-
|
|
61
|
-
openclaw-
|
|
62
|
-
openclaw-
|
|
16
|
+
openclaw-gateway watch -d
|
|
17
|
+
openclaw-gateway status
|
|
18
|
+
openclaw-gateway gateway restart
|
|
63
19
|
```
|
|
64
20
|
|
|
65
|
-
##
|
|
66
|
-
|
|
67
|
-
`openclaw-doctor`, `hello-claw`, `aiclaw`, `pddclaw` and other alias package names all point to the same CLI engine.
|
|
68
|
-
|
|
69
|
-
- Main package: https://www.npmjs.com/package/openclaw-cli
|
|
70
|
-
- Official site: https://openclaw-cli.app
|
|
71
|
-
|
|
72
|
-
## More Docs
|
|
21
|
+
## Links
|
|
73
22
|
|
|
74
|
-
-
|
|
75
|
-
-
|
|
23
|
+
- 🌐 Official site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
24
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
25
|
+
- 📖 Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|