@defai.digital/ax-cli 4.1.4 → 4.1.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.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -580,6 +580,27 @@ Email: **security@defai.digital** (private disclosure)
580
580
 
581
581
  ## Changelog
582
582
 
583
+ ### v4.1.6 - Enhanced Setup Wizards
584
+
585
+ - **GLM Setup Rework**: Dual-path setup supporting Z.AI Cloud and Local Server
586
+ - Z.AI Cloud path: API key → model selection → MCP integration
587
+ - Local Server path: Auto-detection of Ollama/LM Studio/vLLM/LocalAI → dynamic model fetching
588
+ - No API key required for local inference
589
+ - **Grok Setup Enhancement**: 5-step wizard with advanced configuration
590
+ - Model selection grouped by family (Grok 3 with thinking vs Grok 2 standard)
591
+ - Feature badges (🧠 Thinking, 👁️ Vision, 🔍 Search) with context window info
592
+ - Extended thinking mode configuration (off/low/high reasoning_effort)
593
+ - Live web search toggle
594
+ - API key validation with format checking (xai- prefix)
595
+ - **Unified ax-cli Setup**: Provider selection launches provider-specific setup flows
596
+ - Saves `selectedProvider` and `serverType` to config
597
+ - Auto-launches correct CLI (ax-glm or ax-grok) based on selection
598
+
599
+ ### v4.1.5 - Suppress dotenv Output
600
+
601
+ - **Fix**: Suppress dotenv v17+ output message (`[dotenv@17.x.x] injecting env...`)
602
+ - Added `{ quiet: true }` to dotenv.config() calls in cli-factory.ts and index.ts
603
+
583
604
  ### v4.1.4 - Provider-Aware Update Command
584
605
 
585
606
  - **Update Command**: `ax-glm update` and `ax-grok update` now check/update their own packages
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/ax-cli",
3
- "version": "4.1.4",
3
+ "version": "4.1.6",
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",