# OpenCLI Agent Pack: Azure CLI

Use this when an AI agent needs to work with `az`.

## What this CLI is for
The official CLI from Microsoft. Cloud ops, deployments, and resource groups from the terminal. Supports structured output — good for scripts and agents.

Best for: cloud ops, deployments, and resource groups from the terminal.

## Agent readiness
Great for agents (75/100)
- Structured output is available for parsing.
- Supports non-interactive/scripted use.
- Works well in CI or repeatable automation.

## Install
```sh
brew install azure-cli
```

## Verify before real work
```sh
az account show --output json
```
Expected signal: Shows the active Azure subscription as JSON.

## Safe starting commands
```sh
az account show --output json
```

```sh
az login && az account show
```

## Guardrails for agents
- Verify identity/account before running task commands.
- Network access is required; avoid leaking secrets in logs.
- Require confirmation before apply, delete, deploy, transfer, merge, or write actions.

## Suggested agent instruction
You may use Azure CLI (`az`) for cloud ops, deployments, and resource groups from the terminal.. First install it if missing, then run the verify command. Start with read-only or inspection commands. Summarize what you found before changing anything. Ask for confirmation before commands that mutate remote state, spend money, deploy, delete data, merge code, or expose secrets.

Source: OpenCLI
