clawdi 0.13.9 → 0.13.11
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
|
@@ -12,13 +12,25 @@ backend + dashboard + CLI stack, use the canonical runbook in
|
|
|
12
12
|
|
|
13
13
|
## Quickstart
|
|
14
14
|
|
|
15
|
+
Recommended on macOS and Linux (no Node.js required):
|
|
16
|
+
|
|
15
17
|
```bash
|
|
16
|
-
|
|
18
|
+
curl -fsSL https://raw.githubusercontent.com/Clawdi-AI/clawdi/main/install.sh | sh
|
|
17
19
|
clawdi auth login
|
|
18
20
|
clawdi setup
|
|
19
21
|
clawdi doctor
|
|
20
22
|
```
|
|
21
23
|
|
|
24
|
+
Windows and package-manager installations require Node.js ≥ 22.5:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm i -g clawdi
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Updates follow the current owner: native installs use checksum-verified exact
|
|
31
|
+
GitHub Release assets, while npm/Bun installs use exact npm versions. Hosted
|
|
32
|
+
version transactions are separate and never invoke native self-update.
|
|
33
|
+
|
|
22
34
|
## Development
|
|
23
35
|
|
|
24
36
|
From the repository root:
|