[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-capacityplanning":3,"mdc-qf1gte-key":36,"related-org-azure-capacityplanning":782,"related-repo-azure-capacityplanning":962},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"capacityplanning","capacity_planning","assess Azure resource capacity and scaling","Assess Azure resource capacity, quota utilization, and growth trends to prevent outages from resource exhaustion. Use when asked about capacity, quotas, scaling readiness, load testing prep, or growth projections.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"azure","Azure (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fazure.png","Azure",[14,18,21,22],{"name":15,"slug":16,"type":17},"Performance","performance","tag",{"name":19,"slug":20,"type":17},"Operations","operations",{"name":12,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"Capacity Planning","capacity-planning",2,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fsre-agent-plugins","2026-08-23T04:00:12.510248",null,8,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Azure SRE Agent Plugins","https:\u002F\u002Fgithub.com\u002FAzure\u002Fsre-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fazure-proactive-operations\u002Fskills\u002Fcapacity_planning","---\nname: capacity_planning\ndescription: Assess Azure resource capacity, quota utilization, and growth trends to prevent outages from resource exhaustion. Use when asked about capacity, quotas, scaling readiness, load testing prep, or growth projections.\n---\n\n# Capacity Planning\n\n## Purpose\n\nAnalyze current resource utilization, quota consumption, and growth trends to predict capacity risks and recommend scaling actions before limits are hit.\n\n## Procedure\n\n### Step 1: Quota utilization\n\n```bash\naz vm list-usage --location \u003Cregion> -o table\naz network list-usages --location \u003Cregion> -o table\n```\n\nCheck vCPU quotas (total and per-family), public IPs, load balancers, network interfaces, storage accounts per subscription, App Service plans per region, and AKS clusters. Flag resources > 70% utilized.\n\n### Step 2: Compute capacity\n\n1. **VM utilization** (last 14 days): average and P95 CPU\u002Fmemory. Flag VMs > 80%.\n2. **App Service plans**:\n   ```bash\n   az appservice plan list --query \"[].{name:name, sku:sku.name, workers:numberOfWorkers}\" -o table\n   ```\n3. **AKS clusters**:\n   ```bash\n   az aks list --query \"[].{name:name, nodeCount:agentPoolProfiles[0].count, maxCount:agentPoolProfiles[0].maxCount}\" -o table\n   ```\n\n### Step 3: Data layer capacity\n\nCheck SQL Database DTU\u002FvCore utilization, Cosmos DB RU consumption and 429 rates, Redis Cache memory and server load, storage account transaction rates.\n\n### Step 4: Networking capacity\n\nCheck ExpressRoute\u002FVPN Gateway bandwidth, Application Gateway\u002FFront Door connections, NAT Gateway SNAT utilization.\n\n### Step 5: Growth projection\n\nApply linear projection to estimate when each resource hits 80% and 100%. If the user specified a growth factor, multiply current usage and check against limits.\n\n### Step 6: Quota increase requests\n\n```bash\naz rest --method patch \\\n  --url \"https:\u002F\u002Fmanagement.azure.com\u002Fsubscriptions\u002F\u003Csub-id>\u002Fproviders\u002FMicrosoft.Capacity\u002FresourceProviders\u002FMicrosoft.Compute\u002Flocations\u002F\u003Cregion>\u002FserviceLimits\u002F\u003Cfamily>?api-version=2020-10-25\" \\\n  --body '{\"properties\":{\"limit\":{\"limitObjectType\":\"LimitValue\",\"value\":\u003Cnew-limit>}}}'\n```\n\n## Scoring\n\n| Risk | Utilization |\n|------|-------------|\n| 🟢 Low | \u003C 70% |\n| 🟡 Medium | 70-90% |\n| 🔴 Critical | > 90% |\n\n## Sample output\n\n| Field | Value |\n|-------|-------|\n| Subscription | contoso-prod-001 |\n| Region(s) | East US, West Europe |\n| Resources scanned | 47 |\n| At risk (>70%) | 5 |\n| Critical (>90%) | 2 |\n\n| Resource | Current | At 2x Load | Action |\n|----------|---------|------------|--------|\n| vCPUs East US | 85\u002F100 (85%) | 170 ❌ | Quota increase |\n| SQL DTU | 78% avg | 156% ❌ | Scale up tier |\n| AKS nodes | 7\u002F10 | 14 ❌ | Increase max |\n\n## References\n\n- Quotas Overview: https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fquotas\u002Fquotas-overview\n- VM Sizes: https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fvirtual-machines\u002Fsizes\u002Foverview\n- Autoscale: https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fazure-monitor\u002Fautoscale\u002Fautoscale-overview\n",{"data":37,"body":38},{"name":5,"description":7},{"type":39,"children":40},"root",[41,48,55,61,67,74,191,196,202,342,348,353,359,364,370,375,381,464,470,537,543,630,731,737,776],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":24},[46],{"type":47,"value":23},"text",{"type":42,"tag":49,"props":50,"children":52},"h2",{"id":51},"purpose",[53],{"type":47,"value":54},"Purpose",{"type":42,"tag":56,"props":57,"children":58},"p",{},[59],{"type":47,"value":60},"Analyze current resource utilization, quota consumption, and growth trends to predict capacity risks and recommend scaling actions before limits are hit.",{"type":42,"tag":49,"props":62,"children":64},{"id":63},"procedure",[65],{"type":47,"value":66},"Procedure",{"type":42,"tag":68,"props":69,"children":71},"h3",{"id":70},"step-1-quota-utilization",[72],{"type":47,"value":73},"Step 1: Quota utilization",{"type":42,"tag":75,"props":76,"children":81},"pre",{"className":77,"code":78,"language":79,"meta":80,"style":80},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","az vm list-usage --location \u003Cregion> -o table\naz network list-usages --location \u003Cregion> -o table\n","bash","",[82],{"type":42,"tag":83,"props":84,"children":85},"code",{"__ignoreMap":80},[86,146],{"type":42,"tag":87,"props":88,"children":91},"span",{"class":89,"line":90},"line",1,[92,98,104,109,114,120,125,131,136,141],{"type":42,"tag":87,"props":93,"children":95},{"style":94},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[96],{"type":47,"value":97},"az",{"type":42,"tag":87,"props":99,"children":101},{"style":100},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[102],{"type":47,"value":103}," vm",{"type":42,"tag":87,"props":105,"children":106},{"style":100},[107],{"type":47,"value":108}," list-usage",{"type":42,"tag":87,"props":110,"children":111},{"style":100},[112],{"type":47,"value":113}," --location",{"type":42,"tag":87,"props":115,"children":117},{"style":116},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[118],{"type":47,"value":119}," \u003C",{"type":42,"tag":87,"props":121,"children":122},{"style":100},[123],{"type":47,"value":124},"regio",{"type":42,"tag":87,"props":126,"children":128},{"style":127},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[129],{"type":47,"value":130},"n",{"type":42,"tag":87,"props":132,"children":133},{"style":116},[134],{"type":47,"value":135},">",{"type":42,"tag":87,"props":137,"children":138},{"style":100},[139],{"type":47,"value":140}," -o",{"type":42,"tag":87,"props":142,"children":143},{"style":100},[144],{"type":47,"value":145}," table\n",{"type":42,"tag":87,"props":147,"children":148},{"class":89,"line":25},[149,153,158,163,167,171,175,179,183,187],{"type":42,"tag":87,"props":150,"children":151},{"style":94},[152],{"type":47,"value":97},{"type":42,"tag":87,"props":154,"children":155},{"style":100},[156],{"type":47,"value":157}," network",{"type":42,"tag":87,"props":159,"children":160},{"style":100},[161],{"type":47,"value":162}," list-usages",{"type":42,"tag":87,"props":164,"children":165},{"style":100},[166],{"type":47,"value":113},{"type":42,"tag":87,"props":168,"children":169},{"style":116},[170],{"type":47,"value":119},{"type":42,"tag":87,"props":172,"children":173},{"style":100},[174],{"type":47,"value":124},{"type":42,"tag":87,"props":176,"children":177},{"style":127},[178],{"type":47,"value":130},{"type":42,"tag":87,"props":180,"children":181},{"style":116},[182],{"type":47,"value":135},{"type":42,"tag":87,"props":184,"children":185},{"style":100},[186],{"type":47,"value":140},{"type":42,"tag":87,"props":188,"children":189},{"style":100},[190],{"type":47,"value":145},{"type":42,"tag":56,"props":192,"children":193},{},[194],{"type":47,"value":195},"Check vCPU quotas (total and per-family), public IPs, load balancers, network interfaces, storage accounts per subscription, App Service plans per region, and AKS clusters. Flag resources > 70% utilized.",{"type":42,"tag":68,"props":197,"children":199},{"id":198},"step-2-compute-capacity",[200],{"type":47,"value":201},"Step 2: Compute capacity",{"type":42,"tag":203,"props":204,"children":205},"ol",{},[206,218,285],{"type":42,"tag":207,"props":208,"children":209},"li",{},[210,216],{"type":42,"tag":211,"props":212,"children":213},"strong",{},[214],{"type":47,"value":215},"VM utilization",{"type":47,"value":217}," (last 14 days): average and P95 CPU\u002Fmemory. Flag VMs > 80%.",{"type":42,"tag":207,"props":219,"children":220},{},[221,226,228],{"type":42,"tag":211,"props":222,"children":223},{},[224],{"type":47,"value":225},"App Service plans",{"type":47,"value":227},":\n",{"type":42,"tag":75,"props":229,"children":231},{"className":77,"code":230,"language":79,"meta":80,"style":80},"az appservice plan list --query \"[].{name:name, sku:sku.name, workers:numberOfWorkers}\" -o table\n",[232],{"type":42,"tag":83,"props":233,"children":234},{"__ignoreMap":80},[235],{"type":42,"tag":87,"props":236,"children":237},{"class":89,"line":90},[238,242,247,252,257,262,267,272,277,281],{"type":42,"tag":87,"props":239,"children":240},{"style":94},[241],{"type":47,"value":97},{"type":42,"tag":87,"props":243,"children":244},{"style":100},[245],{"type":47,"value":246}," appservice",{"type":42,"tag":87,"props":248,"children":249},{"style":100},[250],{"type":47,"value":251}," plan",{"type":42,"tag":87,"props":253,"children":254},{"style":100},[255],{"type":47,"value":256}," list",{"type":42,"tag":87,"props":258,"children":259},{"style":100},[260],{"type":47,"value":261}," --query",{"type":42,"tag":87,"props":263,"children":264},{"style":116},[265],{"type":47,"value":266}," \"",{"type":42,"tag":87,"props":268,"children":269},{"style":100},[270],{"type":47,"value":271},"[].{name:name, sku:sku.name, workers:numberOfWorkers}",{"type":42,"tag":87,"props":273,"children":274},{"style":116},[275],{"type":47,"value":276},"\"",{"type":42,"tag":87,"props":278,"children":279},{"style":100},[280],{"type":47,"value":140},{"type":42,"tag":87,"props":282,"children":283},{"style":100},[284],{"type":47,"value":145},{"type":42,"tag":207,"props":286,"children":287},{},[288,293,294],{"type":42,"tag":211,"props":289,"children":290},{},[291],{"type":47,"value":292},"AKS clusters",{"type":47,"value":227},{"type":42,"tag":75,"props":295,"children":297},{"className":77,"code":296,"language":79,"meta":80,"style":80},"az aks list --query \"[].{name:name, nodeCount:agentPoolProfiles[0].count, maxCount:agentPoolProfiles[0].maxCount}\" -o table\n",[298],{"type":42,"tag":83,"props":299,"children":300},{"__ignoreMap":80},[301],{"type":42,"tag":87,"props":302,"children":303},{"class":89,"line":90},[304,308,313,317,321,325,330,334,338],{"type":42,"tag":87,"props":305,"children":306},{"style":94},[307],{"type":47,"value":97},{"type":42,"tag":87,"props":309,"children":310},{"style":100},[311],{"type":47,"value":312}," aks",{"type":42,"tag":87,"props":314,"children":315},{"style":100},[316],{"type":47,"value":256},{"type":42,"tag":87,"props":318,"children":319},{"style":100},[320],{"type":47,"value":261},{"type":42,"tag":87,"props":322,"children":323},{"style":116},[324],{"type":47,"value":266},{"type":42,"tag":87,"props":326,"children":327},{"style":100},[328],{"type":47,"value":329},"[].{name:name, nodeCount:agentPoolProfiles[0].count, maxCount:agentPoolProfiles[0].maxCount}",{"type":42,"tag":87,"props":331,"children":332},{"style":116},[333],{"type":47,"value":276},{"type":42,"tag":87,"props":335,"children":336},{"style":100},[337],{"type":47,"value":140},{"type":42,"tag":87,"props":339,"children":340},{"style":100},[341],{"type":47,"value":145},{"type":42,"tag":68,"props":343,"children":345},{"id":344},"step-3-data-layer-capacity",[346],{"type":47,"value":347},"Step 3: Data layer capacity",{"type":42,"tag":56,"props":349,"children":350},{},[351],{"type":47,"value":352},"Check SQL Database DTU\u002FvCore utilization, Cosmos DB RU consumption and 429 rates, Redis Cache memory and server load, storage account transaction rates.",{"type":42,"tag":68,"props":354,"children":356},{"id":355},"step-4-networking-capacity",[357],{"type":47,"value":358},"Step 4: Networking capacity",{"type":42,"tag":56,"props":360,"children":361},{},[362],{"type":47,"value":363},"Check ExpressRoute\u002FVPN Gateway bandwidth, Application Gateway\u002FFront Door connections, NAT Gateway SNAT utilization.",{"type":42,"tag":68,"props":365,"children":367},{"id":366},"step-5-growth-projection",[368],{"type":47,"value":369},"Step 5: Growth projection",{"type":42,"tag":56,"props":371,"children":372},{},[373],{"type":47,"value":374},"Apply linear projection to estimate when each resource hits 80% and 100%. If the user specified a growth factor, multiply current usage and check against limits.",{"type":42,"tag":68,"props":376,"children":378},{"id":377},"step-6-quota-increase-requests",[379],{"type":47,"value":380},"Step 6: Quota increase requests",{"type":42,"tag":75,"props":382,"children":384},{"className":77,"code":383,"language":79,"meta":80,"style":80},"az rest --method patch \\\n  --url \"https:\u002F\u002Fmanagement.azure.com\u002Fsubscriptions\u002F\u003Csub-id>\u002Fproviders\u002FMicrosoft.Capacity\u002FresourceProviders\u002FMicrosoft.Compute\u002Flocations\u002F\u003Cregion>\u002FserviceLimits\u002F\u003Cfamily>?api-version=2020-10-25\" \\\n  --body '{\"properties\":{\"limit\":{\"limitObjectType\":\"LimitValue\",\"value\":\u003Cnew-limit>}}}'\n",[385],{"type":42,"tag":83,"props":386,"children":387},{"__ignoreMap":80},[388,415,440],{"type":42,"tag":87,"props":389,"children":390},{"class":89,"line":90},[391,395,400,405,410],{"type":42,"tag":87,"props":392,"children":393},{"style":94},[394],{"type":47,"value":97},{"type":42,"tag":87,"props":396,"children":397},{"style":100},[398],{"type":47,"value":399}," rest",{"type":42,"tag":87,"props":401,"children":402},{"style":100},[403],{"type":47,"value":404}," --method",{"type":42,"tag":87,"props":406,"children":407},{"style":100},[408],{"type":47,"value":409}," patch",{"type":42,"tag":87,"props":411,"children":412},{"style":127},[413],{"type":47,"value":414}," \\\n",{"type":42,"tag":87,"props":416,"children":417},{"class":89,"line":25},[418,423,427,432,436],{"type":42,"tag":87,"props":419,"children":420},{"style":100},[421],{"type":47,"value":422},"  --url",{"type":42,"tag":87,"props":424,"children":425},{"style":116},[426],{"type":47,"value":266},{"type":42,"tag":87,"props":428,"children":429},{"style":100},[430],{"type":47,"value":431},"https:\u002F\u002Fmanagement.azure.com\u002Fsubscriptions\u002F\u003Csub-id>\u002Fproviders\u002FMicrosoft.Capacity\u002FresourceProviders\u002FMicrosoft.Compute\u002Flocations\u002F\u003Cregion>\u002FserviceLimits\u002F\u003Cfamily>?api-version=2020-10-25",{"type":42,"tag":87,"props":433,"children":434},{"style":116},[435],{"type":47,"value":276},{"type":42,"tag":87,"props":437,"children":438},{"style":127},[439],{"type":47,"value":414},{"type":42,"tag":87,"props":441,"children":443},{"class":89,"line":442},3,[444,449,454,459],{"type":42,"tag":87,"props":445,"children":446},{"style":100},[447],{"type":47,"value":448},"  --body",{"type":42,"tag":87,"props":450,"children":451},{"style":116},[452],{"type":47,"value":453}," '",{"type":42,"tag":87,"props":455,"children":456},{"style":100},[457],{"type":47,"value":458},"{\"properties\":{\"limit\":{\"limitObjectType\":\"LimitValue\",\"value\":\u003Cnew-limit>}}}",{"type":42,"tag":87,"props":460,"children":461},{"style":116},[462],{"type":47,"value":463},"'\n",{"type":42,"tag":49,"props":465,"children":467},{"id":466},"scoring",[468],{"type":47,"value":469},"Scoring",{"type":42,"tag":471,"props":472,"children":473},"table",{},[474,493],{"type":42,"tag":475,"props":476,"children":477},"thead",{},[478],{"type":42,"tag":479,"props":480,"children":481},"tr",{},[482,488],{"type":42,"tag":483,"props":484,"children":485},"th",{},[486],{"type":47,"value":487},"Risk",{"type":42,"tag":483,"props":489,"children":490},{},[491],{"type":47,"value":492},"Utilization",{"type":42,"tag":494,"props":495,"children":496},"tbody",{},[497,511,524],{"type":42,"tag":479,"props":498,"children":499},{},[500,506],{"type":42,"tag":501,"props":502,"children":503},"td",{},[504],{"type":47,"value":505},"🟢 Low",{"type":42,"tag":501,"props":507,"children":508},{},[509],{"type":47,"value":510},"\u003C 70%",{"type":42,"tag":479,"props":512,"children":513},{},[514,519],{"type":42,"tag":501,"props":515,"children":516},{},[517],{"type":47,"value":518},"🟡 Medium",{"type":42,"tag":501,"props":520,"children":521},{},[522],{"type":47,"value":523},"70-90%",{"type":42,"tag":479,"props":525,"children":526},{},[527,532],{"type":42,"tag":501,"props":528,"children":529},{},[530],{"type":47,"value":531},"🔴 Critical",{"type":42,"tag":501,"props":533,"children":534},{},[535],{"type":47,"value":536},"> 90%",{"type":42,"tag":49,"props":538,"children":540},{"id":539},"sample-output",[541],{"type":47,"value":542},"Sample output",{"type":42,"tag":471,"props":544,"children":545},{},[546,562],{"type":42,"tag":475,"props":547,"children":548},{},[549],{"type":42,"tag":479,"props":550,"children":551},{},[552,557],{"type":42,"tag":483,"props":553,"children":554},{},[555],{"type":47,"value":556},"Field",{"type":42,"tag":483,"props":558,"children":559},{},[560],{"type":47,"value":561},"Value",{"type":42,"tag":494,"props":563,"children":564},{},[565,578,591,604,617],{"type":42,"tag":479,"props":566,"children":567},{},[568,573],{"type":42,"tag":501,"props":569,"children":570},{},[571],{"type":47,"value":572},"Subscription",{"type":42,"tag":501,"props":574,"children":575},{},[576],{"type":47,"value":577},"contoso-prod-001",{"type":42,"tag":479,"props":579,"children":580},{},[581,586],{"type":42,"tag":501,"props":582,"children":583},{},[584],{"type":47,"value":585},"Region(s)",{"type":42,"tag":501,"props":587,"children":588},{},[589],{"type":47,"value":590},"East US, West Europe",{"type":42,"tag":479,"props":592,"children":593},{},[594,599],{"type":42,"tag":501,"props":595,"children":596},{},[597],{"type":47,"value":598},"Resources scanned",{"type":42,"tag":501,"props":600,"children":601},{},[602],{"type":47,"value":603},"47",{"type":42,"tag":479,"props":605,"children":606},{},[607,612],{"type":42,"tag":501,"props":608,"children":609},{},[610],{"type":47,"value":611},"At risk (>70%)",{"type":42,"tag":501,"props":613,"children":614},{},[615],{"type":47,"value":616},"5",{"type":42,"tag":479,"props":618,"children":619},{},[620,625],{"type":42,"tag":501,"props":621,"children":622},{},[623],{"type":47,"value":624},"Critical (>90%)",{"type":42,"tag":501,"props":626,"children":627},{},[628],{"type":47,"value":629},"2",{"type":42,"tag":471,"props":631,"children":632},{},[633,659],{"type":42,"tag":475,"props":634,"children":635},{},[636],{"type":42,"tag":479,"props":637,"children":638},{},[639,644,649,654],{"type":42,"tag":483,"props":640,"children":641},{},[642],{"type":47,"value":643},"Resource",{"type":42,"tag":483,"props":645,"children":646},{},[647],{"type":47,"value":648},"Current",{"type":42,"tag":483,"props":650,"children":651},{},[652],{"type":47,"value":653},"At 2x Load",{"type":42,"tag":483,"props":655,"children":656},{},[657],{"type":47,"value":658},"Action",{"type":42,"tag":494,"props":660,"children":661},{},[662,685,708],{"type":42,"tag":479,"props":663,"children":664},{},[665,670,675,680],{"type":42,"tag":501,"props":666,"children":667},{},[668],{"type":47,"value":669},"vCPUs East US",{"type":42,"tag":501,"props":671,"children":672},{},[673],{"type":47,"value":674},"85\u002F100 (85%)",{"type":42,"tag":501,"props":676,"children":677},{},[678],{"type":47,"value":679},"170 ❌",{"type":42,"tag":501,"props":681,"children":682},{},[683],{"type":47,"value":684},"Quota increase",{"type":42,"tag":479,"props":686,"children":687},{},[688,693,698,703],{"type":42,"tag":501,"props":689,"children":690},{},[691],{"type":47,"value":692},"SQL DTU",{"type":42,"tag":501,"props":694,"children":695},{},[696],{"type":47,"value":697},"78% avg",{"type":42,"tag":501,"props":699,"children":700},{},[701],{"type":47,"value":702},"156% ❌",{"type":42,"tag":501,"props":704,"children":705},{},[706],{"type":47,"value":707},"Scale up tier",{"type":42,"tag":479,"props":709,"children":710},{},[711,716,721,726],{"type":42,"tag":501,"props":712,"children":713},{},[714],{"type":47,"value":715},"AKS nodes",{"type":42,"tag":501,"props":717,"children":718},{},[719],{"type":47,"value":720},"7\u002F10",{"type":42,"tag":501,"props":722,"children":723},{},[724],{"type":47,"value":725},"14 ❌",{"type":42,"tag":501,"props":727,"children":728},{},[729],{"type":47,"value":730},"Increase max",{"type":42,"tag":49,"props":732,"children":734},{"id":733},"references",[735],{"type":47,"value":736},"References",{"type":42,"tag":738,"props":739,"children":740},"ul",{},[741,754,765],{"type":42,"tag":207,"props":742,"children":743},{},[744,746],{"type":47,"value":745},"Quotas Overview: ",{"type":42,"tag":747,"props":748,"children":752},"a",{"href":749,"rel":750},"https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fquotas\u002Fquotas-overview",[751],"nofollow",[753],{"type":47,"value":749},{"type":42,"tag":207,"props":755,"children":756},{},[757,759],{"type":47,"value":758},"VM Sizes: ",{"type":42,"tag":747,"props":760,"children":763},{"href":761,"rel":762},"https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fvirtual-machines\u002Fsizes\u002Foverview",[751],[764],{"type":47,"value":761},{"type":42,"tag":207,"props":766,"children":767},{},[768,770],{"type":47,"value":769},"Autoscale: ",{"type":42,"tag":747,"props":771,"children":774},{"href":772,"rel":773},"https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fazure\u002Fazure-monitor\u002Fautoscale\u002Fautoscale-overview",[751],[775],{"type":47,"value":772},{"type":42,"tag":777,"props":778,"children":779},"style",{},[780],{"type":47,"value":781},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":783,"total":961},[784,803,822,841,856,871,884,899,910,922,935,947],{"slug":785,"name":785,"fn":786,"description":787,"org":788,"tags":789,"stars":800,"repoUrl":801,"updatedAt":802},"azure-arg-external-evaluation-policy-author","author and test Azure Resource Graph policies","Use when the user wants to author, design, or test an Azure Policy that queries Azure Resource Graph (ARG) at request-time — i.e. a policy whose deny\u002Faudit decision depends on data from elsewhere in the subscription (sibling\u002Fparent resource state, RG-wide invariants, multi-hop relationships, etc.). Formally called Azure Policy External Evaluation; sometimes referred to colloquially as \"Invoke\". Drives an iterative KQL co-design loop against the user's real subscription via `az graph query`, then emits a policy definition, assignment, `.http` test flow, and an `EXPLANATION.md` companion. Read-only; never provisions anything.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[790,791,794,797],{"name":12,"slug":9,"type":17},{"name":792,"slug":793,"type":17},"Compliance","compliance",{"name":795,"slug":796,"type":17},"Governance","governance",{"name":798,"slug":799,"type":17},"Policy","policy",1689,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":804,"name":804,"fn":805,"description":806,"org":807,"tags":808,"stars":819,"repoUrl":820,"updatedAt":821},"azure-blueprints-migration","migrate Azure Blueprints to Template Specs","Use when a user needs to migrate off Azure Blueprints (definitions and\u002For assignments) to Template Specs and Deployment Stacks before the January 31, 2027 retirement. Covers inventory, export, conversion to Bicep, policy decoupling, Template Spec publishing, Deployment Stack deployment with deny-settings, validation, and cutover.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[809,810,813,816],{"name":12,"slug":9,"type":17},{"name":811,"slug":812,"type":17},"Deployment","deployment",{"name":814,"slug":815,"type":17},"Infrastructure as Code","infrastructure-as-code",{"name":817,"slug":818,"type":17},"Migration","migration",261,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-08-20T03:28:18.136156",{"slug":823,"name":823,"fn":824,"description":825,"org":826,"tags":827,"stars":838,"repoUrl":839,"updatedAt":840},"apiview-feedback-resolution","resolve APIView feedback on Azure SDKs","Analyze and resolve APIView review feedback on Azure SDK PRs. **UTILITY SKILL**. USE FOR: APIView comments, API review feedback, SDK API surface changes. DO NOT USE FOR: general code review, non-APIView feedback. INVOKES: azure-sdk-mcp:azsdk_apiview_get_comments, azure-sdk-mcp:azsdk_typespec_customized_code_update.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[828,831,832,835],{"name":829,"slug":830,"type":17},"API Development","api-development",{"name":12,"slug":9,"type":17},{"name":833,"slug":834,"type":17},"Code Review","code-review",{"name":836,"slug":837,"type":17},"Documentation","documentation",136,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-sdk-tools","2026-07-12T08:17:43.350876",{"slug":842,"name":842,"fn":843,"description":844,"org":845,"tags":846,"stars":838,"repoUrl":839,"updatedAt":855},"azsdk-common-live-and-recorded-tests","deploy resources and run Azure SDK tests","Deploy test resources and run Azure SDK tests in live, record, or playback mode. WHEN: \"run live tests\", \"run recorded tests\", \"deploy test resources\", \"record tests\", \"run tests in record mode\", \"clean up test resources\", \"run tests against live resources\". DO NOT USE FOR: writing new tests, authoring Bicep templates, playback-only test runs without resource deployment. INVOKES: azure-sdk-mcp:azsdk_package_run_tests.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[847,848,849,852],{"name":12,"slug":9,"type":17},{"name":811,"slug":812,"type":17},{"name":850,"slug":851,"type":17},"SDK","sdk",{"name":853,"slug":854,"type":17},"Testing","testing","2026-07-12T08:17:44.718943",{"slug":857,"name":857,"fn":858,"description":859,"org":860,"tags":861,"stars":838,"repoUrl":839,"updatedAt":870},"azsdk-common-prepare-release-plan","manage Azure SDK release plan work items","Create, get, update, abandon, and link SDK PRs to release plan work items for Azure SDK releases. **UTILITY SKILL**. USE FOR: \"create release plan\", \"get release plan\", \"update release plan\", \"update API spec in release plan\", \"update SDK details in release plan\", \"abandon release plan\", \"link SDK PR to plan\", \"namespace approval\", \"check release plan status\". DO NOT USE FOR: SDK code generation, pipeline troubleshooting, API review feedback. INVOKES: azure-sdk-mcp:azsdk_create_release_plan, azure-sdk-mcp:azsdk_get_release_plan, azure-sdk-mcp:azsdk_get_release_plan_for_spec_pr, azure-sdk-mcp:azsdk_update_release_plan, azure-sdk-mcp:azsdk_update_api_spec_pull_request_in_release_plan, azure-sdk-mcp:azsdk_update_sdk_details_in_release_plan, azure-sdk-mcp:azsdk_abandon_release_plan, azure-sdk-mcp:azsdk_link_sdk_pull_request_to_release_plan, azure-sdk-mcp:azsdk_link_namespace_approval_issue.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[862,863,866,869],{"name":12,"slug":9,"type":17},{"name":864,"slug":865,"type":17},"GitHub","github",{"name":867,"slug":868,"type":17},"Project Management","project-management",{"name":850,"slug":851,"type":17},"2026-07-12T08:17:38.345387",{"slug":872,"name":872,"fn":873,"description":874,"org":875,"tags":876,"stars":838,"repoUrl":839,"updatedAt":883},"azsdk-common-sdk-release","release Azure SDK packages","Check release readiness and trigger the release pipeline for Azure SDK packages. **UTILITY SKILL**. USE FOR: \"release SDK\", \"trigger release\", \"check release readiness\", \"release pipeline\", \"publish package\", \"ship SDK\". DO NOT USE FOR: SDK development, code generation, pipeline debugging, release plan creation. INVOKES: azure-sdk-mcp:azsdk_release_sdk.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[877,878,881,882],{"name":12,"slug":9,"type":17},{"name":879,"slug":880,"type":17},"CI\u002FCD","ci-cd",{"name":811,"slug":812,"type":17},{"name":850,"slug":851,"type":17},"2026-07-12T08:17:34.27607",{"slug":885,"name":885,"fn":886,"description":887,"org":888,"tags":889,"stars":838,"repoUrl":839,"updatedAt":898},"azure-typespec-author","author and modify Azure TypeSpec API specifications","Authors and modifies Azure TypeSpec (.tsp) API specifications. USE FOR: any TypeSpec\u002Ftsp change — api versions (add, bump, preview, stable, promote), resources, operations, models, properties, decorators, visibility, constraints, breaking changes, LRO, suppressions, operationId, spread model. Covers ARM resource-manager and data-plane services. DO NOT USE FOR: SDK generation, releasing SDK packages, or single MCP tool calls. INVOKES: azure-sdk-mcp:azsdk_typespec_generate_authoring_plan, azure-sdk-mcp:azsdk_run_typespec_validation.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[890,891,892,895],{"name":829,"slug":830,"type":17},{"name":12,"slug":9,"type":17},{"name":893,"slug":894,"type":17},"OpenAPI","openapi",{"name":896,"slug":897,"type":17},"Technical Writing","technical-writing","2026-07-12T08:17:39.603232",{"slug":900,"name":900,"fn":901,"description":902,"org":903,"tags":904,"stars":838,"repoUrl":839,"updatedAt":909},"generate-sdk-locally","generate and test Azure SDKs locally","Generate, build, and test Azure SDKs locally from TypeSpec with automatic customization. WHEN: \"generate SDK locally\", \"build SDK\", \"run SDK tests\", \"run CI checks\", \"validate package\", \"run checks\", \"update changelog\", \"fix SDK build errors\", \"fix breaking changes\", \"resolve SDK generation errors\", \"customize TypeSpec\", \"rename SDK client\", \"rename SDK model\", \"hide operation from SDK\", \"fix analyzer errors\", \"resolve customization drift\", \"create subclient\", \"update metadata\", \"update version\". DO NOT USE FOR: publishing to package registries, CI pipeline configuration, API design review. INVOKES: azsdk_verify_setup, azsdk_package_generate_code, azsdk_package_build_code, azsdk_package_run_check, azsdk_package_run_tests, azsdk_customized_code_update, azsdk_package_update_changelog_content, azsdk_package_update_metadata, azsdk_package_update_version.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[905,906,907,908],{"name":12,"slug":9,"type":17},{"name":879,"slug":880,"type":17},{"name":850,"slug":851,"type":17},{"name":853,"slug":854,"type":17},"2026-07-12T08:17:37.08523",{"slug":911,"name":911,"fn":912,"description":913,"org":914,"tags":915,"stars":838,"repoUrl":839,"updatedAt":921},"markdown-token-optimizer","optimize markdown files for token efficiency","Analyze markdown files for token efficiency and reduce context-window bloat. **UTILITY SKILL**. DO NOT USE FOR: code optimization, general file editing, non-markdown files. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size. INVOKES: waza CLI.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[916,919,920],{"name":917,"slug":918,"type":17},"LLM","llm",{"name":15,"slug":16,"type":17},{"name":896,"slug":897,"type":17},"2026-07-12T08:17:42.080413",{"slug":923,"name":923,"fn":924,"description":925,"org":926,"tags":927,"stars":838,"repoUrl":839,"updatedAt":934},"pipeline-troubleshooting","troubleshoot Azure SDK CI pipelines","Diagnose and resolve failures in Azure SDK CI and generation pipelines. **UTILITY SKILL**. USE FOR: \"pipeline failed\", \"build failure\", \"CI check failing\", \"SDK generation error\", \"reproduce pipeline locally\", \"debug SDK pipeline\". DO NOT USE FOR: local build issues without pipeline context, API design review, SDK publishing. INVOKES: azure-sdk-mcp:azsdk_analyze_pipeline, azure-sdk-mcp:azsdk_package_build_code, azure-sdk-mcp:azsdk_package_run_check.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[928,929,930,933],{"name":12,"slug":9,"type":17},{"name":879,"slug":880,"type":17},{"name":931,"slug":932,"type":17},"Debugging","debugging",{"name":850,"slug":851,"type":17},"2026-07-12T08:17:40.821512",{"slug":936,"name":936,"fn":937,"description":938,"org":939,"tags":940,"stars":838,"repoUrl":839,"updatedAt":946},"skill-authoring","author agent skills for agentskills.io","Write Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\". DO NOT USE FOR: general documentation. INVOKES: waza CLI.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[941,942,945],{"name":836,"slug":837,"type":17},{"name":943,"slug":944,"type":17},"Plugin Development","plugin-development",{"name":896,"slug":897,"type":17},"2026-08-07T04:39:22.66861",{"slug":948,"name":948,"fn":949,"description":950,"org":951,"tags":952,"stars":958,"repoUrl":959,"updatedAt":960},"kickstart-acr-integration","integrate Azure Container Registry with AKS","ACR integration for AKS Automatic. Teaches attaching an ACR, image reference conventions (digest pinning, no :latest), and pull-secret-free authentication via the managed identity.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[953,954,957],{"name":12,"slug":9,"type":17},{"name":955,"slug":956,"type":17},"Containers","containers",{"name":811,"slug":812,"type":17},65,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fvscode-aks-tools","2026-07-12T08:18:05.091337",124,{"items":963,"total":1082},[964,985,1003,1022,1041,1048,1063],{"slug":965,"name":966,"fn":967,"description":968,"org":969,"tags":970,"stars":25,"repoUrl":26,"updatedAt":984},"aifoundryposturecheck","ai_foundry_posture_check","assess Azure AI Foundry deployment posture","Assess security, reliability, and cost posture of Azure OpenAI and AI Foundry deployments. Detects anti-patterns like API keys instead of Managed Identity, public endpoints, disabled content filtering, deprecated models, over-provisioned PTU, missing AI Gateway, and single-region deployment.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[971,974,975,978,981],{"name":972,"slug":973,"type":17},"AI","ai",{"name":12,"slug":9,"type":17},{"name":976,"slug":977,"type":17},"Cost Optimization","cost-optimization",{"name":979,"slug":980,"type":17},"Reliability","reliability",{"name":982,"slug":983,"type":17},"Security","security","2026-08-23T04:00:38.426809",{"slug":986,"name":987,"fn":988,"description":989,"org":990,"tags":991,"stars":25,"repoUrl":26,"updatedAt":1002},"atlassianrovo","atlassian_rovo","manage Atlassian Jira and Confluence tasks","Expertise in Atlassian Cloud products including Jira, Confluence, Compass, and Jira Service Management. Use for searching issues with JQL, creating and updating pages, managing service components, investigating ops alerts, and navigating Atlassian workspaces via the Rovo MCP server.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[992,995,998,1001],{"name":993,"slug":994,"type":17},"Atlassian","atlassian",{"name":996,"slug":997,"type":17},"Confluence","confluence",{"name":999,"slug":1000,"type":17},"Jira","jira",{"name":867,"slug":868,"type":17},"2026-07-12T08:20:33.735452",{"slug":1004,"name":1005,"fn":1006,"description":1007,"org":1008,"tags":1009,"stars":25,"repoUrl":26,"updatedAt":1021},"awscloudoperations","aws_cloud_operations","manage and troubleshoot AWS cloud operations","Expertise in AWS cloud operations including infrastructure management, troubleshooting, documentation search, API execution, and operational procedures. Use for querying AWS resources, investigating incidents, following SOPs, searching documentation, checking service availability, and executing AWS API calls via the AWS MCP Server.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1010,1013,1014,1017,1020],{"name":1011,"slug":1012,"type":17},"AWS","aws",{"name":931,"slug":932,"type":17},{"name":1015,"slug":1016,"type":17},"Infrastructure","infrastructure",{"name":1018,"slug":1019,"type":17},"Monitoring","monitoring",{"name":19,"slug":20,"type":17},"2026-07-12T08:20:14.702793",{"slug":1023,"name":1024,"fn":1025,"description":1026,"org":1027,"tags":1028,"stars":25,"repoUrl":26,"updatedAt":1040},"azuremanagedgrafana","azure_managed_grafana","monitor Azure infrastructure with Grafana","Expertise in Azure Managed Grafana including dashboards, Azure Monitor metrics, Application Insights failures and traces, Azure Data Explorer (Kusto) queries, SQL Server queries, and Azure Resource Graph. Use for querying observability data, searching dashboards, investigating failures, analyzing GenAI agent telemetry, and running KQL or SQL queries via the AMG-MCP endpoint.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1029,1032,1033,1036,1037],{"name":1030,"slug":1031,"type":17},"Application Insights","application-insights",{"name":12,"slug":9,"type":17},{"name":1034,"slug":1035,"type":17},"Dashboards","dashboards",{"name":1018,"slug":1019,"type":17},{"name":1038,"slug":1039,"type":17},"Observability","observability","2026-07-12T08:19:37.659849",{"slug":4,"name":5,"fn":6,"description":7,"org":1042,"tags":1043,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1044,1045,1046,1047],{"name":12,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":19,"slug":20,"type":17},{"name":15,"slug":16,"type":17},{"slug":1049,"name":1050,"fn":1051,"description":1052,"org":1053,"tags":1054,"stars":25,"repoUrl":26,"updatedAt":1062},"compliancegovernanceaudit","compliance_governance_audit","audit Azure compliance and governance","Audit Azure environment for compliance and governance posture. Checks Azure Policy, RBAC, tagging, resource locks, naming conventions, and regulatory alignment. Use when asked about compliance, governance, audit readiness, or policy violations.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1055,1058,1059,1060,1061],{"name":1056,"slug":1057,"type":17},"Audit","audit",{"name":12,"slug":9,"type":17},{"name":792,"slug":793,"type":17},{"name":795,"slug":796,"type":17},{"name":982,"slug":983,"type":17},"2026-08-23T04:00:39.064619",{"slug":1064,"name":1065,"fn":1066,"description":1067,"org":1068,"tags":1069,"stars":25,"repoUrl":26,"updatedAt":1081},"datadogobservability","datadog_observability","query Datadog telemetry and investigate behavior","Expertise in Datadog's observability platform including logs, metrics, APM, monitors, incidents, dashboards, hosts, and services. Use for searching logs, querying metrics, investigating incidents, analyzing traces, inspecting monitors, and navigating Datadog data via the Datadog MCP server.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1070,1073,1076,1079,1080],{"name":1071,"slug":1072,"type":17},"Datadog","datadog",{"name":1074,"slug":1075,"type":17},"Logs","logs",{"name":1077,"slug":1078,"type":17},"Metrics","metrics",{"name":1018,"slug":1019,"type":17},{"name":1038,"slug":1039,"type":17},"2026-07-12T08:20:41.400308",15]