clawcontrol 0.1.0 → 0.1.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/README.md CHANGED
@@ -22,19 +22,21 @@ One-liner (Windows PowerShell):
22
22
  irm https://openclaw.ai/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.1",
4
4
  "description": "CLI tool for deploying and managing OpenClaw instances on VPS providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",