What problem does it solve? Deploying Bicep templates to Azure without validation can cause failed deployments, unexpected resource changes, or permission errors discovered only mid-deployment. This Skill runs a complete preflight check so you can preview changes and catch issues before any resource is touched. ## Core Features & Use Cases - Bicep Syntax Validation: Runs bicep build to catch compilation errors with exact line and column numbers before deployment. - What-If Analysis: Executes az deployment what-if or azd provision --preview to preview resources that will be created, modified, or deleted across resource group, subscription, management group, and tenant scopes. - Permission & Fallback Handling: Detects RBAC permission failures and automatically falls back from Provider to ProviderNoRbac validation, documenting limitations in the report. - Structured Report Generation: Produces a preflight-report.md in the project root summarizing issues, change counts, and actionable recommendations. - Use Case: Before running azd up on a project with infra/main.bicep, activate this Skill to confirm the template compiles, preview the three new resources it will create, and verify your account has sufficient deployment permissions. ## Quick Start Validate my Bicep deployment and generate a preflight report before I run azd provision.