volclaw 0.3.1
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.autoopenclaw.md +22 -0
- package/README.claw-open.md +22 -0
- package/README.clawjs.md +22 -0
- package/README.fastclaw.md +22 -0
- package/README.md +22 -0
- package/README.md.bak +242 -0
- package/README.megaclaw.md +22 -0
- package/README.open-claw.md +22 -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.qclaw-cli.md +22 -0
- package/README.qclaw.md +22 -0
- package/README.smartclaw.md +22 -0
- package/README.volclaw.md +22 -0
- package/README.zh-CN.md +213 -0
- package/app-dist/main.js +300 -0
- package/app-dist/package.json +3 -0
- package/app-dist/server-process.js +95 -0
- package/assets/demo.gif +0 -0
- package/assets/welcome.png +0 -0
- package/demo.tape +28 -0
- package/dist/chunk-LIZ6XXW3.js +1149 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +582 -0
- package/dist/server-ZYSNFLSO.js +7 -0
- package/homebrew/README.md +37 -0
- package/homebrew/openclaw-cli.rb +22 -0
- package/homebrew/openclaw-doctor.rb +26 -0
- package/package.aiclaw.json +25 -0
- package/package.aliclaw.json +25 -0
- package/package.autoopenclaw.json +25 -0
- package/package.claw-open.json +25 -0
- package/package.clawjs.json +25 -0
- package/package.fastclaw.json +25 -0
- package/package.json +25 -0
- package/package.json.bak +51 -0
- package/package.megaclaw.json +25 -0
- package/package.open-claw.json +25 -0
- package/package.openclaw-cli.json +51 -0
- package/package.openclaw-daemon.json +51 -0
- package/package.openclaw-gateway.json +51 -0
- package/package.openclaw-health.json +51 -0
- package/package.openclaw-helper.json +51 -0
- package/package.openclaw-install.json +51 -0
- package/package.openclaw-manage.json +51 -0
- package/package.openclaw-monitor.json +51 -0
- package/package.openclaw-run.json +51 -0
- package/package.openclaw-service.json +51 -0
- package/package.openclaw-setup.json +51 -0
- package/package.openclaw-start.json +51 -0
- package/package.openclaw-tools.json +51 -0
- package/package.openclaw-upgrade.json +50 -0
- package/package.openclaw-utils.json +51 -0
- package/package.openclaw-watch.json +51 -0
- package/package.qclaw-cli.json +25 -0
- package/package.qclaw.json +25 -0
- package/package.smartclaw.json +25 -0
- package/package.volclaw.json +25 -0
- package/scripts/post-app-compile.cjs +3 -0
- package/scripts/post-app-compile.js +7 -0
- package/scripts/publish.sh +120 -0
- package/scripts/publish.sh.bak +63 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aiclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"aiclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aliclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"aliclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autoopenclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"autoopenclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claw-open",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"claw-open": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "clawjs",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"clawjs": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fastclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"fastclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "volclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"volclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
package/package.json.bak
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-doctor",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-doctor": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit",
|
|
14
|
+
"release": "bash scripts/publish.sh"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"openclaw",
|
|
18
|
+
"health-check",
|
|
19
|
+
"daemon",
|
|
20
|
+
"doctor"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "megaclaw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"megaclaw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "open-claw",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "CLI and health-watch daemon for OpenClaw AI assistant gateway",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openclaw",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"daemon",
|
|
10
|
+
"health-check"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"bin": {
|
|
14
|
+
"open-claw": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Sobranier/openclaw-doctor.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-cli",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-cli": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-daemon",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-daemon": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-gateway",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-gateway": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-health",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-health": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-helper",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-helper": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-install",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-install": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-manage",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Health check and auto-restart daemon for local OpenClaw services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openclaw-manage": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"lint": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"openclaw",
|
|
17
|
+
"health-check",
|
|
18
|
+
"daemon",
|
|
19
|
+
"doctor",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Sobranier/openclaw-doctor.git"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"README.zh-CN.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"commander": "^14.0.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.3.3",
|
|
42
|
+
"tsup": "^8.5.1",
|
|
43
|
+
"tsx": "^4.21.0",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"author": "pdd <ywq1991@gmail.com>",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Sobranier/openclaw-doctor/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
|
|
51
|
+
}
|