ttclaw 0.3.2
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 +22 -0
- package/README.aliclaw.md +22 -0
- package/README.amazonclaw.md +12 -0
- package/README.amzclaw.md +12 -0
- package/README.anthropicclaw.md +12 -0
- package/README.appleclaw.md +12 -0
- package/README.autoopenclaw.md +22 -0
- package/README.awsclaw.md +12 -0
- package/README.bdclaw.md +12 -0
- package/README.blclaw.md +12 -0
- package/README.bytclaw.md +12 -0
- package/README.claw-open.md +22 -0
- package/README.clawjs.md +22 -0
- package/README.coclaw.md +12 -0
- package/README.copaw.md +12 -0
- package/README.ddclaw.md +12 -0
- package/README.duclaw.md +12 -0
- package/README.dyclaw.md +12 -0
- package/README.easyclaw.md +12 -0
- package/README.fastclaw.md +22 -0
- package/README.fbclaw.md +12 -0
- package/README.googleclaw.md +12 -0
- package/README.hwclaw.md +12 -0
- package/README.jdclaw.md +12 -0
- package/README.kimiclaw.md +12 -0
- package/README.ksclaw.md +12 -0
- package/README.maxclaw.md +12 -0
- package/README.md +12 -0
- package/README.megaclaw.md +22 -0
- package/README.metaclaw.md +12 -0
- package/README.miclaw.md +12 -0
- package/README.msclaw.md +12 -0
- package/README.mtclaw.md +12 -0
- package/README.nflxclaw.md +12 -0
- package/README.nvdaclaw.md +12 -0
- package/README.open-claw.md +22 -0
- package/README.openaiclaw.md +12 -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 +12 -0
- package/README.qclaw-cli.md +22 -0
- package/README.qclaw.md +22 -0
- package/README.smartclaw.md +22 -0
- package/README.ttclaw.md +12 -0
- package/README.txclaw.md +12 -0
- package/README.uberclaw.md +12 -0
- package/README.volclaw.md +22 -0
- package/README.wxclaw.md +12 -0
- package/README.xclaw.md +12 -0
- package/README.zh-CN.md +213 -0
- package/README.zhclaw.md +12 -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 +25 -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,22 @@
|
|
|
1
|
+
# aiclaw
|
|
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 aiclaw
|
|
11
|
+
aiclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
aiclaw watch -d # Start background monitoring
|
|
18
|
+
aiclaw status # Health check
|
|
19
|
+
aiclaw unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# aliclaw
|
|
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 aliclaw
|
|
11
|
+
aliclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
aliclaw watch -d # Start background monitoring
|
|
18
|
+
aliclaw status # Health check
|
|
19
|
+
aliclaw unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# amazonclaw
|
|
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 amazonclaw
|
|
9
|
+
amazonclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# amzclaw
|
|
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 amzclaw
|
|
9
|
+
amzclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# anthropicclaw
|
|
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 anthropicclaw
|
|
9
|
+
anthropicclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# appleclaw
|
|
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 appleclaw
|
|
9
|
+
appleclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# autoopenclaw
|
|
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 autoopenclaw
|
|
11
|
+
autoopenclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
autoopenclaw watch -d # Start background monitoring
|
|
18
|
+
autoopenclaw status # Health check
|
|
19
|
+
autoopenclaw unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# awsclaw
|
|
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 awsclaw
|
|
9
|
+
awsclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.bdclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# bdclaw
|
|
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 bdclaw
|
|
9
|
+
bdclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.blclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# blclaw
|
|
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 blclaw
|
|
9
|
+
blclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# bytclaw
|
|
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 bytclaw
|
|
9
|
+
bytclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# claw-open
|
|
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 claw-open
|
|
11
|
+
claw-open watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
claw-open watch -d # Start background monitoring
|
|
18
|
+
claw-open status # Health check
|
|
19
|
+
claw-open unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [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,12 @@
|
|
|
1
|
+
# coclaw
|
|
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 coclaw
|
|
9
|
+
coclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
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,12 @@
|
|
|
1
|
+
# ddclaw
|
|
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 ddclaw
|
|
9
|
+
ddclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.duclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# duclaw
|
|
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 duclaw
|
|
9
|
+
duclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.dyclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# dyclaw
|
|
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 dyclaw
|
|
9
|
+
dyclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# easyclaw
|
|
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 easyclaw
|
|
9
|
+
easyclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# fastclaw
|
|
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 fastclaw
|
|
11
|
+
fastclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
fastclaw watch -d # Start background monitoring
|
|
18
|
+
fastclaw status # Health check
|
|
19
|
+
fastclaw unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
package/README.fbclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# fbclaw
|
|
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 fbclaw
|
|
9
|
+
fbclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# googleclaw
|
|
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 googleclaw
|
|
9
|
+
googleclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.hwclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# hwclaw
|
|
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 hwclaw
|
|
9
|
+
hwclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.jdclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# jdclaw
|
|
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 jdclaw
|
|
9
|
+
jdclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# kimiclaw
|
|
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 kimiclaw
|
|
9
|
+
kimiclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.ksclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# ksclaw
|
|
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 ksclaw
|
|
9
|
+
ksclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# maxclaw
|
|
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 maxclaw
|
|
9
|
+
maxclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# ttclaw
|
|
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 ttclaw
|
|
9
|
+
ttclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# megaclaw
|
|
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 megaclaw
|
|
11
|
+
megaclaw watch -d
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
megaclaw watch -d # Start background monitoring
|
|
18
|
+
megaclaw status # Health check
|
|
19
|
+
megaclaw unwatch # Stop monitoring
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For full documentation, see [openclaw-cli](https://github.com/Sobranier/openclaw-cli).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# metaclaw
|
|
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 metaclaw
|
|
9
|
+
metaclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.miclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# miclaw
|
|
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 miclaw
|
|
9
|
+
miclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.msclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# msclaw
|
|
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 msclaw
|
|
9
|
+
msclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
package/README.mtclaw.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# mtclaw
|
|
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 mtclaw
|
|
9
|
+
mtclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# nflxclaw
|
|
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 nflxclaw
|
|
9
|
+
nflxclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# nvdaclaw
|
|
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 nvdaclaw
|
|
9
|
+
nvdaclaw watch -d
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
See [openclaw-cli](https://github.com/Sobranier/openclaw-cli) for full docs.
|