ワンクリックで
az
// Azure CLI - manage VMs, web apps, functions, storage, AKS, and other Azure services. Use when user mentions 'az', 'azure', or wants to interact with Microsoft Azure.
// Azure CLI - manage VMs, web apps, functions, storage, AKS, and other Azure services. Use when user mentions 'az', 'azure', or wants to interact with Microsoft Azure.
1Password CLI - manage secrets, vaults, items, inject credentials into commands. Use when user mentions '1password', 'op', 'secrets management', or wants to manage passwords and secrets via CLI.
AWS CLI - manage S3, EC2, Lambda, IAM, CloudFormation and other AWS services. Use when user mentions 'aws', 'amazon web services', 's3', 'ec2', 'lambda', or wants to interact with AWS.
Clerk authentication CLI - set up auth, pull environment variables. Use when user mentions 'clerk', 'clerk auth', or wants to configure Clerk authentication.
Container platform CLI - build images, run containers, manage compose stacks, volumes, networks. Use when user mentions 'docker', 'container', 'docker compose', or wants to manage containers.
Drizzle ORM toolkit CLI - generate migrations, push schema, introspect databases, run studio. Use when user mentions 'drizzle', 'drizzle-kit', or wants to manage database schema with Drizzle ORM.
Figma Code Connect CLI - connect design components to code, publish connections, parse Figma files. Use when user mentions 'figma', 'code connect', 'figma cli', or wants to link Figma designs to code.
| name | az |
| description | Azure CLI - manage VMs, web apps, functions, storage, AKS, and other Azure services. Use when user mentions 'az', 'azure', or wants to interact with Microsoft Azure. |
| category | devtools |
| install_command | brew install azure-cli |
| binary | az |
brew install azure-cli
Verify installation:
az --version
Use -o json for machine-readable output.
az login
| Command | Description |
|---|---|
az account show | Show current subscription details |
az account list | List all subscriptions |
az account set --subscription <id> | Switch active subscription |
| Command | Description |
|---|---|
az group list | List all resource groups |
az group create --name <name> --location eastus | Create a resource group |
az group delete --name <name> | Delete a resource group |
az group show --name <name> | Show resource group details |
| Command | Description |
|---|---|
az vm list | List all VMs |
az vm list -d | List VMs with details (IPs, power state) |
az vm create --resource-group <rg> --name <name> --image Ubuntu2204 | Create a VM |
az vm start --resource-group <rg> --name <name> | Start a VM |
az vm stop --resource-group <rg> --name <name> | Stop a VM |
az vm delete --resource-group <rg> --name <name> | Delete a VM |
az vm show --resource-group <rg> --name <name> | Show VM details |
| Command | Description |
|---|---|
az webapp list | List all web apps |
az webapp create --resource-group <rg> --plan <plan> --name <name> --runtime "NODE:20-lts" | Create a web app |
az webapp deploy --resource-group <rg> --name <name> --src-path <file> | Deploy to a web app |
az webapp show --resource-group <rg> --name <name> | Show web app details |
az webapp log tail --resource-group <rg> --name <name> | Tail web app logs |
az webapp delete --resource-group <rg> --name <name> | Delete a web app |
| Command | Description |
|---|---|
az functionapp list | List all function apps |
az functionapp create --resource-group <rg> --consumption-plan-location eastus --runtime node --name <name> --storage-account <sa> | Create a function app |
az functionapp show --resource-group <rg> --name <name> | Show function app details |
az functionapp delete --resource-group <rg> --name <name> | Delete a function app |
| Command | Description |
|---|---|
az storage account list | List all storage accounts |
az storage account create --name <name> --resource-group <rg> --sku Standard_LRS | Create a storage account |
az storage container list --account-name <name> | List blob containers |
az storage blob upload --account-name <name> --container-name <c> --file <file> --name <blob> | Upload a blob |
| Command | Description |
|---|---|
az aks list | List all AKS clusters |
az aks create --resource-group <rg> --name <name> --node-count 3 | Create an AKS cluster |
az aks get-credentials --resource-group <rg> --name <name> | Get cluster credentials for kubectl |
az aks show --resource-group <rg> --name <name> | Show cluster details |
az aks delete --resource-group <rg> --name <name> | Delete an AKS cluster |
| Flag | Description |
|---|---|
-o json | Output as JSON |
-o table | Output as table |
-o tsv | Output as tab-separated values |
--query <expression> | JMESPath query for filtering output |
--subscription <id> | Override active subscription |
--verbose | Enable verbose output |
--debug | Enable debug output |