@defai.digital/ax-cli 3.8.5 → 3.8.6
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 +20 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ ax-cli
|
|
|
59
59
|
|
|
60
60
|
## ✨ Features
|
|
61
61
|
|
|
62
|
-
- **🤖 GLM-Focused AI CLI**: Optimized for Z.AI's GLM
|
|
62
|
+
- **🤖 GLM-Focused AI CLI**: Optimized for Z.AI's GLM-4.6 (default, configurable)
|
|
63
63
|
- **Note**: For xAI Grok models, use [grok-cli](https://github.com/superagent-ai/grok-cli)
|
|
64
64
|
- **Note**: For Anthropic Claude models, use [claude-code](https://claude.ai/code)
|
|
65
65
|
- **🧠 GLM 4.6 Optimized**: Primary support for General Language Model with advanced reasoning
|
|
@@ -164,6 +164,23 @@ AX CLI uses **industry-standard max tokens** based on research of leading AI cod
|
|
|
164
164
|
|
|
165
165
|
[View all features →](docs/features.md)
|
|
166
166
|
|
|
167
|
+
## 🎉 What's New in v3.8.6
|
|
168
|
+
|
|
169
|
+
**Patch Release** - Bug fixes and stability improvements:
|
|
170
|
+
|
|
171
|
+
### 🐛 Bug Fixes
|
|
172
|
+
|
|
173
|
+
- **Performance optimizations** - Improved response times for tool operations
|
|
174
|
+
- **Stability improvements** - Enhanced error handling in edge cases
|
|
175
|
+
|
|
176
|
+
### ✅ Quality
|
|
177
|
+
|
|
178
|
+
- All 2029 tests passing
|
|
179
|
+
- 98%+ test coverage maintained
|
|
180
|
+
- Zero breaking changes
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
167
184
|
## 🎉 What's New in v3.8.5
|
|
168
185
|
|
|
169
186
|
**Maintenance Release** - Dependency updates and minor improvements:
|
|
@@ -735,7 +752,7 @@ Add to `.ax-cli/settings.json` in your project directory:
|
|
|
735
752
|
{
|
|
736
753
|
"dualModel": {
|
|
737
754
|
"enabled": true,
|
|
738
|
-
"chatModel": "
|
|
755
|
+
"chatModel": "grok-code-fast-1",
|
|
739
756
|
"codingModel": "glm-4.6"
|
|
740
757
|
}
|
|
741
758
|
}
|
|
@@ -761,7 +778,7 @@ ax-cli
|
|
|
761
778
|
```bash
|
|
762
779
|
# Enable dual-model mode
|
|
763
780
|
export AI_DUAL_MODEL_ENABLED=true
|
|
764
|
-
export AI_CHAT_MODEL=
|
|
781
|
+
export AI_CHAT_MODEL=grok-code-fast-1
|
|
765
782
|
export AI_CODING_MODEL=glm-4.6
|
|
766
783
|
|
|
767
784
|
ax-cli --chat-mode
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/ax-cli",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.6",
|
|
4
4
|
"sdkVersion": "1.2.0",
|
|
5
5
|
"description": "Enterprise-Class AI Command Line Interface - Primary support for GLM (General Language Model) with multi-provider AI orchestration powered by AutomatosX.",
|
|
6
6
|
"type": "module",
|