@defai.digital/automatosx 8.3.0 → 8.3.2
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 +16 -0
- package/README.md +120 -2
- package/dist/index.js +1145 -333
- package/examples/grok/GROK_INTEGRATION.md +511 -0
- package/examples/grok/settings.json +43 -0
- package/examples/providers/README.md +228 -0
- package/examples/providers/grok-with-mcp.yaml +86 -0
- package/examples/providers/grok-x-ai.yaml +46 -0
- package/examples/providers/grok-z-ai.yaml +50 -0
- package/examples/providers/grok.yaml +120 -0
- package/package.json +4 -2
- package/templates/providers/README.md +117 -0
- package/templates/providers/grok-zai.yaml.template +61 -0
- package/templates/providers/grok.yaml.template +71 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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
|
+
## [8.3.0] - 2025-11-17
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **Critical**: Added backward compatibility for provider names (claude-code, gemini-cli, openai)
|
|
9
|
+
- Fixed config reset test to handle optional version field
|
|
10
|
+
- Fixed router circuit breaker test to match v8.3.0 behavior (3 failures threshold)
|
|
11
|
+
- Removed obsolete providers.test.ts (tested SDK features removed in v8.3.0)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Skipped streaming workflow tests (feature removed in CLI-only refactoring)
|
|
15
|
+
|
|
16
|
+
### Improved
|
|
17
|
+
- Achieved 100% test pass rate (112/112 unit tests, 9/9 integration tests)
|
|
18
|
+
- Reduced test failures from 43 to 0
|
|
19
|
+
- Comprehensive test suite improvements and cleanup
|
|
20
|
+
|
|
5
21
|
## [7.6.0] - 2025-11-04
|
|
6
22
|
|
|
7
23
|
### Added
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
AutomatosX is a pure CLI orchestration platform for AI agents. It wraps around `claude`, `gemini`, and `codex` commands to provide multi-agent orchestration, persistent memory, and workflow automation. Simple, focused, and easy to integrate with your existing AI workflow.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
8
|
-
[](LICENSE)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
10
|
[](#)
|
|
11
11
|
[](https://www.npmjs.com/package/@defai.digital/automatosx)
|
|
@@ -1129,9 +1129,107 @@ ax setup -f
|
|
|
1129
1129
|
- [Gemini CLI](https://ai.google.dev/gemini-api/docs/cli) (recommended - cheapest)
|
|
1130
1130
|
- [OpenAI Codex](https://platform.openai.com/docs/guides/code) (fastest)
|
|
1131
1131
|
- [Claude Code](https://claude.ai/code) (most capable)
|
|
1132
|
+
- [Grok CLI](#-grok-cli-configuration-new-in-v831) (X.AI or self-hosted GLM 4.6)
|
|
1132
1133
|
|
|
1133
1134
|
[➡️ Full Installation Guide](docs/getting-started/installation.md)
|
|
1134
1135
|
|
|
1136
|
+
### 🤖 Grok CLI Configuration (New in v8.3.1)
|
|
1137
|
+
|
|
1138
|
+
AutomatosX now supports Grok CLI with **two endpoints**:
|
|
1139
|
+
|
|
1140
|
+
#### Option 1: X.AI Official Grok (Recommended)
|
|
1141
|
+
|
|
1142
|
+
```bash
|
|
1143
|
+
# 1. Run setup to create .grok/settings.json
|
|
1144
|
+
ax setup
|
|
1145
|
+
|
|
1146
|
+
# 2. Edit .grok/settings.json
|
|
1147
|
+
{
|
|
1148
|
+
"baseURL": "https://api.x.ai/v1",
|
|
1149
|
+
"model": "grok-3-fast",
|
|
1150
|
+
"apiKey": "xai-your-key-here"
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
# 3. Enable in automatosx.config.json
|
|
1154
|
+
"grok": { "enabled": true }
|
|
1155
|
+
|
|
1156
|
+
# 4. Verify
|
|
1157
|
+
ax doctor grok
|
|
1158
|
+
ax providers list
|
|
1159
|
+
```
|
|
1160
|
+
|
|
1161
|
+
**Get X.AI API Key**: https://console.x.ai/api-keys
|
|
1162
|
+
|
|
1163
|
+
#### Option 2: Z.AI GLM 4.6 (Code-Optimized)
|
|
1164
|
+
|
|
1165
|
+
```bash
|
|
1166
|
+
# Edit .grok/settings.json
|
|
1167
|
+
{
|
|
1168
|
+
"baseURL": "https://api.z.ai/api/coding/paas/v4",
|
|
1169
|
+
"model": "glm-4.6",
|
|
1170
|
+
"apiKey": "your-zai-key"
|
|
1171
|
+
}
|
|
1172
|
+
```
|
|
1173
|
+
|
|
1174
|
+
**Get Z.AI API Key**: https://z.ai/developer
|
|
1175
|
+
|
|
1176
|
+
#### Option 3: Self-Hosted GLM 4.6 API Server
|
|
1177
|
+
|
|
1178
|
+
**Use your own local coding system with AutomatosX!**
|
|
1179
|
+
|
|
1180
|
+
You can point AutomatosX to your own GLM 4.6 API server for complete control:
|
|
1181
|
+
|
|
1182
|
+
```bash
|
|
1183
|
+
# Edit .grok/settings.json
|
|
1184
|
+
{
|
|
1185
|
+
"baseURL": "http://localhost:8000/v1", # Your local API server
|
|
1186
|
+
"model": "glm-4.6",
|
|
1187
|
+
"apiKey": "your-local-api-key" # Optional if your server requires it
|
|
1188
|
+
}
|
|
1189
|
+
```
|
|
1190
|
+
|
|
1191
|
+
**Benefits of Self-Hosted:**
|
|
1192
|
+
- 🏠 Complete data privacy - all processing stays local
|
|
1193
|
+
- 💰 No usage costs - run as much as you want
|
|
1194
|
+
- ⚡ Lower latency - no network round trips
|
|
1195
|
+
- 🔧 Full customization - fine-tune the model for your needs
|
|
1196
|
+
- 🔒 Enterprise security - meets corporate requirements
|
|
1197
|
+
|
|
1198
|
+
**Popular GLM 4.6 API Server Implementations:**
|
|
1199
|
+
- [vLLM](https://github.com/vllm-project/vllm) - Fast inference server
|
|
1200
|
+
- [Text Generation Inference](https://github.com/huggingface/text-generation-inference) - HuggingFace's solution
|
|
1201
|
+
- [Ollama](https://ollama.ai) - Easy local deployment
|
|
1202
|
+
- Custom FastAPI/Flask wrapper around GLM 4.6
|
|
1203
|
+
|
|
1204
|
+
**Example Docker Setup:**
|
|
1205
|
+
```bash
|
|
1206
|
+
# Run GLM 4.6 API server locally
|
|
1207
|
+
docker run -d \
|
|
1208
|
+
-p 8000:8000 \
|
|
1209
|
+
-v ~/.cache/huggingface:/root/.cache/huggingface \
|
|
1210
|
+
vllm/vllm-openai:latest \
|
|
1211
|
+
--model THUDM/glm-4-6 \
|
|
1212
|
+
--port 8000
|
|
1213
|
+
|
|
1214
|
+
# Configure AutomatosX to use it
|
|
1215
|
+
# Edit .grok/settings.json with baseURL: "http://localhost:8000/v1"
|
|
1216
|
+
```
|
|
1217
|
+
|
|
1218
|
+
**📄 License Note for Self-Hosted/Commercial Use:**
|
|
1219
|
+
|
|
1220
|
+
AutomatosX is licensed under Apache 2.0 for **non-commercial use**. For commercial use or to remove license restrictions:
|
|
1221
|
+
|
|
1222
|
+
- 💼 **Commercial License**: Visit https://license.defai.digital/automatosx
|
|
1223
|
+
- 📋 **Custom Terms**: Available for enterprise deployments
|
|
1224
|
+
- 🤝 **Volume Discounts**: Contact us for team/organization pricing
|
|
1225
|
+
|
|
1226
|
+
**See [GROK.md](GROK.md) for complete setup guide, including:**
|
|
1227
|
+
- Model comparison (grok-3-fast vs glm-4.6)
|
|
1228
|
+
- Environment variable configuration
|
|
1229
|
+
- Switching between endpoints
|
|
1230
|
+
- Troubleshooting guide
|
|
1231
|
+
- Cost optimization tips
|
|
1232
|
+
|
|
1135
1233
|
---
|
|
1136
1234
|
|
|
1137
1235
|
## 🗺️ Roadmap
|
|
@@ -1287,7 +1385,27 @@ npm run build
|
|
|
1287
1385
|
|
|
1288
1386
|
## 📄 License
|
|
1289
1387
|
|
|
1290
|
-
|
|
1388
|
+
AutomatosX is dual-licensed:
|
|
1389
|
+
|
|
1390
|
+
- **Apache License 2.0** - See [LICENSE](LICENSE) for code licensing
|
|
1391
|
+
- **Commercial License with OpenRAIL-M** - See [COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md) for commercial use and model restrictions
|
|
1392
|
+
|
|
1393
|
+
### TL;DR - When Do You Need a Commercial License?
|
|
1394
|
+
|
|
1395
|
+
**✅ FREE for**:
|
|
1396
|
+
- Research and academic use
|
|
1397
|
+
- Personal projects
|
|
1398
|
+
- Startups with < $2M revenue AND < $2M funding
|
|
1399
|
+
|
|
1400
|
+
**❌ Commercial License Required for**:
|
|
1401
|
+
- Companies with ≥ $2M annual revenue OR ≥ $2M total funding
|
|
1402
|
+
- Competitive products against DEFAI's offerings
|
|
1403
|
+
- SaaS or managed services built on AutomatosX
|
|
1404
|
+
- Commercial redistribution or embedding
|
|
1405
|
+
|
|
1406
|
+
**Learn more**: See [COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md) for full details.
|
|
1407
|
+
|
|
1408
|
+
**Get a commercial license**: https://license.defai.digital/automatox
|
|
1291
1409
|
|
|
1292
1410
|
Copyright 2025 DEFAI Private Limited
|
|
1293
1411
|
|