@cnrai/pave 0.3.32 → 0.3.33

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -3
  3. package/pave.js +2 -1
package/README.md CHANGED
@@ -21,7 +21,7 @@ pave chat "question" # Quick chat
21
21
 
22
22
  ```bash
23
23
  npm install -g @cnrai/pave
24
- node --expose-gc --jitless $(which pave)
24
+ pave # Auto-detects iSH and applies optimized Node flags
25
25
  ```
26
26
 
27
27
  ## Requirements
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@cnrai/pave",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "description": "PAVE - Personal AI Virtual Environment. AI agent framework for the terminal.",
5
5
  "main": "pave.js",
6
6
  "bin": {
7
7
  "pave": "./pave.js"
8
8
  },
9
9
  "scripts": {
10
- "start": "node pave.js",
11
- "start:ish": "node --expose-gc --jitless --max-old-space-size=128 pave.js"
10
+ "start": "node pave.js"
12
11
  },
13
12
  "engines": {
14
13
  "node": ">=16.0.0"