@defai.digital/automatosx 8.4.2 → 8.4.3
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 +1 -1
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ AutomatosX is a pure CLI orchestration platform for AI agents. It wraps around `
|
|
|
13
13
|
[](https://www.microsoft.com/windows)
|
|
14
14
|
[](https://ubuntu.com)
|
|
15
15
|
|
|
16
|
-
**Status**: ✅ **Production Ready** | v8.4.
|
|
16
|
+
**Status**: ✅ **Production Ready** | v8.4.3 | 20 Specialized Agents | Pure CLI Orchestration | Simplified Architecture
|
|
17
17
|
|
|
18
18
|
> 🎉 **NEW in v8.3.0**: Major simplification! Removed ~36,000 lines of code including policy routing, free-tier management, and SDK providers. AutomatosX is now a pure CLI orchestration wrapper around `claude`, `gemini`, and `codex` commands. Simpler, faster, easier to maintain. See [Migration Guide](MIGRATION.md) for upgrade details.
|
|
19
19
|
|
package/dist/index.js
CHANGED
|
@@ -43673,9 +43673,7 @@ var cliCommand = {
|
|
|
43673
43673
|
if (argv.model) {
|
|
43674
43674
|
grokArgs.push("--model", argv.model);
|
|
43675
43675
|
}
|
|
43676
|
-
|
|
43677
|
-
grokArgs.push("--config", argv.config);
|
|
43678
|
-
}
|
|
43676
|
+
grokArgs.push("--config", configPath);
|
|
43679
43677
|
if (argv.prompt) {
|
|
43680
43678
|
grokArgs.push(argv.prompt);
|
|
43681
43679
|
}
|