metame-cli 1.4.23 → 1.4.24
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 +13 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,11 +20,16 @@ MetaMe is an AI that lives on your machine — remembers how you think, stays on
|
|
|
20
20
|
|
|
21
21
|
No cloud. Your machine, your data.
|
|
22
22
|
|
|
23
|
-
**macOS / Linux /
|
|
23
|
+
**macOS / Linux / WSL terminal:**
|
|
24
24
|
```bash
|
|
25
25
|
curl -fsSL https://raw.githubusercontent.com/Yaron9/MetaMe/main/install.sh | bash
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
**Windows PowerShell:**
|
|
29
|
+
```powershell
|
|
30
|
+
irm https://raw.githubusercontent.com/Yaron9/MetaMe/main/install.ps1 | iex
|
|
31
|
+
```
|
|
32
|
+
|
|
28
33
|
**Already have Node.js ≥ 18:**
|
|
29
34
|
```bash
|
|
30
35
|
npm install -g metame-cli && metame
|
|
@@ -193,11 +198,16 @@ Task fails → skill-scout finds a skill → installs → retries → succeeds
|
|
|
193
198
|
|
|
194
199
|
## Quick Start
|
|
195
200
|
|
|
196
|
-
**macOS / Linux /
|
|
201
|
+
**macOS / Linux / WSL terminal:**
|
|
197
202
|
```bash
|
|
198
203
|
curl -fsSL https://raw.githubusercontent.com/Yaron9/MetaMe/main/install.sh | bash
|
|
199
204
|
```
|
|
200
|
-
|
|
205
|
+
|
|
206
|
+
**Windows PowerShell:**
|
|
207
|
+
```powershell
|
|
208
|
+
irm https://raw.githubusercontent.com/Yaron9/MetaMe/main/install.ps1 | iex
|
|
209
|
+
```
|
|
210
|
+
> The script detects your OS, installs Node.js (via Homebrew / nvm / apt), sets up WSL if needed, and mirrors proxy settings automatically.
|
|
201
211
|
|
|
202
212
|
**Already have Node.js ≥ 18:**
|
|
203
213
|
```bash
|