hello-claw 0.3.3
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/CONTRIBUTING.md +105 -0
- package/LICENSE +21 -0
- package/README.aiclaw.md +20 -0
- package/README.aliclaw.md +20 -0
- package/README.amazonclaw.md +20 -0
- package/README.amzclaw.md +20 -0
- package/README.anthropicclaw.md +20 -0
- package/README.appleclaw.md +20 -0
- package/README.autoopenclaw.md +20 -0
- package/README.awsclaw.md +20 -0
- package/README.bdclaw.md +20 -0
- package/README.blclaw.md +20 -0
- package/README.bytclaw.md +20 -0
- package/README.claw-open.md +20 -0
- package/README.clawjs.md +22 -0
- package/README.coclaw.md +20 -0
- package/README.copaw.md +12 -0
- package/README.ddclaw.md +20 -0
- package/README.duclaw.md +20 -0
- package/README.dyclaw.md +20 -0
- package/README.easyclaw.md +20 -0
- package/README.fastclaw.md +20 -0
- package/README.fbclaw.md +20 -0
- package/README.googleclaw.md +20 -0
- package/README.hello-claw.md +20 -0
- package/README.hwclaw.md +20 -0
- package/README.jdclaw.md +20 -0
- package/README.kimiclaw.md +20 -0
- package/README.ksclaw.md +12 -0
- package/README.maxclaw.md +20 -0
- package/README.md +20 -0
- package/README.megaclaw.md +20 -0
- package/README.metaclaw.md +20 -0
- package/README.miclaw.md +20 -0
- package/README.msclaw.md +20 -0
- package/README.mtclaw.md +20 -0
- package/README.nflxclaw.md +20 -0
- package/README.nvdaclaw.md +20 -0
- package/README.open-claw.md +22 -0
- package/README.openaiclaw.md +20 -0
- package/README.openclaw-cli.md +239 -0
- package/README.openclaw-daemon.md +239 -0
- package/README.openclaw-gateway.md +239 -0
- package/README.openclaw-health.md +239 -0
- package/README.openclaw-helper.md +239 -0
- package/README.openclaw-install.md +239 -0
- package/README.openclaw-manage.md +239 -0
- package/README.openclaw-monitor.md +239 -0
- package/README.openclaw-run.md +239 -0
- package/README.openclaw-service.md +239 -0
- package/README.openclaw-setup.md +239 -0
- package/README.openclaw-start.md +239 -0
- package/README.openclaw-tools.md +239 -0
- package/README.openclaw-upgrade.md +13 -0
- package/README.openclaw-utils.md +239 -0
- package/README.openclaw-watch.md +239 -0
- package/README.pddclaw.md +20 -0
- package/README.qclaw-cli.md +20 -0
- package/README.qclaw.md +22 -0
- package/README.smartclaw.md +20 -0
- package/README.ttclaw.md +20 -0
- package/README.txclaw.md +20 -0
- package/README.uberclaw.md +20 -0
- package/README.volclaw.md +20 -0
- package/README.wxclaw.md +20 -0
- package/README.xclaw.md +12 -0
- package/README.zh-CN.md +213 -0
- package/README.zhclaw.md +20 -0
- package/dist/chunk-U6JVOA5H.js +1149 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +582 -0
- package/dist/server-GHEIPQJV.js +7 -0
- package/package.json +30 -0
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Contributing to OpenClaw Doctor
|
|
2
|
+
|
|
3
|
+
Thanks for taking the time to contribute!
|
|
4
|
+
|
|
5
|
+
## Development Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
git clone https://github.com/Sobranier/openclaw-cli.git
|
|
9
|
+
cd openclaw-doctor
|
|
10
|
+
npm install
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Running locally
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm run dev -- status # Quick health check
|
|
17
|
+
npm run dev -- watch # Foreground monitoring
|
|
18
|
+
npm run dev -- watch -d # Background daemon
|
|
19
|
+
npm run dev -- unwatch # Stop daemon
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Building
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm run build
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Output goes to `dist/`.
|
|
29
|
+
|
|
30
|
+
## Project Structure
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
src/
|
|
34
|
+
commands/ # CLI command handlers (watch, status, gateway, logs, ...)
|
|
35
|
+
core/ # Health check, restart logic, daemon management
|
|
36
|
+
dashboard/ # Web UI (Express + static assets)
|
|
37
|
+
notify/ # Notification channels (webhook, macOS system)
|
|
38
|
+
utils/ # OpenClaw config auto-detection, launchd helpers
|
|
39
|
+
scripts/
|
|
40
|
+
publish.sh # Multi-package publish script
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Making Changes
|
|
44
|
+
|
|
45
|
+
1. Fork the repo and create a branch from `main`:
|
|
46
|
+
```bash
|
|
47
|
+
git checkout -b fix/your-change
|
|
48
|
+
```
|
|
49
|
+
2. Make your changes and test locally with `npm run dev`.
|
|
50
|
+
3. Build to make sure nothing is broken:
|
|
51
|
+
```bash
|
|
52
|
+
npm run build
|
|
53
|
+
```
|
|
54
|
+
4. Open a Pull Request against `main`.
|
|
55
|
+
|
|
56
|
+
## Release Workflow
|
|
57
|
+
|
|
58
|
+
This repo publishes multiple npm packages from the same codebase. **Do not publish manually.**
|
|
59
|
+
|
|
60
|
+
### Packages
|
|
61
|
+
|
|
62
|
+
| Package | Config |
|
|
63
|
+
|---------|--------|
|
|
64
|
+
| `openclaw-doctor` | `package.json` |
|
|
65
|
+
| `openclaw-cli` | `package.openclaw-cli.json` |
|
|
66
|
+
| `openclaw-manage` | `package.openclaw-manage.json` |
|
|
67
|
+
| _(and others)_ | `package.openclaw-*.json` |
|
|
68
|
+
|
|
69
|
+
All packages share the same version number and `dist/` output.
|
|
70
|
+
|
|
71
|
+
### Cutting a release
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# 1. Pull latest
|
|
75
|
+
git pull origin main
|
|
76
|
+
|
|
77
|
+
# 2. Bump version (patch / minor / major)
|
|
78
|
+
npm version patch # e.g. 0.3.0 → 0.3.1
|
|
79
|
+
|
|
80
|
+
# 3. Build + publish all packages
|
|
81
|
+
npm run release
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
`npm run release` calls `scripts/publish.sh`, which:
|
|
85
|
+
1. Builds once (`npm run build`)
|
|
86
|
+
2. Publishes `openclaw-doctor` with `package.json`
|
|
87
|
+
3. For each `package.openclaw-*.json`: temporarily swaps it in as `package.json`, publishes, then restores
|
|
88
|
+
|
|
89
|
+
### Version sync
|
|
90
|
+
|
|
91
|
+
All `package.openclaw-*.json` files must stay in sync with `package.json`. The publish script reads whichever `package.json` is active — keep `version` consistent across all of them.
|
|
92
|
+
|
|
93
|
+
To update a sub-package metadata (description, keywords, bin), edit its `package.openclaw-*.json` directly.
|
|
94
|
+
|
|
95
|
+
## Reporting Issues
|
|
96
|
+
|
|
97
|
+
Open an issue on GitHub with:
|
|
98
|
+
- Your OpenClaw version (`openclaw --version`)
|
|
99
|
+
- Your OS and Node.js version
|
|
100
|
+
- The output of `openclaw-doctor doctor`
|
|
101
|
+
- What you expected vs. what happened
|
|
102
|
+
|
|
103
|
+
## License
|
|
104
|
+
|
|
105
|
+
By contributing, you agree that your contributions will be licensed under the [MIT License](./LICENSE).
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OpenClaw
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.aiclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# aiclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g aiclaw
|
|
11
|
+
aiclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# aliclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g aliclaw
|
|
11
|
+
aliclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# amazonclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g amazonclaw
|
|
11
|
+
amazonclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# amzclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g amzclaw
|
|
11
|
+
amzclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# anthropicclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g anthropicclaw
|
|
11
|
+
anthropicclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# appleclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g appleclaw
|
|
11
|
+
appleclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# autoopenclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g autoopenclaw
|
|
11
|
+
autoopenclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# awsclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g awsclaw
|
|
11
|
+
awsclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.bdclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# bdclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g bdclaw
|
|
11
|
+
bdclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.blclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# blclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g blclaw
|
|
11
|
+
blclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# bytclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g bytclaw
|
|
11
|
+
bytclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# claw-open
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g claw-open
|
|
11
|
+
claw-open watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.clawjs.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# clawjs
|
|
2
|
+
|
|
3
|
+
> This package is an alias for [openclaw-cli](https://www.npmjs.com/package/openclaw-cli).
|
|
4
|
+
|
|
5
|
+
CLI and health-watch daemon for OpenClaw AI assistant gateway.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g clawjs
|
|
11
|
+
clawjs watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
clawjs watch -d # Start background monitoring
|
|
18
|
+
clawjs status # Health check
|
|
19
|
+
clawjs unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
package/README.coclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# coclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g coclaw
|
|
11
|
+
coclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.copaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# copaw
|
|
2
|
+
|
|
3
|
+
> Alias for [openclaw-cli](https://www.npmjs.com/package/openclaw-cli).
|
|
4
|
+
|
|
5
|
+
Watchdog daemon for OpenClaw AI assistant gateway.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g copaw
|
|
9
|
+
copaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.ddclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ddclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g ddclaw
|
|
11
|
+
ddclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.duclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# duclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g duclaw
|
|
11
|
+
duclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.dyclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# dyclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g dyclaw
|
|
11
|
+
dyclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# easyclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g easyclaw
|
|
11
|
+
easyclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# fastclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g fastclaw
|
|
11
|
+
fastclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.fbclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# fbclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g fbclaw
|
|
11
|
+
fbclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# googleclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g googleclaw
|
|
11
|
+
googleclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# hello-claw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g hello-claw
|
|
11
|
+
hello-claw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.hwclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# hwclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g hwclaw
|
|
11
|
+
hwclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|
package/README.jdclaw.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# jdclaw
|
|
2
|
+
|
|
3
|
+
> This is an alias package for **[openclaw-cli](https://www.npmjs.com/package/openclaw-cli)** — the AI assistant gateway watchdog.
|
|
4
|
+
|
|
5
|
+
## 🌐 Official Site: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g jdclaw
|
|
11
|
+
jdclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This package is identical to `openclaw-cli`. All features, docs, and updates are maintained there.
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- 📦 Main package: [openclaw-cli on npm](https://www.npmjs.com/package/openclaw-cli)
|
|
19
|
+
- 🌐 Website: [https://openclaw-cli.app](https://openclaw-cli.app)
|
|
20
|
+
- 📖 Docs & Source: [github.com/Sobranier/openclaw-cli](https://github.com/Sobranier/openclaw-cli)
|