What problem does it solve?
This Skill automates the management of Microsoft Azure Storage services (Blob, File Shares, Queue, Table, and Data Lake) through the Azure CLI, eliminating repetitive manual tasks and reducing operational overhead.
Core Features & Use Cases
- Unified storage control across Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake using the az storage family of commands.
- Operational workflows: list storage accounts, list containers, list blobs, download/upload blobs and files, and manage storage resources from scripts.
- Use Case: A developer can automate nightly backups by listing accounts, enumerating containers, and uploading backup files to a target container with a single script.
Quick Start
Use the Azure CLI to explore and manage storage:
az login
az storage account list --output table
az storage container list --account-name ACCOUNT --output table
az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH