@whalent/agent 0.3.76 → 0.3.82

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
@@ -12,7 +12,14 @@ Protocol reference:
12
12
  npm install -g @whalent/agent
13
13
  ```
14
14
 
15
- Requires Node.js >= 18 and C++ build tools for `node-pty` (`build-essential` on Linux).
15
+ Requires Node.js 20 LTS. On older Linux hosts, newer Node.js releases can force
16
+ native `node-pty` / `better-sqlite3` builds that need newer C++ compilers:
17
+
18
+ ```bash
19
+ nvm install 20
20
+ nvm use 20
21
+ npm install -g @whalent/agent --prefer-online --registry=https://registry.npmjs.org
22
+ ```
16
23
 
17
24
  ## Start Daemon
18
25