@defai.digital/automatosx 11.3.4 → 11.4.0
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 +2195 -193
- package/dist/mcp/index.js +2024 -84
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.4.0",
|
|
4
4
|
"description": "Provider-agnostic AI orchestration platform with 20+ specialized agents, persistent memory, and multi-provider routing for Claude Code, Gemini CLI, Codex CLI, and ax-cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"release:minor": "node tools/release.js minor",
|
|
63
63
|
"release:major": "node tools/release.js major",
|
|
64
64
|
"release:spec": "ax spec run examples/specs/automatosx-release.ax.yaml",
|
|
65
|
-
"release:standard": "
|
|
66
|
-
"release:beta": "
|
|
67
|
-
"release:rc": "
|
|
68
|
-
"release:first": "
|
|
65
|
+
"release:standard": "commit-and-tag-version",
|
|
66
|
+
"release:beta": "commit-and-tag-version --prerelease beta",
|
|
67
|
+
"release:rc": "commit-and-tag-version --prerelease rc",
|
|
68
|
+
"release:first": "commit-and-tag-version --first-release"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@commitlint/cli": "^20.1.0",
|
|
@@ -75,22 +75,22 @@
|
|
|
75
75
|
"@types/js-yaml": "^4.0.9",
|
|
76
76
|
"@types/node": "^24.7.1",
|
|
77
77
|
"@types/yargs": "^17.0.33",
|
|
78
|
-
"@vitest/coverage-v8": "^
|
|
78
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
79
|
+
"commit-and-tag-version": "^12.6.1",
|
|
79
80
|
"commitizen": "^4.3.1",
|
|
80
81
|
"cz-conventional-changelog": "^3.0.1",
|
|
81
82
|
"husky": "^9.1.7",
|
|
82
|
-
"markdownlint-cli": "^0.
|
|
83
|
-
"standard-version": "^9.5.0",
|
|
83
|
+
"markdownlint-cli": "^0.46.0",
|
|
84
84
|
"strip-ansi": "^7.1.0",
|
|
85
85
|
"tsup": "^8.0.0",
|
|
86
86
|
"tsx": "^4.7.0",
|
|
87
87
|
"typescript": "^5.3.0",
|
|
88
|
-
"vitest": "^
|
|
88
|
+
"vitest": "^4.0.15"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@defai.digital/ax-cli": "^
|
|
91
|
+
"@defai.digital/ax-cli": "^4.0.6",
|
|
92
92
|
"@iarna/toml": "^2.2.5",
|
|
93
|
-
"@openai/codex-sdk": "^0.
|
|
93
|
+
"@openai/codex-sdk": "^0.65.0",
|
|
94
94
|
"ajv": "^8.17.1",
|
|
95
95
|
"ajv-formats": "^3.0.1",
|
|
96
96
|
"async-mutex": "^0.5.0",
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
"cli-table3": "^0.6.5",
|
|
101
101
|
"effect": "^3.19.3",
|
|
102
102
|
"find-up": "^8.0.0",
|
|
103
|
-
"glob": "^
|
|
104
|
-
"inquirer": "^
|
|
103
|
+
"glob": "^13.0.0",
|
|
104
|
+
"inquirer": "^13.0.0",
|
|
105
105
|
"js-yaml": "^4.1.0",
|
|
106
106
|
"openai": "^6.7.0",
|
|
107
107
|
"ora": "^9.0.0",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"overrides": {
|
|
154
154
|
"esbuild": "^0.25.0",
|
|
155
155
|
"tmp": "^0.2.4",
|
|
156
|
-
"glob": "^
|
|
156
|
+
"glob": "^13.0.0",
|
|
157
157
|
"@ax-cli/schemas": "zod@^3.23.8",
|
|
158
158
|
"@modelcontextprotocol/sdk": "^1.24.0"
|
|
159
159
|
},
|