@sulala/agent 0.1.11 → 0.1.12
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 +12 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,15 +27,21 @@ See [docs/architecture.md](docs/architecture.md) and the project diagram for ful
|
|
|
27
27
|
|
|
28
28
|
## Quick start
|
|
29
29
|
|
|
30
|
-
**One-line install
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
**One-line install:**
|
|
31
|
+
|
|
32
|
+
- **macOS / Linux (curl + bash):**
|
|
33
|
+
```bash
|
|
34
|
+
curl -fsSL https://sulala.ai/install.sh | bash
|
|
35
|
+
```
|
|
36
|
+
- **Windows (PowerShell):**
|
|
37
|
+
```powershell
|
|
38
|
+
irm https://sulala.ai/install.ps1 | iex
|
|
39
|
+
```
|
|
40
|
+
Optional version: `irm https://sulala.ai/install.ps1 | iex -Args '--version=0.1.8'`
|
|
35
41
|
|
|
36
42
|
This installs the CLI, runs onboarding, installs the background daemon, and starts the agent. Dashboard: http://127.0.0.1:2026
|
|
37
43
|
|
|
38
|
-
(
|
|
44
|
+
(Install scripts are hosted by the landing site; source: `landing/public/install.sh`, `landing/public/install.ps1`.)
|
|
39
45
|
|
|
40
46
|
**Or install from npm:**
|
|
41
47
|
|