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 +8 -6
- package/dist/index.js +1 -1
- package/package.json +1 -1
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