metame-cli 1.4.22 → 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.
Files changed (2) hide show
  1. package/README.md +13 -3
  2. 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 / Windows WSL — same command:**
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 / Windows WSL:**
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
- > Same command everywhere. The script detects your OS and uses Homebrew (macOS) or apt/dnf/pacman (Linux/WSL) to install Node.js automatically.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metame-cli",
3
- "version": "1.4.22",
3
+ "version": "1.4.24",
4
4
  "description": "The Cognitive Profile Layer for Claude Code. Knows how you think, not just what you said.",
5
5
  "main": "index.js",
6
6
  "bin": {