.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/azure-skills/azure-deploy
home/skills/microsoft/azure-skills/azure-deploy
microsoft avatar

azure-deploy

bymicrosoft· 555 skills

Installs

485k

Stars

1.3k

Forks

219

Category

DevOps & CI/CD

View on GitHub

TL;DR

Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deployment-plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application — use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/deployment-plan.md from azure-prepare and validated status from azure-validate. WHEN: \"run azd up\", \"run azd deploy\", \"execute deployment\", \"push to production\", \"push to cloud\", \"go live\", \"ship it\", \"bicep deploy\", \"terraform apply\", \"publish to Azure\", \"launch on Azure\". DO NOT USE WHEN: \"create and deploy\", \"build and deploy\", \"create a new app\", \"set up infrastructure\", \"create and deploy to Azure using Terraform\" — use azure-prepare for these.

How to install azure-deploy?

microsoft/azure-skills/azure-deploy
$npx -y skills add microsoft/azure-skills --skill azure-deploy

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/microsoft/azure-skills" --skill "microsoft/azure-skills/azure-deploy"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/microsoft/azure-skills" that are relevant to the current task. Run `npx skills add "https://github.com/microsoft/azure-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Azure Deploy
2 
3> **AUTHORITATIVE GUIDANCE — MANDATORY COMPLIANCE**
4>
5> **PREREQUISITE**: The **azure-validate** skill **MUST** be invoked and completed with status `Validated` BEFORE executing this skill.
6 
7> **⛔ STOP — PREREQUISITE CHECK REQUIRED**
8> Before proceeding, verify BOTH prerequisites are met:
9>
10> 1. **azure-prepare** was invoked and completed → `.azure/deployment-plan.md` exists
11> 2. **azure-validate** was invoked and passed → plan status = `Validated`
12>
13> If EITHER is missing, **STOP IMMEDIATELY**:
14> - No plan? → Invoke **azure-prepare** skill first
15> - Status not `Validated`? → Invoke **azure-validate** skill first
16>
17> **⛔ DO NOT MANUALLY UPDATE THE PLAN STATUS**
18>
19> You are **FORBIDDEN** from changing the plan status to `Validated` yourself. Only the **azure-validate** skill is authorized to set this status after running actual validation checks. If you update the status without running validation, deployments will fail.
20>
21> **DO NOT ASSUME** the app is ready. **DO NOT SKIP** validation to save time. Skipping steps causes deployment failures. The complete workflow ensures success:
22>
23> `azure-prepare` → `azure-validate` → `azure-deploy`
24 
25## Triggers
26 
27Activate this skill when user wants to:
28- Execute deployment of an already-prepared application (azure.yaml and infra/ exist)
29- Push updates to an existing Azure deployment
30- Run `azd up`, `azd deploy`, or `az deployment` on a prepared project
31- Ship already-built code to production
32- Deploy an application that already includes API Management (APIM) gateway infrastructure
33 
34> **Scope**: This skill executes deployments. It does not create applications, generate infrastructure code, or scaffold projects. For those tasks, use **azure-prepare**.
35 
36> **APIM / AI Gateway**: Use this skill to deploy applications whose APIM/AI gateway infrastructure was already created during **azure-prepare**. For creating or changing APIM resources, see [APIM deployment guide](https://learn.microsoft.com/azure/api-management/get-started-create-service-instance). For AI governance policies, invoke **azure-aigateway** skill.
37 
38## Rules
39 
401. Run after azure-prepare and azure-validate
412. `.azure/deployment-plan.md` must exist with status `Validated`
423. **Pre-deploy checklist required** — [Pre-Deploy Checklist](references/pre-deploy-checklist.md)
434. ⛔ **Destructive actions require `ask_user`** — [global-rules](references/global-rules.md)
445. **Scope: deployment execution only** — This skill owns execution of `azd up`, `azd deploy`, `terraform apply`, and `az deployment` commands. These commands are run through this skill's error recovery and verification pipeline.
45 
46---
47 
48## Steps
49 
50| # | Action | Reference |
51|---|--------|-----------|
52| 1 | **Check Plan** — Read `.azure/deployment-plan.md`, verify status = `Validated` AND **Validation Proof** section is populated | `.azure/deployment-plan.md` |
53| 2 | **Pre-Deploy Checklist** — MUST complete ALL steps | [Pre-Deploy Checklist](references/pre-deploy-checklist.md) |
54| 3 | **Load Recipe** — Based on `recipe.type` in `.azure/deployment-plan.md` | [recipes/README.md](references/recipes/README.md) |
55| 4 | **RBAC Health Check** — For Container Apps + ACR with managed identity: run `azd provision --no-prompt`, then verify `AcrPull` role has propagated before proceeding (see checklist) | [Pre-Deploy Checklist — Container Apps RBAC](references/pre-deploy-checklist.md#container-apps--acr--pre-deploy-rbac-health-check) |
56| 5 | **Execute Deploy** — Follow recipe steps | Recipe README |
57| 6 | **Post-Deploy** — Configure SQL managed identity and apply EF migrations if applicable | [Post-Deployment](references/recipes/azd/post-deployment.md) |
58| 7 | **Handle Errors** — See recipe's `errors.md` | — |
59| 8 | **Verify Success** — Confirm deployment completed and endpoints are accessible | [Verification](references/recipes/azd/verify.md) |
60| 9 | **Live Role Verification** — Query Azure to confirm provisioned RBAC roles are correct and sufficient | [live-role-verification.md](references/live-role-verification.md) |
61| 10 | **Report Results** — Present deployed endpoint URLs to the user as fully-qualified `https://` links | [Verification](references/recipes/azd/verify.md) |
62 
63> **⛔ URL FORMAT RULE**
64>
65> When presenting endpoint URLs to the user, you **MUST** always use fully-qualified URLs with the `https://` scheme (e.g. `https://myapp.azurewebsites.net`, not `myapp.azurewebsites.net`). Many Azure CLI commands return bare hostnames without a scheme — always prepend `https://` before presenting them.
66 
67> **⛔ VALIDATION PROOF CHECK**
68>
69> When checking the plan, verify the **Validation Proof** section (Section 7) contains actual validation results with commands run and timestamps. If this section is empty, validation was bypassed — invoke **azure-validate** skill first.
70 
71## SDK Quick References
72 
73- **Azure Developer CLI**: [azd](references/sdk/azd-deployment.md)
74- **Azure Identity**: [Python](references/sdk/azure-identity-py.md) | [.NET](references/sdk/azure-identity-dotnet.md) | [TypeScript](references/sdk/azure-identity-ts.md) | [Java](references/sdk/azure-identity-java.md)
75 
76## MCP Tools
77 
78| Tool | Purpose |
79|------|---------|
80| `mcp_azure_mcp_subscription_list` | List available subscriptions |
81| `mcp_azure_mcp_group_list` | List resource groups in subscription |
82| `mcp_azure_mcp_azd` | Execute AZD commands |
83| `azure__role` | List role assignments for live RBAC verification (step 9) |
84 
85## References
86 
87- [Troubleshooting](references/troubleshooting.md) - Common issues and solutions
88- [Post-Deployment Steps](references/recipes/azd/post-deployment.md) - SQL + EF Core setup

