Comprehensive Azure Well-Architected Framework knowledge covering the five pillars: Reliability, Security, Cost Optimization, Operational Excellence, and Performance Efficiency. Provides design principles, best practices, and implementation guidance for building robust Azure solutions.
View on GitHubJosiahSiegel/claude-plugin-marketplace
azure-master
plugins/azure-master/skills/azure-well-architected-framework/SKILL.md
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/JosiahSiegel/claude-plugin-marketplace/blob/main/plugins/azure-master/skills/azure-well-architected-framework/SKILL.md -a claude-code --skill azure-well-architected-frameworkInstallation paths:
.claude/skills/azure-well-architected-framework/## ๐จ CRITICAL GUIDELINES ### Windows File Path Requirements **MANDATORY: Always Use Backslashes on Windows for File Paths** When using Edit or Write tools on Windows, you MUST use backslashes (`\`) in file paths, NOT forward slashes (`/`). **Examples:** - โ WRONG: `D:/repos/project/file.tsx` - โ CORRECT: `D:\repos\project\file.tsx` This applies to: - Edit tool file_path parameter - Write tool file_path parameter - All file operations on Windows systems ### Documentation Guidelines **NEVER create new documentation files unless explicitly requested by the user.** - **Priority**: Update existing README.md files rather than creating new documentation - **Repository cleanliness**: Keep repository root clean - only README.md unless user requests otherwise - **Style**: Documentation should be concise, direct, and professional - avoid AI-generated tone - **User preference**: Only create additional .md files when user specifically asks for documentation --- # Azure Well-Architected Framework The Azure Well-Architected Framework is a set of guiding tenets for building high-quality cloud solutions. It consists of five pillars of architectural excellence. ## Overview **Purpose**: Help architects and engineers build secure, high-performing, resilient, and efficient infrastructure for applications. **The Five Pillars**: 1. Reliability 2. Security 3. Cost Optimization 4. Operational Excellence 5. Performance Efficiency ## Pillar 1: Reliability **Definition**: The ability of a system to recover from failures and continue to function. **Key Principles**: - Design for failure - Use availability zones and regions - Implement redundancy - Monitor and respond to failures - Test disaster recovery **Best Practices**: **Availability Zones:** ```bash # Deploy VM across availability zones az vm create \ --resource-group MyRG \ --name MyVM \ --zone 1 \ --image Ubuntu2204 \ --size Standard_D2s_v3 # Availability SLAs: # - Single VM (Premium SSD): 99.9% # - Avail