azure-cloud-architect

Designs Azure architectures and generates Bicep templates with cost optimization recommendations.

Updated Aug 14, 2026
One-click install
npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill azure-cloud-architect-rohithdgrr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: azure-cloud-architect
Source: https://github.com/Rohithdgrr/REEK-uninstaller/tree/main/.opencode/skills/azure-cloud-architect
Command: npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill azure-cloud-architect-rohithdgrr

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Choosing the right Azure services, estimating costs, and writing infrastructure-as-code from scratch is time-consuming and error-prone. This Skill guides you through a structured 6-step workflow to design Azure architectures, generate Bicep templates, review costs, and validate security before deployment. ## Core Features & Use Cases - Architecture Pattern Recommendation: The architecture_designer.py script maps application type and user scale to proven patterns (App Service web, AKS microservices, serverless, data pipeline, multi-region) with service stacks, cost estimates, and pros/cons. - Bicep Template Generation: The bicep_generator.py script produces production-oriented Bicep scaffolds for web-app, microservices, serverless, and data-pipeline architectures with Managed Identity, Key Vault, and monitoring built in. - Cost Optimization: The cost_optimizer.py script analyzes resource configurations and recommends right-sizing, Reserved Instances, and storage tier changes with estimated savings. - Use Case: A startup needs a web app backend for 10,000 users under $500/month with SOC 2 compliance. The Skill recommends App Service + Azure SQL Serverless + Front Door, generates the Bicep template, and provides a security checklist. ## Quick Start Ask the assistant to design an Azure architecture for your application type, expected users, and monthly budget, then generate the matching Bicep template.

Frequently Asked Questions about azure-cloud-architect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I design an Azure architecture for a web application?▼

Run architecture_designer.py with --app-type web_app and your expected user count to get a recommended pattern, service stack, and cost estimate. Then generate the infrastructure with bicep_generator.py --arch-type web-app to produce a Bicep template covering App Service, Azure SQL, Key Vault, and monitoring.

How do I generate Bicep templates for Azure infrastructure?▼

Use bicep_generator.py with --arch-type set to web-app, microservices, serverless, or data-pipeline. It outputs a Bicep scaffold with Managed Identity, Key Vault, diagnostic settings, and tagging, which you can validate with az bicep build before deploying.

Should I use Bicep or ARM JSON templates for Azure?▼

Bicep is recommended for new Azure projects because it compiles to ARM JSON, has cleaner syntax, supports modules, and is first-party supported by Microsoft. ARM JSON should only be used when generated from Bicep output.

How do I reduce Azure costs for existing resources?▼

Run cost_optimizer.py with a JSON file describing your current resources to get prioritized recommendations. Typical savings come from right-sizing SQL databases, purchasing Reserved Instances for steady workloads, and moving blob storage to cooler tiers.

When should I choose AKS over Azure Container Apps?▼

Choose AKS when you need full Kubernetes control, multiple node pools, and a mature ecosystem for complex multi-team platforms. Choose Container Apps for simpler microservices that benefit from scale-to-zero, built-in Dapr, and no cluster management overhead.

Why does my Azure Bicep deployment fail?▼

Common causes include missing RBAC permissions on the resource group, unregistered resource providers, globally-unique naming conflicts, and exceeded quotas. Validate first with az bicep build and az deployment group validate, then check the deployment error via az deployment group show.