Installation

Choose your preferred package manager or runtime environment.

bash
$ npm install -g @aevum-zenth/cli
bash
$ pip install aevum-zenth-cli
bash
$ brew tap aevum-zenth/tools && brew install az-cli
bash
$ curl -fsSL https://dist.aevumzenth.io/install.sh | bash

Quick Start

Initialize your workspace and authenticate with your Aevum Zenth tenant.

bash — 80x24
user@host:~$ az auth login --tenant enterprise-global
✔ Authenticated successfully. Scope: admin:all
user@host:~$ az workspace init my-project
✔ Workspace initialized. Config saved to ~/.config/aevum/az/workspace.json
user@host:~$ az status
┌─────────────┬────────────┬──────────┐
│ Division │ Resources │ Status │
├─────────────┼────────────┼──────────┤
│ Energy │ 412 │ ● Active │
│ Digital │ 894 │ ● Active │
│ Aerospace │ 127 │ ● Active │
└─────────────┴────────────┴──────────┘
user@host:~$

Command Reference

Core commands for interacting with Aevum Zenth services.

az plugin install
Command Alias Description
az auth loginaz loginAuthenticate with SSO/API keys
az workspace initaz initCreate local project configuration
az deployaz dPush configuration/deployments to target
az queryaz qExecute GraphQL/REST queries against division APIs
az provisionaz provSpin up infrastructure/resources via IaC
az monitoraz monStream real-time telemetry & logs
az plg iInstall community or official extensions

Configuration

The CLI uses a hierarchical configuration system. Priority: CLI flags → Environment variables → Local config → Global config.

json
{
  "tenant": "enterprise-global",
  "default_division": "digital-systems",
  "output_format": "table",
  "telemetry": true,
  "api_endpoint": "https://api.aevumzenth.io/v2",
  "retry_policy": {
    "max_attempts": 3,
    "backoff_ms": 1000
  }
}

Environment Variables

AZ_TENANT_ID

Override default tenant without interactive login.

AZ_LOG_LEVEL

Set verbosity: silent, warn, info, debug.

AZ_API_KEY

Service account authentication for CI pipelines.

AZ_NO_COLOR

Disable ANSI colors for logging/streaming.

Plugin System

Extend the CLI with division-specific tools or custom automation scripts.

bash
$ az plugin install @aevumzenth/energy-monitor
$ az energy monitor --realtime --format jsonl

Troubleshooting

Need Help?

Join the Aevum Zenth Developer Community or contact enterprise support.

Dev Forum ↗ Support Email