@learnrudi/cli 1.8.0 → 1.8.2

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
@@ -8,6 +8,31 @@ Install and manage MCP stacks, runtimes, and AI agents.
8
8
  npm i -g @learnrudi/cli
9
9
  ```
10
10
 
11
+ Requires Node.js + npm. The npm postinstall step bootstraps `~/.rudi` and
12
+ downloads the default runtimes.
13
+
14
+ ## Installation Flow (CLI + Studio)
15
+
16
+ ### CLI (npm)
17
+
18
+ 1. `npm i -g @learnrudi/cli` downloads the CLI package.
19
+ 2. Postinstall creates `~/.rudi/` folders, downloads Node/Python runtimes,
20
+ creates `~/.rudi/shims/rudi-mcp`, and initializes `~/.rudi/secrets.json`.
21
+ 3. Run `rudi init` to create `~/.rudi/rudi.db`, write `settings.json`, and
22
+ ensure essential binaries and shims are present.
23
+
24
+ ### Studio (desktop app)
25
+
26
+ 1. Studio bundles the CLI and installs it to `~/.rudi/bins/rudi`.
27
+ 2. On first launch, Studio runs `rudi init` unless `~/.rudi` is already
28
+ initialized.
29
+ 3. CLI and Studio share the same `~/.rudi` home, so stacks, runtimes, secrets,
30
+ and the database stay in sync.
31
+
32
+ If you already use Studio, you can skip the npm install unless you want the
33
+ `rudi` command in your shell. If you already use the CLI, Studio will reuse the
34
+ existing `~/.rudi` setup.
35
+
11
36
  ## Quick Start
12
37
 
13
38
  ```bash