@defai.digital/ax-cli 4.1.5 → 4.1.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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -580,6 +580,29 @@ Email: **security@defai.digital** (private disclosure)
580
580
 
581
581
  ## Changelog
582
582
 
583
+ ### v4.1.7 - Fix workspace:* dependency resolution
584
+
585
+ - **Fix**: Resolve `workspace:*` protocol to actual versions before npm publish
586
+ - ax-glm and ax-grok now correctly depend on `^4.1.7` instead of `workspace:*`
587
+ - ax-core now correctly depends on `@defai.digital/ax-schemas@^4.1.7`
588
+ - All features from v4.1.6 included
589
+
590
+ ### v4.1.6 - Enhanced Setup Wizards
591
+
592
+ - **GLM Setup Rework**: Dual-path setup supporting Z.AI Cloud and Local Server
593
+ - Z.AI Cloud path: API key → model selection → MCP integration
594
+ - Local Server path: Auto-detection of Ollama/LM Studio/vLLM/LocalAI → dynamic model fetching
595
+ - No API key required for local inference
596
+ - **Grok Setup Enhancement**: 5-step wizard with advanced configuration
597
+ - Model selection grouped by family (Grok 3 with thinking vs Grok 2 standard)
598
+ - Feature badges (🧠 Thinking, 👁️ Vision, 🔍 Search) with context window info
599
+ - Extended thinking mode configuration (off/low/high reasoning_effort)
600
+ - Live web search toggle
601
+ - API key validation with format checking (xai- prefix)
602
+ - **Unified ax-cli Setup**: Provider selection launches provider-specific setup flows
603
+ - Saves `selectedProvider` and `serverType` to config
604
+ - Auto-launches correct CLI (ax-glm or ax-grok) based on selection
605
+
583
606
  ### v4.1.5 - Suppress dotenv Output
584
607
 
585
608
  - **Fix**: Suppress dotenv v17+ output message (`[dotenv@17.x.x] injecting env...`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/ax-cli",
3
- "version": "4.1.5",
3
+ "version": "4.1.7",
4
4
  "sdkVersion": "1.3.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",