Security

Passed

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykpass
  • ZeroLeakspass

Preview

microsoft/azure-skillsmicrosoft/azure-skills

$ npx -y skills add microsoft/azure-skills --skill azure-deploy

▸ installing to .claude/skills…

✓ azure-deploy ready

Repomicrosoft/azure-skills
TypeSkills
CategoryDevOps & CI/CD
ForOpsDeveloper
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarsetup-matt-pocock-skillsConfigure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout.SkillsJul 2026495k189k
  2. microsoft avatarmicrosoft-foundryDeploy, evaluate, fine-tune, and manage Foundry agents end-to-end with azd: hosted agent scaffold/run/deploy, prompt agent create, batch eval, continuous eval,…SkillsJul 2026490k1.3k
  3. microsoft avatarazure-preparePrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Terraform), and Dockerfiles for the Azure Developer CLI (azd)…SkillsJul 2026485k1.3k
  4. microsoft avatarazure-validatePre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), RBAC role assignments, managed identity…SkillsJul 2026484k1.3k
  5. microsoft avatarazure-aigatewayConfigure Azure API Management as an AI Gateway for AI models, MCP tools, and agents.SkillsJul 2026484k1.3k
  6. microsoft avatarazure-cloud-migrateAssess and migrate cross-cloud workloads to Azure with reports and code conversion.SkillsJul 2026417k1.3k