@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.
Files changed (2) hide show
  1. package/README.md +12 -6
  2. 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 (curl + bash):**
31
-
32
- ```bash
33
- curl -fsSL https://sulala.ai/install.sh | bash
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
- (The install script is hosted by the landing site; source: `landing/public/install.sh`.)
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sulala/agent",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Local AI orchestration platform — file watcher, task scheduler, AI layer, plugins",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",