openclaw-gateway 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "openclaw-gateway",
3
- "version": "0.4.0",
4
- "description": "AI assistant gateway watchdogalias for openclaw-cli. Visit https://openclaw-cli.app",
3
+ "version": "0.6.0",
4
+ "description": "OpenClaw gateway controllerstart, stop and restart your AI assistant gateway. Alias of openclaw-cli.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "openclaw-gateway": "./dist/index.js"
@@ -15,11 +15,10 @@
15
15
  "keywords": [
16
16
  "openclaw",
17
17
  "openclaw-cli",
18
- "ai",
19
- "daemon",
20
18
  "gateway",
21
- "watchdog",
22
- "health-check"
19
+ "ai-gateway",
20
+ "gateway-manager",
21
+ "launchd"
23
22
  ],
24
23
  "license": "MIT",
25
24
  "repository": {
package/README.md.bak DELETED
@@ -1,75 +0,0 @@
1
- <p align="center">
2
- <img src="https://raw.githubusercontent.com/Sobranier/openclaw-cli/main/assets/welcome.png" alt="OpenClaw CLI" width="400" />
3
- </p>
4
-
5
- <h1 align="center">OpenClaw CLI</h1>
6
-
7
- <p align="center">
8
- Keep your OpenClaw service alive. Automatically.
9
- </p>
10
-
11
- <p align="center">
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
- &nbsp;
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
- &nbsp;
20
- <a href="./LICENSE"><img src="https://img.shields.io/badge/license-MIT-brightgreen" alt="license" /></a>
21
- &nbsp;
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
47
-
48
- ```bash
49
- openclaw-cli watch # Start monitoring (foreground)
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
55
- ```
56
-
57
- ## Gateway Management
58
-
59
- ```bash
60
- openclaw-cli gateway start
61
- openclaw-cli gateway stop
62
- openclaw-cli gateway restart
63
- ```
64
-
65
- ## Compatibility Aliases
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
73
-
74
- - Advanced usage and development workflow: [CONTRIBUTING.md](./CONTRIBUTING.md)
75
- - Chinese README: [README.zh-CN.md](./README.zh-CN.md)