@defai.digital/ax-cli 4.1.2 → 4.1.4
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 +21 -0
- 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.4 - Provider-Aware Update Command
|
|
584
|
+
|
|
585
|
+
- **Update Command**: `ax-glm update` and `ax-grok update` now check/update their own packages
|
|
586
|
+
- `ax-glm update` checks `@defai.digital/ax-glm` (not ax-cli)
|
|
587
|
+
- `ax-grok update` checks `@defai.digital/ax-grok` (not ax-cli)
|
|
588
|
+
- **API Key Encryption**: Verified AES-256-GCM encryption working for all CLIs
|
|
589
|
+
- API keys stored as `apiKeyEncrypted` with IV, salt, and auth tag
|
|
590
|
+
- PBKDF2 with 600,000 iterations for key derivation
|
|
591
|
+
- Machine-specific encryption tied to hostname/platform/arch
|
|
592
|
+
|
|
593
|
+
### v4.1.3 - Provider-Aware SDK
|
|
594
|
+
|
|
595
|
+
- **Provider-Aware SDK**: New SDK functions for provider-specific agent creation
|
|
596
|
+
- `createGLMAgent()` - Create GLM-optimized agents with thinking mode support
|
|
597
|
+
- `createGrokAgent()` - Create Grok-optimized agents with reasoning_effort support
|
|
598
|
+
- `createProviderAgent()` - Generic provider-aware agent factory
|
|
599
|
+
- **SDK Exports**: ax-glm and ax-grok packages now export SDK at `@defai.digital/ax-glm/sdk` and `@defai.digital/ax-grok/sdk`
|
|
600
|
+
- **Provider Definitions**: Export GLM_PROVIDER, GROK_PROVIDER, and helper functions
|
|
601
|
+
- **Error Messages**: Provider-aware error messages reference the correct CLI name (ax-glm, ax-grok)
|
|
602
|
+
- **Doctor Command**: Verified working for all CLIs (ax-cli, ax-glm, ax-grok)
|
|
603
|
+
|
|
583
604
|
### v4.1.2 - Setup Improvements for Provider-Specific CLIs
|
|
584
605
|
|
|
585
606
|
- **ax-glm Setup**: Added server selection (Z.AI Cloud or Local/Custom server support)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/ax-cli",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
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",
|