Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Select, configure, and scale Azure compute resources—VMs, App Service, AKS, and Container Apps
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
workflows/vm-recommender/references/handoff-to-creator.md
1# Hand-off to vm-creator23When the user wants to **provision** the recommended option (not just compare), hand off to [vm-creator](../../vm-creator/vm-creator.md). Don't skip directly to an output adapter — the user must see and approve the Plan Card first.45## Required before hand-off67Render the [Plan Card](../../vm-creator/references/plan-card.md) markdown table **in chat** with the chosen SKU, region, instance count, pricing, and quota status pre-filled from the recommender's work. The user is approving the Plan Card, not the artifact.89## Routing signals1011| User says | Action |12|---|---|13| "let's create it" / "spin one up" / "deploy this" | Render Plan Card → route to `vm-creator` Step 5 with selected SKU + region pre-filled |14| "give me the az CLI / Bicep / Terraform" | Render Plan Card → route to `vm-creator` Step 6 (Output Choice) |15| "just compare prices" / "I'm still deciding" | Stay in `vm-recommender`; offer to revisit |1617## Example hand-off message1819> *"Want me to generate the create command? I can output az CLI, Bicep, Terraform, or apply it via Azure MCP — I'll carry over the SKU, region, and pricing we just landed on."*2021## What carries over2223| Recommender output | Plan Card row |24|---|---|25| Hosting Model (VM vs VMSS) | `Hosting model` |26| VM Size (ARM SKU) | `Size` |27| Region | `Region` |28| Instance Count (or `min–max`) | `Instance count` (VMSS only) |29| Estimated $/hr | `Estimated cost` |30| Quota Status (✅/⚠️/❌) | `Quota` |3132`vm-creator` Steps 2–4 (Depth Probe, Adaptive Gather, Validate) still run after hand-off to fill in OS, auth, networking, and tagging — they're additive on top of the recommender's spec choice.33