Azure Smart City IoT Solution Builder
Use this skill to rebuild and standardize a complete workflow for Azure IoT and Smart City solutions.
When to use it
Use this skill when the user asks for things like:
- "I want to build an IoT solution on Azure"
- "Smart City architecture for traffic, lighting, or waste"
- "How do I connect devices, analytics, and alerts?"
- "I need a roadmap and backlog for an urban platform"
Objectives
- Convert a high-level idea into a deployable architecture.
- Reuse existing Azure-focused skills whenever possible.
- Produce concrete artifacts the team can implement.
Workflow
0) Mandatory documentation review (before any architecture)
Before proposing architecture or technology decisions that involve edge computing, review Azure IoT Edge documentation first:
Minimum pages to review:
- What is Azure IoT Edge
- Runtime architecture
- Supported systems
- Version history/release notes
- Relevant Linux/Windows quickstarts for the scenario
If documentation cannot be consulted, state this explicitly and continue with clearly marked assumptions.
1) Scope and constraints
Collect and confirm:
- City domain: mobility, parking, air quality, water, energy, public safety, waste, etc.
- Scale: number of devices, telemetry frequency, retention, regions.
- Latency and availability objectives.
- Regulatory and privacy constraints.
- Existing systems to integrate (SCADA, GIS, ERP, ticketing, APIs).
2) Capability map
Split the platform into layers:
- Device and edge: onboarding, identity, firmware, OTA, edge processing.
- Ingestion and messaging: command and control, event routing, buffering.
- Data and analytics: hot path vs cold path, dashboards, historical analysis.
- Operations: observability, incident flow, SLOs.
- Governance: RBAC, secrets, policies, network isolation.
3) Azure service selection (reference)
- Device connectivity: Azure IoT Hub, Azure IoT Operations, IoT Edge.
- Event streaming: Event Hubs, Service Bus, Event Grid.
- Storage: Blob Storage, Data Lake, Cosmos DB, SQL.
- Analytics: Azure Data Explorer, Stream Analytics, Fabric/Synapse.
- APIs and applications: API Management, App Service, Container Apps, Functions.
- Monitoring: Azure Monitor, Application Insights, Log Analytics.
- Security: Key Vault, Defender for IoT, Private Endpoints, Managed Identity.
4) Non-functional design
Define and document:
- Reliability model (zones/regions, retries, dead-letter handling, replay).
- Security controls (zero trust, encryption, secret rotation, least privilege).
- Cost controls (retention tiers, rightsizing, autoscaling, workload scheduling).
- Data lifecycle (raw, curated, aggregated, archived).
5) Delivery plan
Create a phased execution:
- Phase 1: Pilot district or single use case.
- Phase 2: Multi-domain integration.
- Phase 3: City-scale rollout and optimization.
For each phase, include:
- Exit criteria
- Dependencies
- Risks and mitigations
- KPI set
Reuse other skills first
There are two sources of skills:
- Runtime-provided skills (external to this repository): only available when the Copilot host environment exposes them.
- Local repository skills (this repository): available as local files under
skills/.
Runtime-provided Azure skills (optional)
If they are available in the execution environment, delegate to these specialized skills for deeper guidance:
azure-kubernetes
azure-messaging
azure-observability
azure-storage
azure-rbac
azure-cost
azure-validate
azure-deploy
Local repository alternatives (use in this repo)
When runtime skills are not available, prioritize existing local skills in this repository:
azure-architecture-autopilot for architecture generation and refinement.
azure-resource-visualizer for resource relationship diagrams.
azure-role-selector for role selection guidance.
az-cost-optimize and azure-pricing for cost and pricing analysis.
azure-deployment-preflight for pre-deployment checks.
appinsights-instrumentation for telemetry instrumentation patterns.
If no specialized skill is available, continue with this skill and keep assumptions explicit.
Required output artifacts
Always provide these outputs:
- Smart City solution summary (scope, assumptions, constraints).
- Reference architecture (components and data flow).
- Security and governance checklist.
- Cost and scaling strategy.
- Phased implementation backlog (epics and milestones).
Output template
Use this response structure:
- Context and objectives
- Proposed architecture
- Technology decisions and trade-offs
- Security, operations, and cost controls
- Phased implementation plan
- Risks and open questions
Guidelines
- Do not jump to deployment before validating prerequisites.
- Do not recommend single-region production for critical city workloads.
- Do not omit operational ownership (who handles incidents, SLAs, change windows).
- Clearly separate assumptions from confirmed facts.
Source: github/awesome-copilot → skills/azure-smart-city-iot-solution-builder/SKILL.md
1---2name: azure-smart-city-iot-solution-builder3description: Design and plan end-to-end Azure IoT and Smart City solutions: requirements, architecture, security, operations, cost, and a phased delivery plan with concrete implementation artifacts.4---5# Azure Smart City IoT Solution Builder
6
7Use this skill to rebuild and standardize a complete workflow for Azure IoT and Smart City solutions.
8
9## When to use it
10
11Use this skill when the user asks for things like:
12
13- "I want to build an IoT solution on Azure"
14- "Smart City architecture for traffic, lighting, or waste"
15- "How do I connect devices, analytics, and alerts?"
16- "I need a roadmap and backlog for an urban platform"
17
18## Objectives
19
20- Convert a high-level idea into a deployable architecture.
21- Reuse existing Azure-focused skills whenever possible.
22- Produce concrete artifacts the team can implement.
23
24## Workflow
25
26### 0) Mandatory documentation review (before any architecture)
27
28Before proposing architecture or technology decisions that involve edge computing, review Azure IoT Edge documentation first:
29
30- https://learn.microsoft.com/azure/iot-edge/
31
32Minimum pages to review:
33
34- What is Azure IoT Edge
35- Runtime architecture
36- Supported systems
37- Version history/release notes
38- Relevant Linux/Windows quickstarts for the scenario
39
40If documentation cannot be consulted, state this explicitly and continue with clearly marked assumptions.
41
42### 1) Scope and constraints
43
44Collect and confirm:
45
46- City domain: mobility, parking, air quality, water, energy, public safety, waste, etc.
47- Scale: number of devices, telemetry frequency, retention, regions.
48- Latency and availability objectives.
49- Regulatory and privacy constraints.
50- Existing systems to integrate (SCADA, GIS, ERP, ticketing, APIs).
51
52### 2) Capability map
53
54Split the platform into layers:
55
56- Device and edge: onboarding, identity, firmware, OTA, edge processing.
57- Ingestion and messaging: command and control, event routing, buffering.
58- Data and analytics: hot path vs cold path, dashboards, historical analysis.
59- Operations: observability, incident flow, SLOs.
60- Governance: RBAC, secrets, policies, network isolation.
61
62### 3) Azure service selection (reference)
63
64- Device connectivity: Azure IoT Hub, Azure IoT Operations, IoT Edge.
65- Event streaming: Event Hubs, Service Bus, Event Grid.
66- Storage: Blob Storage, Data Lake, Cosmos DB, SQL.
67- Analytics: Azure Data Explorer, Stream Analytics, Fabric/Synapse.
68- APIs and applications: API Management, App Service, Container Apps, Functions.
69- Monitoring: Azure Monitor, Application Insights, Log Analytics.
70- Security: Key Vault, Defender for IoT, Private Endpoints, Managed Identity.
71
72### 4) Non-functional design
73
74Define and document:
75
76- Reliability model (zones/regions, retries, dead-letter handling, replay).
77- Security controls (zero trust, encryption, secret rotation, least privilege).
78- Cost controls (retention tiers, rightsizing, autoscaling, workload scheduling).
79- Data lifecycle (raw, curated, aggregated, archived).
80
81### 5) Delivery plan
82
83Create a phased execution:
84
85- Phase 1: Pilot district or single use case.
86- Phase 2: Multi-domain integration.
87- Phase 3: City-scale rollout and optimization.
88
89For each phase, include:
90
91- Exit criteria
92- Dependencies
93- Risks and mitigations
94- KPI set
95
96## Reuse other skills first
97
98There are two sources of skills:
99
100- Runtime-provided skills (external to this repository): only available when the Copilot host environment exposes them.
101- Local repository skills (this repository): available as local files under `skills/`.
102
103### Runtime-provided Azure skills (optional)
104
105If they are available in the execution environment, delegate to these specialized skills for deeper guidance:
106
107- `azure-kubernetes`
108- `azure-messaging`
109- `azure-observability`
110- `azure-storage`
111- `azure-rbac`
112- `azure-cost`
113- `azure-validate`
114- `azure-deploy`
115
116### Local repository alternatives (use in this repo)
117
118When runtime skills are not available, prioritize existing local skills in this repository:
119
120- `azure-architecture-autopilot` for architecture generation and refinement.
121- `azure-resource-visualizer` for resource relationship diagrams.
122- `azure-role-selector` for role selection guidance.
123- `az-cost-optimize` and `azure-pricing` for cost and pricing analysis.
124- `azure-deployment-preflight` for pre-deployment checks.
125- `appinsights-instrumentation` for telemetry instrumentation patterns.
126
127If no specialized skill is available, continue with this skill and keep assumptions explicit.
128
129## Required output artifacts
130
131Always provide these outputs:
132
1331. Smart City solution summary (scope, assumptions, constraints).
1342. Reference architecture (components and data flow).
1353. Security and governance checklist.
1364. Cost and scaling strategy.
1375. Phased implementation backlog (epics and milestones).
138
139## Output template
140
141Use this response structure:
142
1431. Context and objectives
1442. Proposed architecture
1453. Technology decisions and trade-offs
1464. Security, operations, and cost controls
1475. Phased implementation plan
1486. Risks and open questions
149
150## Guidelines
151
152- Do not jump to deployment before validating prerequisites.
153- Do not recommend single-region production for critical city workloads.
154- Do not omit operational ownership (who handles incidents, SLAs, change windows).
155- Clearly separate assumptions from confirmed facts.
156
157---
158
159**Source:** [`github/awesome-copilot`](https://github.com/github/awesome-copilot) → `skills/azure-smart-city-iot-solution-builder/SKILL.md`