$npx -y skills add microsoft/azure-skills --skill azure-reliabilityAssess and improve the reliability posture of PaaS Applications (Azure Functions and Azure App Service). Scans deployed resources for zone redundancy, ZRS storage, health probes, and multi-region failover. Presents a feature-pivoted checklist, then drives staged remediation (CLI
| 1 | # Azure Reliability Assessment & Configuration |
| 2 | |
| 3 | ## Quick Reference |
| 4 | |
| 5 | | Property | Details | |
| 6 | |---|---| |
| 7 | | Best for | Reliability posture assessment, zone redundancy enablement, multi-region failover setup | |
| 8 | | Primary capabilities | Reliability assessment table, Zone Redundancy Configuration, Multi-Region IaC Generation | |
| 9 | | Supported services | Azure Functions, App Service (Container Apps planned for a future version) | |
| 10 | | MCP tools | Azure Resource Graph queries, Azure CLI commands | |
| 11 | |
| 12 | ## When to Use This Skill |
| 13 | |
| 14 | Activate this skill when user wants to: |
| 15 | - "Assess my Function app's reliability" |
| 16 | - "Assess my Web app's reliability" |
| 17 | - "Check the reliability of my resource group" (App Service and Functions resources only) |
| 18 | - "Is my app zone redundant?" (App Service and Functions resources only) |
| 19 | - "Is my app service plan zone redundant?" |
| 20 | - "Make my app zone redundant" (App Service and Functions resources only) |
| 21 | - "Make my app service plan zone redundant" |
| 22 | - "Set up multi-region failover for my app" (App Service and Functions resources only) |
| 23 | - "Check my reliability posture" |
| 24 | - "Find single points of failure" (App Service and Functions resources only) |
| 25 | - "Enable high availability for my app" (App Service and Functions resources only) |
| 26 | - "Check disaster recovery readiness" |
| 27 | - "Improve my app's resilience" (App Service and Functions resources only) |
| 28 | |
| 29 | > **Scope note:** This skill currently covers **Azure Functions and Azure App Service** only. If the user asks about Azure Container Apps reliability, acknowledge that support is planned but not yet available, and only proceed with the parts that apply to App Service and Functions resources in scope. |
| 30 | |
| 31 | ## Prerequisites |
| 32 | |
| 33 | - Authentication: user is logged in to Azure via `az login` |
| 34 | - Permissions: Reader access on target subscription/resource group (for assessment) |
| 35 | - Permissions: Contributor access (for configuration changes) |
| 36 | - Azure Resource Graph extension: `az extension add --name resource-graph` |
| 37 | |
| 38 | ## MCP Tools |
| 39 | |
| 40 | | Tool | Purpose | |
| 41 | |------|---------| |
| 42 | | `mcp_azure_mcp_extension_cli_generate` | Generate `az` CLI commands for resource queries and configuration | |
| 43 | | `mcp_azure_mcp_subscription_list` | List available subscriptions | |
| 44 | | `mcp_azure_mcp_group_list` | List resource groups | |
| 45 | |
| 46 | Primary query method: Azure Resource Graph via `az graph query` (requires `az extension add --name resource-graph`). |
| 47 | |
| 48 | ## Assessment Workflow |
| 49 | |
| 50 | ### Phase 1: Discover Resources |
| 51 | |
| 52 | 1. **Identify scope** — Ask user for resource group, subscription, or app name |
| 53 | 2. **Query Azure Resource Graph** to discover all resources in scope |
| 54 | 3. **Classify resources** by service type (Functions, Storage, etc.). If non-Functions compute (App Service sites that aren't Function Apps, Container Apps) is found, **note it but do not deep-dive** — those services are planned for a future version of this skill. |
| 55 | |
| 56 | **Important:** Always scope queries to the user's specified resource group or subscription. Add these filters to every Resource Graph query: |
| 57 | - Resource group: `| where resourceGroup =~ '<rg-name>'` |
| 58 | - Subscription: Use `--subscriptions <sub-id>` flag on `az graph query` |
| 59 | - App name: `| where name =~ '<app-name>'` |
| 60 | |
| 61 | ### Phase 2: Assess Reliability |
| 62 | |
| 63 | Two-step assessment: **platform-level discovery first, then per-service deep dive.** |
| 64 | |
| 65 | **Step 1 — Platform discovery (find what's there).** Use these to enumerate resources in scope and detect cross-cutting reliability gaps: |
| 66 | |
| 67 | | Platform check | Reference | |
| 68 | |---|---| |
| 69 | | Zone redundancy — discovery | [references/zone-redundancy-checks.md](references/zone-redundancy-checks.md) | |
| 70 | | Storage redundancy (cross-service) | [references/storage-redundancy-checks.md](references/storage-redundancy-checks.md) | |
| 71 | | Multi-region & global load balancers | [references/multi-region-checks.md](references/multi-region-checks.md) | |
| 72 | | Front Door / Traffic Manager / App Insights probes | [references/health-probe-checks.md](references/health-probe-checks.md) | |
| 73 | |
| 74 | **Step 2 — Per-service deep dive.** For each compute resource discovered in Step 1, load the matching service reference. The service reference is the single source of truth for that service's plan/SKU rules, assessment queries, CLI commands, IaC patches (Bicep + Terraform + AVM), and reporting hints. |
| 75 | |
| 76 | This skill version ships **only the Azure Functions and App Service** per-service references. Other compute services are |