@defai.digital/automatosx 5.6.31 → 5.6.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,71 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [5.6.33] - 2025-10-27
6
+
7
+ ### Changed
8
+
9
+ **Node.js v24 Required**
10
+
11
+ AutomatosX now requires Node.js 24.0.0 or higher for optimal performance, security, and access to modern JavaScript features.
12
+
13
+ #### Why This Change?
14
+
15
+ This upgrade brings significant improvements to all users:
16
+
17
+ **Performance Improvements**:
18
+ - ✅ 10-15% faster execution (V8 engine v13.6)
19
+ - ✅ Faster dependency resolution (npm 11)
20
+ - ✅ Improved async context tracking (AsyncLocalStorage)
21
+
22
+ **Security & Stability**:
23
+ - ✅ Latest security patches and vulnerability fixes
24
+ - ✅ More reliable async operations
25
+ - ✅ Better memory management
26
+
27
+ **Future-Proof**:
28
+ - ✅ Node.js 24 becomes LTS in October 2025
29
+ - ✅ Supported until April 2028
30
+ - ✅ Node.js 20 reaches EOL in April 2026
31
+
32
+ #### What Changed?
33
+
34
+ **Modified Files**:
35
+ 1. `package.json` - Updated engines requirement from `>=20.0.0` to `>=24.0.0`
36
+ 2. `.nvmrc` - Added version lock file (specifies Node.js 24)
37
+ 3. `README.md` - Added requirements section and upgrade guide
38
+
39
+ **Impact**:
40
+ - ✅ No breaking changes for existing functionality
41
+ - ✅ All features work exactly the same
42
+ - ⚠️ Users on Node.js 20 need to upgrade
43
+
44
+ #### How to Upgrade
45
+
46
+ **Using nvm (recommended)**:
47
+ ```bash
48
+ nvm install 24
49
+ nvm use 24
50
+ nvm alias default 24
51
+ npm install -g @defai.digital/automatosx
52
+ ```
53
+
54
+ **Using official installer**:
55
+ 1. Download Node.js 24 from [nodejs.org](https://nodejs.org/)
56
+ 2. Install (includes npm 11 automatically)
57
+ 3. Reinstall AutomatosX: `npm install -g @defai.digital/automatosx`
58
+
59
+ **Verification**:
60
+ ```bash
61
+ node --version # Should show v24.x.x
62
+ npm --version # Should show 11.x.x
63
+ ax --version # Should show 5.6.33
64
+ ```
65
+
66
+ See [README.md](README.md#upgrading-from-nodejs-20) for detailed upgrade instructions.
67
+
68
+ ---
69
+
5
70
  ## [5.6.31] - 2025-10-26
6
71
 
7
72
  ### Fixed
package/README.md CHANGED
@@ -13,9 +13,30 @@ AutomatosX is a CLI-first orchestration tool that transforms stateless AI assist
13
13
  [![Windows](https://img.shields.io/badge/Windows-10+-blue.svg)](https://www.microsoft.com/windows)
14
14
  [![Ubuntu](https://img.shields.io/badge/Ubuntu-24.04-orange.svg)](https://ubuntu.com)
15
15
 
16
- **Status**: ✅ Production Ready · **v5.6.31** · October 2025 · 19 Specialized Agents · 100% Resource Leak Free · Production Stability
16
+ **Status**: ✅ Production Ready · **v5.6.33** · October 2025 · 19 Specialized Agents · 100% Resource Leak Free · Production Stability
17
17
 
18
- **Latest (v5.6.31)**: Node.js DEP0190 Deprecation Warning Resolution - Eliminated deprecation warning on macOS/Linux by using conditional shell option (only on Windows). Improves security by reducing command injection attack surface on Unix systems while maintaining Windows `.cmd`/`.bat` compatibility. [See full changelog →](CHANGELOG.md)
18
+ **Latest (v5.6.33)**: Node.js v24 Required - Upgraded minimum Node.js requirement to v24.0.0 for 10-15% performance improvement, latest security patches, and future LTS support (October 2025). Includes npm 11, V8 v13.6, and improved async context tracking. [See upgrade guide →](#upgrading-from-nodejs-20) | [Full changelog →](CHANGELOG.md)
19
+
20
+ ---
21
+
22
+ ## 📋 Requirements
23
+
24
+ - **Node.js 24.0.0 or higher** (recommended: latest LTS)
25
+ - **npm 11.0.0 or higher** (included with Node.js 24)
26
+
27
+ > **Why Node.js 24?** AutomatosX requires Node.js 24 for optimal performance, security, and modern JavaScript features. [See upgrade guide →](#upgrading-from-nodejs-20)
28
+
29
+ ### Quick Install Node.js 24
30
+
31
+ **Using nvm (recommended)**:
32
+ ```bash
33
+ nvm install 24
34
+ nvm use 24
35
+ ```
36
+
37
+ **Using official installer**:
38
+ - Download from [nodejs.org](https://nodejs.org/)
39
+ - The installer includes npm 11 automatically
19
40
 
20
41
  ---
21
42
 
@@ -211,6 +232,71 @@ ax run quality "Write tests for the API" # Auto-receives design + implementation
211
232
 
212
233
  ---
213
234
 
235
+ ## ⬆️ Upgrading from Node.js 20
236
+
237
+ If you're currently using Node.js 20, upgrading to Node.js 24 is recommended for better performance and security.
238
+
239
+ ### Why Upgrade?
240
+
241
+ - **🚀 10-15% faster execution** - V8 engine v13.6 improvements
242
+ - **🔒 Latest security patches** - Critical vulnerabilities fixed
243
+ - **⚡ npm 11** - Faster dependency resolution
244
+ - **🎯 Better async tracking** - AsyncLocalStorage improvements
245
+ - **📅 Future LTS** - Becomes LTS in October 2025, supported until April 2028
246
+
247
+ ### Upgrade Steps
248
+
249
+ 1. **Install Node.js 24**:
250
+ ```bash
251
+ # Using nvm (recommended)
252
+ nvm install 24
253
+ nvm use 24
254
+ nvm alias default 24
255
+
256
+ # Or download from https://nodejs.org/
257
+ ```
258
+
259
+ 2. **Verify installation**:
260
+ ```bash
261
+ node --version # Should show v24.x.x
262
+ npm --version # Should show 11.x.x
263
+ ```
264
+
265
+ 3. **Reinstall AutomatosX**:
266
+ ```bash
267
+ npm install -g @defai.digital/automatosx
268
+ ```
269
+
270
+ 4. **Verify everything works**:
271
+ ```bash
272
+ ax --version # Should show 5.6.33
273
+ ax list agents
274
+ ```
275
+
276
+ ### What Changed?
277
+
278
+ - **Node.js requirement**: `>=20.0.0` → `>=24.0.0`
279
+ - **npm version**: 10.x → 11.x (included with Node.js 24)
280
+ - **Breaking changes**: None for AutomatosX users
281
+ - **Compatibility**: All features work exactly the same
282
+
283
+ ### Troubleshooting
284
+
285
+ **Issue**: "Unsupported engine" error
286
+ ```bash
287
+ # Solution: Update to Node.js 24
288
+ nvm install 24
289
+ nvm use 24
290
+ ```
291
+
292
+ **Issue**: npm version mismatch
293
+ ```bash
294
+ # Solution: npm 11 comes with Node.js 24
295
+ # Just install Node.js 24 and npm will be updated automatically
296
+ ```
297
+
298
+ ---
299
+
214
300
  ## 🤝 Contributing
215
301
 
216
302
  AutomatosX is an open-source project. We welcome contributions!
@@ -223,4 +309,6 @@ AutomatosX is an open-source project. We welcome contributions!
223
309
 
224
310
  ## 📄 License
225
311
 
226
- AutomatosX is [Apache 2.0 licensed](LICENSE).
312
+ AutomatosX is [Apache 2.0 licensed](LICENSE).
313
+
314
+ Copyright © 2025 DEFAI Private Limited. All rights reserved.
@@ -382,7 +382,7 @@ systemPrompt: |
382
382
  # ============================================
383
383
  metadata:
384
384
  last_updated: 2025-10-07
385
- author: AutomatosX Team
385
+ author: DEFAI Private Limited
386
386
  capability_score: 9/10
387
387
  specialization_depth: expert
388
388
  profile_version: 4.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/automatosx",
3
- "version": "5.6.31",
3
+ "version": "5.6.33",
4
4
  "description": "AI Agent Orchestration Platform",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -11,7 +11,7 @@
11
11
  "ax": "dist/index.js"
12
12
  },
13
13
  "engines": {
14
- "node": ">=20.0.0"
14
+ "node": ">=24.0.0"
15
15
  },
16
16
  "scripts": {
17
17
  "prebuild:config": "node tools/prebuild-config.cjs",
@@ -104,7 +104,7 @@
104
104
  "typescript",
105
105
  "ai-agents"
106
106
  ],
107
- "author": "AutomatosX Team",
107
+ "author": "DEFAI Private Limited",
108
108
  "license": "Apache-2.0",
109
109
  "repository": {
110
110
  "type": "git",