.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-upgrade
home/skills/microsoft/azure-skills/azure-upgrade
microsoft avatar

azure-upgrade

bymicrosoft· 555 skills

Installs

346k

Stars

1.3k

Forks

219

Category

Cloud & Infrastructure

View on GitHub

TL;DR

Assess and upgrade Azure workloads between plans, tiers, or SKUs, or modernize Azure SDK dependencies in source code. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, change hosting plan, function app SKU, migrate App Service to Container Apps, modernize legacy Azure Java SDKs (com.microsoft.azure to com.azure), migrate Azure Cache for Redis (ACR/ACRE) to Azure Managed Redis (AMR).

How to install azure-upgrade?

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

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-upgrade"` 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 Upgrade
2 
3> This skill handles **assessment and automated upgrades** of existing Azure workloads from one Azure service, hosting plan, or SKU to another — all within Azure. This includes plan/tier upgrades (e.g. Consumption → Flex Consumption), cross-service migrations (e.g. App Service → Container Apps), and SKU changes. It also covers **Azure SDK for Java source-code modernization** (e.g. legacy Java `com.microsoft.azure.*` → modern `com.azure.*`). This is NOT for cross-cloud migration — use `azure-cloud-migrate` for that.
4 
5## Triggers
6 
7| User Intent | Example Prompts |
8|-------------|-----------------|
9| Upgrade Azure Functions plan | "Upgrade my function app from Consumption to Flex Consumption" |
10| Change hosting tier | "Move my function app to a better plan" |
11| Assess upgrade readiness | "Is my function app ready for Flex Consumption?" |
12| Automate plan migration | "Automate the steps to upgrade my Functions plan" |
13| Modernize legacy Azure Java SDK | "Migrate legacy Azure SDKs for Java", "Upgrade legacy Azure Java SDK", "Migrate my Java project from com.microsoft.azure to com.azure" |
14| Migrate Azure Cache for Redis (ACR/OSS) to Azure Managed Redis (AMR) | "Migrate my Redis cache to AMR", "ACR to AMR", "OSS to AMR", "Upgrade my Premium P2 cache to Managed Redis", "Pick an AMR SKU", "Convert my Redis IaC template to AMR" |
15| Migrate Azure Cache for Redis Enterprise (ACRE) to Azure Managed Redis (AMR) | "Migrate my Enterprise_E10 cache to AMR", "ACRE to AMR", "Update my ACRE IaC template for AMR", "Migrate EnterpriseFlash to AMR", "Migrate my geo-replicated Enterprise Redis" |
16 
17## Rules
18 
191. Follow phases sequentially — do not skip
202. Generate an assessment before any upgrade operations
213. Load the scenario reference and follow its rules
224. Use `mcp_azure_mcp_get_azure_bestpractices` and `mcp_azure_mcp_documentation` MCP tools
235. Destructive actions require `ask_user` — [global-rules](references/global-rules.md)
246. Always confirm the target plan/SKU with the user before proceeding
257. Never delete or stop the original app without explicit user confirmation
268. All automation scripts must be idempotent and resumable
27 
28## Upgrade Scenarios
29 
30| Source | Target | Reference |
31|--------|--------|-----------|
32| Azure Functions Consumption Plan | Azure Functions Flex Consumption Plan | [consumption-to-flex.md](references/services/functions/consumption-to-flex.md) |
33| Legacy Azure Java SDK (`com.microsoft.azure.*`) | Modern Azure Java SDK (`com.azure.*`) | [languages/java/README.md](references/languages/java/README.md) |
34| Azure Cache for Redis (ACR/OSS) Basic/Standard/Premium | Azure Managed Redis (AMR) | [services/redis/redis-to-amr.md](references/services/redis/redis-to-amr.md) |
35| Azure Cache for Redis Enterprise (ACRE) / Enterprise Flash | Azure Managed Redis (AMR) | [services/redis/redis-to-amr.md](references/services/redis/redis-to-amr.md) |
36 
37> SDK upgrade scenarios (e.g. Java legacy → modern) run a **source-code modernization flow** that is distinct from Azure service/plan/SKU upgrades: follow the scenario reference, **not** the Steps below.
38 
39> No matching scenario? Use `mcp_azure_mcp_documentation` and `mcp_azure_mcp_get_azure_bestpractices` tools to research the upgrade path.
40 
41## MCP Tools
42 
43| Tool | Purpose |
44|------|---------|
45| `mcp_azure_mcp_get_azure_bestpractices` | Get Azure best practices for the target service |
46| `mcp_azure_mcp_documentation` | Look up Azure documentation for upgrade scenarios |
47| `mcp_azure_mcp_appservice` | Query App Service and Functions plan details |
48| `mcp_azure_mcp_applicationinsights` | Verify monitoring configuration |
49 
50## Steps
51 
521. **Identify** — Determine the source and target Azure plans/SKUs. Ask user to confirm.
532. **Assess** — Analyze existing app for upgrade readiness → load scenario reference (e.g., [consumption-to-flex.md](references/services/functions/consumption-to-flex.md))
543. **Pre-migrate** — Collect settings, identities, configs from the existing app
554. **Upgrade** — Execute the automated upgrade steps (create new resources, migrate settings, deploy code)
565. **Validate** — Hit the function app default URL to confirm the app is reachable, then verify endpoints and monitoring
576. **Ask User** — "Upgrade complete. Would you like to verify performance, clean up the old app, or update your IaC?"
587. **Hand off** to `azure-validate` for deep validation or `azure-deploy` for CI/CD setup
59 
60Track progress in `upgrade-status.md` inside the workspace root.
61 
62## References
63 
64- [Global Rules](references/global-rules.md)
65- [Workflow Details](references/workflow-details.md)
66- **Functions**
67 - [Consumption to Flex Consumption](references/services/functions/consumption-to-flex.md)
68 - [Assessment](references/services/functions/assessment.md)
69 - [Automation Scripts](references/services/functions/automation.md)
70- **Redis**
71 - [Redis (ACR or ACRE) to AMR Migration](references/services/redis/redis-to-amr.md) — routes to dedicated [amr-migration-skill](https://github.com/AzureManagedRedis/amr-migration-skill) (ACR/OSS) or [acre-to-amr-migration-skill](https://github.com/AzureManagedRedis/acre-to-amr-migration-skill) (Enterprise)
72- **Java SDK Migration Templates**
73 - [Plan Template](references/languages/java/templates/PLAN_TEMPLATE.md)
74 - [Progress Template](references/languages/java/templates/PROGRESS_TEMPLATE.md)
75 - [Summary Template](references/languages/java/templates/SUMMARY_TEMPLATE.md)
76 
77## Next
78 
79After upgrade is validated, hand off to:
80- `azure-validate` — for thorough post-upgrade validation
81- `azure-deploy` — if the user wants to set up CI/CD for the new app

Security

Review

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykwarn
  • Runlayerwarn
  • ZeroLeakspass

Preview

microsoft/azure-skillsmicrosoft/azure-skills

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

▸ installing to .claude/skills…

✓ azure-upgrade ready

Repomicrosoft/azure-skills
TypeSkills
CategoryCloud & Infrastructure
ForOpsArchitect
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-storageAzure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake.SkillsJul 2026484k1.3k
  2. microsoft avatarazure-resource-lookupList, find, and show Azure resources across subscriptions or resource groups.SkillsJul 2026484k1.3k
  3. microsoft avatarazure-resource-visualizerAnalyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources.SkillsJul 2026483k1.3k
  4. microsoft avatarazure-computeAzure VM/VMSS router. WHEN: create / provision / deploy / spin-up VM, recommend VM size, compare VM pricing, VMSS, scale set, autoscale, burstable, lightweight…SkillsJul 2026428k1.3k
  5. microsoft avatarazure-quotasCheck/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection.SkillsJul 2026354k1.3k
  6. microsoft avatarazure-enterprise-infra-plannerArchitect and provision enterprise Azure infrastructure from workload descriptions.SkillsJul 2026320k1.3k