@defai.digital/ax-cli 4.1.3 → 4.1.5

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 +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -580,6 +580,21 @@ Email: **security@defai.digital** (private disclosure)
580
580
 
581
581
  ## Changelog
582
582
 
583
+ ### v4.1.5 - Suppress dotenv Output
584
+
585
+ - **Fix**: Suppress dotenv v17+ output message (`[dotenv@17.x.x] injecting env...`)
586
+ - Added `{ quiet: true }` to dotenv.config() calls in cli-factory.ts and index.ts
587
+
588
+ ### v4.1.4 - Provider-Aware Update Command
589
+
590
+ - **Update Command**: `ax-glm update` and `ax-grok update` now check/update their own packages
591
+ - `ax-glm update` checks `@defai.digital/ax-glm` (not ax-cli)
592
+ - `ax-grok update` checks `@defai.digital/ax-grok` (not ax-cli)
593
+ - **API Key Encryption**: Verified AES-256-GCM encryption working for all CLIs
594
+ - API keys stored as `apiKeyEncrypted` with IV, salt, and auth tag
595
+ - PBKDF2 with 600,000 iterations for key derivation
596
+ - Machine-specific encryption tied to hostname/platform/arch
597
+
583
598
  ### v4.1.3 - Provider-Aware SDK
584
599
 
585
600
  - **Provider-Aware SDK**: New SDK functions for provider-specific agent creation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/ax-cli",
3
- "version": "4.1.3",
3
+ "version": "4.1.5",
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",