After architecture planning, research each selected component to gather best practices before generating artifacts.
- Identify Components — List all Azure services from architecture plan
- Load Service References — For each service, load
services/<service>/README.mdfirst, then specific references as needed - Check Resource Naming Rules — For each resource type, check resource naming rules for valid characters, length limits, and uniqueness scopes
- Load Recipe References — Load the selected recipe's guide (e.g., AZD) and its IAC rules, MCP best practices, and schema tools listed in its "Before Generation" table
- Check Region Availability — Verify all selected services are available in the target region per region-availability.md
- Load Runtime References — For containerized apps, load language-specific production settings (e.g., Node.js)
- Invoke Related Skills — For deeper guidance, invoke mapped skills from the table below
- Document Findings — Record key insights in
.azure/plan.md
| Azure Service | Reference | Related Skills |
|---|---|---|
| Hosting | ||
| Container Apps | Container Apps | azure-diagnostics, azure-observability, azure-nodejs-production |
| App Service | App Service | azure-diagnostics, azure-observability, azure-nodejs-production |
| Azure Functions | Functions | — |
| Static Web Apps | Static Web Apps | — |
| AKS | AKS | azure-networking, azure-security-hardening |
| Data | ||
| Azure SQL | SQL Database | azure-security |
| Cosmos DB | Cosmos DB | azure-security |
| PostgreSQL | — | — |
| Storage (Blob/Files) | Storage | azure-storage, azure-security-hardening |
| Messaging | ||
| Service Bus | Service Bus | — |
| Event Grid | Event Grid | — |
| Event Hubs | — | — |
| Integration | ||
| API Management | APIM | azure-aigateway (invoke for AI Gateway policies) |
| Logic Apps | Logic Apps | — |
| Security & Identity | ||
| Key Vault | Key Vault | azure-security, azure-keyvault-expiration-audit |
| Managed Identity | — | azure-security, entra-app-registration |
| Observability | ||
| Application Insights | App Insights | appinsights-instrumentation (invoke for instrumentation) |
| Log Analytics | — | azure-observability, azure-kusto |
| AI Services | ||
| Azure OpenAI | Foundry | microsoft-foundry (invoke for AI patterns and model guidance) |
| AI Search | — | azure-ai (invoke for search configuration) |
For each selected service, load the README.md first, then load specific files as needed:
Selected: Container Apps, Cosmos DB, Key Vault
→ Load: services/container-apps/README.md (overview)
→ If need Bicep: services/container-apps/bicep.md
→ If need scaling: services/container-apps/scaling.md
→ If need health probes: services/container-apps/health-probes.md
→ Load: services/cosmos-db/README.md (overview)
→ If need partitioning: services/cosmos-db/partitioning.md
→ If need SDK: services/cosmos-db/sdk.md
→ Load: services/key-vault/README.md (overview)
→ If need SDK: services/key-vault/sdk.md
Invoke related skills for specialized scenarios:
| Scenario | Action |
|---|---|
| Using GitHub Copilot SDK | Invoke azure-hosted-copilot-sdk (scaffold + config, then resume azure-prepare) |
| Using Azure Functions | Stay in azure-prepare — load selection.md → Follow composition.md algorithm |
| PostgreSQL with passwordless auth | Handle directly without a separate skill |
| Need detailed security hardening | azure-security-hardening |
| Setting up App Insights instrumentation | appinsights-instrumentation |
| Building AI applications | microsoft-foundry |
| Cost-sensitive deployment | azure-cost-optimization |
Skill/Reference Invocation Pattern:
For Azure Functions:
- Load: selection.md (decision tree)
- Follow: composition.md (algorithm)
- Result: Base template + recipe composition (never synthesize IaC)
For PostgreSQL:
- Handle passwordless auth patterns directly without a separate skill
Add research findings to .azure/plan.md under a ## Research Summary section with source references and key insights per component.
- Load: services/container-apps/README.md → bicep.md, scaling.md
- Load: services/cosmos-db/README.md → partitioning.md
- Load: services/key-vault/README.md
- Invoke:
azure-observability(monitoring setup) - Invoke:
azure-security-hardening(security baseline)
- Load: services/functions/README.md (contains mandatory composition workflow)
- Load: services/event-grid/README.md or services/service-bus/README.md (if using messaging)
- Load: services/storage/README.md (if using queues/blobs)
- Invoke:
azure-observability(distributed tracing)
- Invoke:
microsoft-foundry(AI patterns and best practices) - Load: services/container-apps/README.md → bicep.md
- Load: services/cosmos-db/README.md → partitioning.md (vector storage)
- Invoke:
azure-security(API key management)
- Invoke:
azure-hosted-copilot-sdkskill (scaffold, infra, model config) - After it completes, resume azure-prepare workflow (validate → deploy)
Proceed to Generate Artifacts step with research findings applied.