@whalent/agent-core 0.3.82 → 0.3.83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whalent/agent-core",
3
- "version": "0.3.82",
3
+ "version": "0.3.83",
4
4
  "description": "Core runtime for Whalent Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -19,10 +19,10 @@
19
19
  "license": "UNLICENSED",
20
20
  "dependencies": {
21
21
  "@anthropic-ai/claude-agent-sdk": "^0.2.138",
22
- "better-sqlite3": "^11.10.0",
22
+ "better-sqlite3": "^12.10.0",
23
23
  "node-pty": "^1.1.0"
24
24
  },
25
25
  "engines": {
26
- "node": ">=20.0.0 <21.0.0"
26
+ "node": ">=20.0.0"
27
27
  }
28
28
  }
@@ -3,12 +3,12 @@
3
3
 
4
4
  const major = Number.parseInt(process.versions.node.split('.')[0] || '0', 10);
5
5
 
6
- if (major !== 20) {
6
+ if (major < 20) {
7
7
  console.error(`
8
8
  [whalent-agent] Unsupported Node.js ${process.version}.
9
9
 
10
- Whalent Agent depends on native PTY/SQLite modules. Please use Node.js 20 LTS;
11
- newer Node.js releases can force local node-gyp builds that fail on older Linux compilers.
10
+ Whalent Agent requires Node.js 20 or newer because it depends on native
11
+ PTY/SQLite modules.
12
12
 
13
13
  Recommended fix:
14
14
  nvm install 20