clawcontrol 0.1.0 → 0.1.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/README.md CHANGED
@@ -13,28 +13,30 @@ ClawControl makes OpenClaw setup repeatable and fast. It handles VPS provisionin
13
13
  One-liner (Linux / macOS):
14
14
 
15
15
  ```bash
16
- curl -fsSL https://openclaw.ai/install.sh | bash
16
+ curl -fsSL https://raw.githubusercontent.com/ipenywis/clawcontrol/main/install.sh | bash
17
17
  ```
18
18
 
19
19
  One-liner (Windows PowerShell):
20
20
 
21
21
  ```powershell
22
- irm https://openclaw.ai/install.ps1 | iex
22
+ irm https://raw.githubusercontent.com/ipenywis/clawcontrol/main/install.ps1 | iex
23
23
  ```
24
24
 
25
- Package managers:
25
+ Package managers (Bun must be installed — the install scripts handle this automatically):
26
26
 
27
+ ```bash
28
+ bun add -g clawcontrol
27
29
  ```
30
+
31
+ ```bash
28
32
  npm install -g clawcontrol
29
33
  ```
30
34
 
31
- ```
35
+ ```bash
32
36
  pnpm add -g clawcontrol
33
37
  ```
34
38
 
35
- ```
36
- bun add -g clawcontrol
37
- ```
39
+ > **Note:** ClawControl requires the [Bun](https://bun.sh) runtime. If you install manually with npm or pnpm, make sure Bun is also installed (`curl -fsSL https://bun.sh/install | bash`).
38
40
 
39
41
  After install:
40
42
 
@@ -54,9 +56,9 @@ clawcontrol
54
56
 
55
57
  Prerequisites:
56
58
 
59
+ - [Bun](https://bun.sh) (runtime for the CLI)
57
60
  - Node.js >= 20
58
61
  - pnpm 10.25.x
59
- - bun (for `pnpm dev`)
60
62
 
61
63
  Setup:
62
64
 
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env bun
2
2
 
3
3
  // src/index.tsx
4
4
  import { createCliRenderer } from "@opentui/core";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawcontrol",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI tool for deploying and managing OpenClaw instances on VPS providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",