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.
Files changed (80) hide show
  1. package/CONTRIBUTING.md +105 -0
  2. package/LICENSE +21 -0
  3. package/README.aiclaw.md +22 -0
  4. package/README.aliclaw.md +22 -0
  5. package/README.autoopenclaw.md +22 -0
  6. package/README.claw-open.md +22 -0
  7. package/README.clawjs.md +22 -0
  8. package/README.fastclaw.md +22 -0
  9. package/README.md +22 -0
  10. package/README.md.bak +242 -0
  11. package/README.megaclaw.md +22 -0
  12. package/README.open-claw.md +22 -0
  13. package/README.openclaw-cli.md +239 -0
  14. package/README.openclaw-daemon.md +239 -0
  15. package/README.openclaw-gateway.md +239 -0
  16. package/README.openclaw-health.md +239 -0
  17. package/README.openclaw-helper.md +239 -0
  18. package/README.openclaw-install.md +239 -0
  19. package/README.openclaw-manage.md +239 -0
  20. package/README.openclaw-monitor.md +239 -0
  21. package/README.openclaw-run.md +239 -0
  22. package/README.openclaw-service.md +239 -0
  23. package/README.openclaw-setup.md +239 -0
  24. package/README.openclaw-start.md +239 -0
  25. package/README.openclaw-tools.md +239 -0
  26. package/README.openclaw-upgrade.md +13 -0
  27. package/README.openclaw-utils.md +239 -0
  28. package/README.openclaw-watch.md +239 -0
  29. package/README.qclaw-cli.md +22 -0
  30. package/README.qclaw.md +22 -0
  31. package/README.smartclaw.md +22 -0
  32. package/README.volclaw.md +22 -0
  33. package/README.zh-CN.md +213 -0
  34. package/app-dist/main.js +300 -0
  35. package/app-dist/package.json +3 -0
  36. package/app-dist/server-process.js +95 -0
  37. package/assets/demo.gif +0 -0
  38. package/assets/welcome.png +0 -0
  39. package/demo.tape +28 -0
  40. package/dist/chunk-LIZ6XXW3.js +1149 -0
  41. package/dist/index.d.ts +2 -0
  42. package/dist/index.js +582 -0
  43. package/dist/server-ZYSNFLSO.js +7 -0
  44. package/homebrew/README.md +37 -0
  45. package/homebrew/openclaw-cli.rb +22 -0
  46. package/homebrew/openclaw-doctor.rb +26 -0
  47. package/package.aiclaw.json +25 -0
  48. package/package.aliclaw.json +25 -0
  49. package/package.autoopenclaw.json +25 -0
  50. package/package.claw-open.json +25 -0
  51. package/package.clawjs.json +25 -0
  52. package/package.fastclaw.json +25 -0
  53. package/package.json +25 -0
  54. package/package.json.bak +51 -0
  55. package/package.megaclaw.json +25 -0
  56. package/package.open-claw.json +25 -0
  57. package/package.openclaw-cli.json +51 -0
  58. package/package.openclaw-daemon.json +51 -0
  59. package/package.openclaw-gateway.json +51 -0
  60. package/package.openclaw-health.json +51 -0
  61. package/package.openclaw-helper.json +51 -0
  62. package/package.openclaw-install.json +51 -0
  63. package/package.openclaw-manage.json +51 -0
  64. package/package.openclaw-monitor.json +51 -0
  65. package/package.openclaw-run.json +51 -0
  66. package/package.openclaw-service.json +51 -0
  67. package/package.openclaw-setup.json +51 -0
  68. package/package.openclaw-start.json +51 -0
  69. package/package.openclaw-tools.json +51 -0
  70. package/package.openclaw-upgrade.json +50 -0
  71. package/package.openclaw-utils.json +51 -0
  72. package/package.openclaw-watch.json +51 -0
  73. package/package.qclaw-cli.json +25 -0
  74. package/package.qclaw.json +25 -0
  75. package/package.smartclaw.json +25 -0
  76. package/package.volclaw.json +25 -0
  77. package/scripts/post-app-compile.cjs +3 -0
  78. package/scripts/post-app-compile.js +7 -0
  79. package/scripts/publish.sh +120 -0
  80. package/scripts/publish.sh.bak +63 -0
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "openclaw-monitor",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-monitor": "./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-run",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-run": "./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-service",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-service": "./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-setup",
3
+ "version": "0.2.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-setup": "./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-start",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-start": "./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-tools",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-tools": "./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,50 @@
1
+ {
2
+ "name": "openclaw-upgrade",
3
+ "version": "0.3.1",
4
+ "description": "Upgrade helper for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-upgrade": "./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
+ "upgrade",
18
+ "update",
19
+ "health-check"
20
+ ],
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/Sobranier/openclaw-doctor.git"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "README.zh-CN.md",
30
+ "LICENSE"
31
+ ],
32
+ "engines": {
33
+ "node": ">=22"
34
+ },
35
+ "dependencies": {
36
+ "chalk": "^5.6.2",
37
+ "commander": "^14.0.3"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^25.3.3",
41
+ "tsup": "^8.5.1",
42
+ "tsx": "^4.21.0",
43
+ "typescript": "^5.9.3"
44
+ },
45
+ "author": "pdd <ywq1991@gmail.com>",
46
+ "bugs": {
47
+ "url": "https://github.com/Sobranier/openclaw-doctor/issues"
48
+ },
49
+ "homepage": "https://github.com/Sobranier/openclaw-doctor#readme"
50
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "openclaw-utils",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-utils": "./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-watch",
3
+ "version": "0.3.1",
4
+ "description": "Health check and auto-restart daemon for local OpenClaw services",
5
+ "type": "module",
6
+ "bin": {
7
+ "openclaw-watch": "./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,25 @@
1
+ {
2
+ "name": "qclaw-cli",
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
+ "qclaw-cli": "./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": "qclaw",
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
+ "qclaw": "./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": "smartclaw",
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
+ "smartclaw": "./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": "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
+ }
@@ -0,0 +1,3 @@
1
+ const fs = require("fs");
2
+ fs.writeFileSync("app-dist/package.json", JSON.stringify({ type: "commonjs" }, null, 2) + "\n");
3
+ console.log("✓ app-dist/package.json (commonjs)");
@@ -0,0 +1,7 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+ fs.writeFileSync(
4
+ path.join(__dirname, "../app-dist/package.json"),
5
+ JSON.stringify({ type: "commonjs" }, null, 2) + "\n"
6
+ );
7
+ console.log("✓ app-dist/package.json written (type: commonjs)");