en un clic
azure
Microsoft Azure management with native az CLI integration
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Microsoft Azure management with native az CLI integration
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| name | azure |
| description | Microsoft Azure management with native az CLI integration |
| allowed-tools | Bash |
Comprehensive Microsoft Azure management using the native az CLI.
This skill provides AI agents with full access to Microsoft Azure resources through the az CLI. Manage virtual machines, storage accounts, SQL databases, AKS clusters, and more.
az)az login or service principalaz account set --subscription SUBSCRIPTION_IDSet your default subscription and resource group:
skill config azure --set subscription=YOUR_SUBSCRIPTION_ID --set resource_group=my-resource-group
Or use environment variables:
export AZURE_SUBSCRIPTION_ID=your-subscription-id
export AZURE_DEFAULTS_GROUP=my-resource-group
List Azure Virtual Machines.
Parameters:
resource_group (optional, string): Filter by resource groupshow_details (optional, boolean): Include detailed info (default: false)Examples:
skill run azure vm-list
skill run azure vm-list --resource_group production
skill run azure vm-list --show_details
Start a stopped virtual machine.
Parameters:
name (required, string): VM nameresource_group (required, string): Resource groupExamples:
skill run azure vm-start --name web-vm-01 --resource_group production
Stop (deallocate) a virtual machine.
Parameters:
name (required, string): VM nameresource_group (required, string): Resource groupExamples:
skill run azure vm-stop --name web-vm-01 --resource_group production
Restart a virtual machine.
Parameters:
name (required, string): VM nameresource_group (required, string): Resource groupExamples:
skill run azure vm-restart --name web-vm-01 --resource_group production
Run a command on a VM.
Parameters:
name (required, string): VM nameresource_group (required, string): Resource groupcommand (required, string): Shell command to runExamples:
skill run azure vm-run-command --name web-vm-01 --resource_group production --command "systemctl status nginx"
List storage accounts.
Parameters:
resource_group (optional, string): Filter by resource groupExamples:
skill run azure storage-list
skill run azure storage-list --resource_group production
List blobs in a container.
Parameters:
account (required, string): Storage account namecontainer (required, string): Container nameprefix (optional, string): Blob prefix filterExamples:
skill run azure storage-blob-list --account mystorageaccount --container backups
skill run azure storage-blob-list --account mystorageaccount --container logs --prefix "2025/01/"
Upload a blob to storage.
Parameters:
account (required, string): Storage account namecontainer (required, string): Container namesource (required, string): Local file pathname (optional, string): Blob name (default: filename)Examples:
skill run azure storage-blob-upload --account mystorageaccount --container backups --source ./backup.tar.gz
skill run azure storage-blob-upload --account mystorageaccount --container backups --source ./backup.tar.gz --name "db-backup-2025-01-14.tar.gz"
Download a blob from storage.
Parameters:
account (required, string): Storage account namecontainer (required, string): Container namename (required, string): Blob namedestination (required, string): Local file pathExamples:
skill run azure storage-blob-download --account mystorageaccount --container backups --name backup.tar.gz --destination ./local-backup.tar.gz
List Azure SQL servers.
Parameters:
resource_group (optional, string): Filter by resource groupExamples:
skill run azure sql-list
skill run azure sql-list --resource_group production
List databases on a SQL server.
Parameters:
server (required, string): SQL server nameresource_group (required, string): Resource groupExamples:
skill run azure sql-db-list --server my-sql-server --resource_group production
List Azure Kubernetes Service clusters.
Parameters:
resource_group (optional, string): Filter by resource groupExamples:
skill run azure aks-list
skill run azure aks-list --resource_group kubernetes
Get credentials for an AKS cluster (updates kubeconfig).
Parameters:
name (required, string): Cluster nameresource_group (required, string): Resource groupadmin (optional, boolean): Get admin credentialsExamples:
skill run azure aks-credentials --name prod-cluster --resource_group kubernetes
skill run azure aks-credentials --name prod-cluster --resource_group kubernetes --admin
List all resources in a subscription or resource group.
Parameters:
resource_group (optional, string): Filter by resource grouptype (optional, string): Filter by resource type (e.g., Microsoft.Compute/virtualMachines)Examples:
skill run azure resource-list
skill run azure resource-list --resource_group production
skill run azure resource-list --type "Microsoft.Compute/virtualMachines"
List resource groups.
Examples:
skill run azure resource-group-list
Query Azure Monitor metrics.
Parameters:
resource (required, string): Resource IDmetric (required, string): Metric nameinterval (optional, string): Time interval (default: PT1H)aggregation (optional, string): Aggregation: Average, Total, Count, Minimum, MaximumExamples:
skill run azure monitor-metrics --resource "/subscriptions/.../virtualMachines/web-vm-01" --metric "Percentage CPU" --aggregation Average
ERROR: Please run 'az login' to setup account.
Solution: Run az login or authenticate with service principal
ERROR: No subscription found.
Solution: Run az account set --subscription YOUR_SUBSCRIPTION_ID
ERROR: AuthorizationFailed
Solution: Verify the user/service principal has required RBAC roles
Docker container and image management with native docker CLI integration. Use when you need to manage containers, images, networks, volumes, or run Docker Compose.
Video and audio processing using FFmpeg inside a secure Docker container
Image manipulation and conversion using ImageMagick inside a secure Docker container
MongoDB database client with Docker-based mongosh CLI
MySQL database client with Docker-based mysql CLI
PostgreSQL CLI client (psql) for database operations running inside a Docker container