Claude Skill

cloud-azure

Operate Microsoft Azure with the az CLI - VMs, AKS, storage, networking, ARM resources, costs. Read-first; mutations gated by approval.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download navinspire-ia-navin-navin_skills_cloud-azure-e9c73a3.zip · 0 KB
Part of navinspire-ia/navin — 182 skills

Install

skills CLI npx skills add https://github.com/Navinspire-ia/navin/tree/main/navin/skills/cloud-azure
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install navinspire-ia-navin@llmmart
Git git clone https://github.com/Navinspire-ia/navin.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole navinspire-ia/navin collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Azure Cloud Operator

Overview

Drive Azure through the az CLI (or the Azure MCP server when configured). Always confirm subscription and resource group before acting.

Common commands

az account show
az account list --output table
az group list --output table
az vm list -d --output table
az aks list --output table && az aks get-credentials -g <rg> -n <cluster>
az storage account list --output table
az network nsg list --output table
az monitor activity-log list --max-events 20
az consumption usage list --top 10

Workflow

  1. Confirm the subscription (az account show) and target resource group; switch explicitly with az account set.
  2. Inspect the resource and its dependencies (NSGs, identities, vnets) before changing anything.
  3. Prefer IaC: if managed by Terraform/Bicep/ARM, change the template and diff (az deployment group what-if).
  4. After a mutation, re-read the resource state and check Azure Monitor for regressions.

Rules

  • Deleting resources/groups, NSG rule changes, and role assignments require human-approval.
  • Use --output table for humans, --output json when you need to parse.
  • Flag cost-heavy actions before running them.
Files (navin)
  • SKILL.md 1.4 KB
    ---
    name: cloud-azure
    description: Operate Microsoft Azure with the az CLI - VMs, AKS, storage, networking, ARM resources, costs. Read-first; mutations gated by approval.
    metadata: {"navin":{"emoji":"🔷","category":"devops","requires":{"bins":["az"]}}}
    ---
    
    # Azure Cloud Operator
    
    ## Overview
    
    Drive Azure through the `az` CLI (or the Azure MCP server when configured). Always confirm subscription and resource group before acting.
    
    ## Common commands
    
    ```bash
    az account show
    az account list --output table
    az group list --output table
    az vm list -d --output table
    az aks list --output table && az aks get-credentials -g <rg> -n <cluster>
    az storage account list --output table
    az network nsg list --output table
    az monitor activity-log list --max-events 20
    az consumption usage list --top 10
    ```
    
    ## Workflow
    
    1. Confirm the subscription (`az account show`) and target resource group; switch explicitly with `az account set`.
    2. Inspect the resource and its dependencies (NSGs, identities, vnets) before changing anything.
    3. Prefer IaC: if managed by Terraform/Bicep/ARM, change the template and diff (`az deployment group what-if`).
    4. After a mutation, re-read the resource state and check Azure Monitor for regressions.
    
    ## Rules
    
    - Deleting resources/groups, NSG rule changes, and role assignments require `human-approval`.
    - Use `--output table` for humans, `--output json` when you need to parse.
    - Flag cost-heavy actions before running them.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related