@defai.digital/automatosx 12.8.3 → 12.8.7
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 +4 -3
- package/dist/index.js +6672 -2312
- package/dist/mcp/index.js +5949 -1930
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "12.8.
|
|
3
|
+
"version": "12.8.7",
|
|
4
4
|
"description": "AI Agent Orchestration Platform with 20+ specialized agents, persistent memory, MCP server, and intelligent multi-provider routing for Claude Code, Gemini CLI, Codex CLI, GLM, Grok, and Qwen",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -55,6 +55,9 @@
|
|
|
55
55
|
"check:size": "bash tools/check-package-size.sh",
|
|
56
56
|
"tools:check": "bash -c 'echo \"🔍 Checking shell scripts syntax...\"; for f in tools/*.sh; do echo \" Checking $f...\"; bash -n \"$f\" && echo \" ✓ $f OK\" || echo \" ✗ $f FAILED\"; done; echo \"✅ All tools checked\"'",
|
|
57
57
|
"check:timers": "bash tools/check-timer-cleanup.sh",
|
|
58
|
+
"validate:native": "node tools/validate-native-modules.js",
|
|
59
|
+
"rebuild:native": "npm rebuild better-sqlite3 sqlite-vec",
|
|
60
|
+
"postinstall": "node tools/validate-native-modules.js || echo '⚠️ Native module validation failed. Run: npm run rebuild:native'",
|
|
58
61
|
"prepare": "[ -n \"$CI\" ] || husky",
|
|
59
62
|
"commit": "cz",
|
|
60
63
|
"release": "node tools/release.js",
|
|
@@ -71,6 +74,7 @@
|
|
|
71
74
|
"@commitlint/cli": "^20.1.0",
|
|
72
75
|
"@commitlint/config-conventional": "^20.0.0",
|
|
73
76
|
"@eslint/js": "^9.39.1",
|
|
77
|
+
"@faker-js/faker": "^10.1.0",
|
|
74
78
|
"@types/better-sqlite3": "^7.6.13",
|
|
75
79
|
"@types/inquirer": "^9.0.9",
|
|
76
80
|
"@types/js-yaml": "^4.0.9",
|
|
@@ -83,6 +87,8 @@
|
|
|
83
87
|
"globals": "^16.5.0",
|
|
84
88
|
"husky": "^9.1.7",
|
|
85
89
|
"markdownlint-cli": "^0.46.0",
|
|
90
|
+
"memfs": "^4.51.1",
|
|
91
|
+
"msw": "^2.12.4",
|
|
86
92
|
"strip-ansi": "^7.1.0",
|
|
87
93
|
"tsup": "^8.0.0",
|
|
88
94
|
"tsx": "^4.7.0",
|
|
@@ -130,26 +136,20 @@
|
|
|
130
136
|
"SECURITY.md"
|
|
131
137
|
],
|
|
132
138
|
"keywords": [
|
|
133
|
-
"
|
|
134
|
-
"agent",
|
|
135
|
-
"orchestration",
|
|
136
|
-
"automation",
|
|
137
|
-
"llm",
|
|
138
|
-
"claude",
|
|
139
|
-
"claude-code",
|
|
140
|
-
"gemini",
|
|
139
|
+
"multi-agent",
|
|
141
140
|
"openai",
|
|
142
|
-
"
|
|
141
|
+
"developer-tools",
|
|
142
|
+
"glm",
|
|
143
143
|
"grok",
|
|
144
|
+
"workflow-orchestration",
|
|
145
|
+
"ai-automation",
|
|
146
|
+
"ai-runtime",
|
|
144
147
|
"qwen",
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"vector-search",
|
|
151
|
-
"sqlite",
|
|
152
|
-
"typescript"
|
|
148
|
+
"aicoding",
|
|
149
|
+
"agentic-framework",
|
|
150
|
+
"gemini-cli",
|
|
151
|
+
"claude-code",
|
|
152
|
+
"codex-cli"
|
|
153
153
|
],
|
|
154
154
|
"author": "AutomatosX Team",
|
|
155
155
|
"license": "Apache-2.0",
|