Agent skill · DevOps & Cloud

azure-container-registry-cli

Manage Azure Container Registry via the az acr CLI including registries, images, cloud builds, ACR Tasks, authentication, tokens, geo-replication, and networking. Use when working with ACR, az acr commands, pushing/importing/purging container images in Azure, or when the user mentions Azure Container Registry.

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotMIT
Install
npx skills add github/awesome-copilot --skill azure-container-registry-cli --agent copilot

Same command for any agent — swap --agent for claude-code, codex, cursor.

Facts
Files in the skill folder: 5
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/azure-container-registry-cli/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Azure Container Registry CLI Manage Azure Container Registry (ACR) resources using the `az acr` command group of the Azure CLI. **CLI:** `az acr` ships with core Azure CLI — no extension required (the `acrtransfer` extension is only needed for export/import pipelines). ## Prerequisites ```bash # Install Azure CLI brew install azure-cli # macOS curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash # Linux winget install Microsoft.AzureCLI # Windows # Sign in and select subscription az login az account set --subscription {subscription-id} ``` ## Quick Start ```bash # Create a registry (SKU: Basic | Standard | Premium) az acr create --resource-group {rg} --name {registry} --sku Standard # Authenticate Docker/Podman against the registry az acr login --name {registry} # Build and push in the cloud — no local Docker needed az acr build --registry {registry} --image app:v1 . # Copy an image from another registry without pull/push az acr import --name {registry} --source mcr.microsoft.com/hello-world:latest # List repositories and tags az acr repository list --name {registry} --output table az acr repository show-tags --name {registry} --repository app --orderby time_desc # Diagnose reg

What's inside
Steps it walks through
  1. Prerequisites
  2. Quick Start
  3. Key Principles
  4. CLI Structure
  5. Reference Files
Ships with 4 files
  • references/auth-and-security.md
  • references/build-and-tasks.md
  • references/images-and-artifacts.md
  • references/networking-and-geo.md
Commands it runs
Install Azure CLI
brew install azure-cli  # macOS
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash  # Linux
winget install Microsoft.AzureCLI  # Windows
Sign in and select subscription
az login
az account set --subscription {subscription-id}
Create a registry (SKU: Basic | Standard | Premium)
az acr create --resource-group {rg} --name {registry} --sku Standard
Authenticate Docker/Podman against the registry
More from awesome-copilot
All skills →
About this skill
What does the azure-container-registry-cli skill do?

Manage Azure Container Registry via the az acr CLI including registries, images, cloud builds, ACR Tasks, authentication, tokens, geo-replication, and networking. Use when working with ACR, az acr commands, pushing/importing/purging container images in Azure, or when the user mentions Azure Container Registry.

How do I install it?

Run `npx skills add github/awesome-copilot --skill azure-container-registry-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going