Skip to content
Trainer Demo Deploy
Microsoft Learning · trainer demos

Demo. Deploy.

A trainer-first catalog of azd templates and bring-your-own-demo scaffolds. Browse curated scenarios, or describe a demo and let the Conductor scaffold the infra, code, and demo guide for you.

$ azd init $ azd up
Chat
Trainer Demo Deploy — BYOD Azure scaffold
trainer

Build me an Azure Container Apps demo with Service Bus producer and KEDA scaling. Target AI-200.

GitHub Copilot

Got it. I'll search the catalog, then scaffold infra + a .NET 8 producer + a demo guide.

searched template catalog

looking for aca + servicebus

Found 0 matches · using closest for AI-200

GitHub Copilot

Generating Bicep with managed identity, KEDA scaler, and an ACR.

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddAzureClients(c =>
    c.AddServiceBusClientWithNamespace("<ns>.servicebus.windows.net")
     .WithCredential(new DefaultAzureCredential()));

var app = builder.Build();
app.MapPost("/orders", async (Order o, ServiceBusSender s) =>
{
    await s.SendMessageAsync(new(BinaryData.FromObjectAsJson(o)));
    return Results.Accepted();
});
app.Run();
  • infra/main.bicep +92
  • infra/aca.bicep +64
  • infra/sb.bicep +38
  • src/Program.cs +32
  • src/Orders.cs +21
  • old/legacy.cs -12
Generated 12 files across infra, app, and demo guide

Your demo includes:

  • Container Apps env with KEDA Service Bus scaler
  • Service Bus namespace + queue, managed identity (no keys)
  • .NET 8 minimal API producer container
  • 5-step demo guide with screenshot placeholders

Run azd up when you're ready — provisioning takes about 4 minutes.

Build BYOD Azure scaffold for AI-200 (0/12)
0 files changed +0 -0
Trainer Demo Deploy — Demos, …
Describe what to build
Conductor Claude Opus 4.7
Chat
Trainer Demo Deploy — BYOD Copilot Studio scaffold
trainer

Build me a Copilot Studio IT-Triage agent with knowledge lookup and an escalation topic.

GitHub Copilot

On it. I'll draft topics, knowledge sources, and an escalation flow.

searched gallery

looking for cps agent templates

Found 1 reference solution · adapting for MS-4006

GitHub Copilot

Generating Topic YAML for the IT-Triage scenario.

name: greet
trigger: { phrases: [hi, hello, "I need help"] }
actions:
  - say: "Hi! I'm IT-Triage. What's the issue today?"
  - prompt: ticket_summary
branches:
  access:   { goto: kb_lookup }
  hardware: { goto: escalate_to_human }
  • solution/Bots/IT-Triage/Topics/greeting.yaml +24
  • solution/Bots/IT-Triage/Topics/classify-ticket.yaml +62
  • solution/Bots/IT-Triage/Topics/kb-lookup.yaml +44
  • solution/Bots/IT-Triage/Topics/escalate.yaml +38
  • solution/Bots/IT-Triage/Topics/fallback.yaml +20
Generated 14 files: topics, knowledge sources, and demo guide

Your agent includes:

  • 5 topics covering classify, lookup, and escalate paths
  • SharePoint knowledge source binding
  • Microsoft Teams channel setup
  • Trainer demo guide with 3 scripted prompts

Import solution/IT-Triage.zip into Copilot Studio to publish.

Build BYOD Copilot Studio agent for MS-4006 (0/14)
0 files changed +0 -0
Trainer Demo Deploy — Demos, …
Describe what to build
Conductor Claude Opus 4.7
Chat
OPX STRESS TEST — every step kind & feature
tester

Exercise every step kind, including bold, italic, code, and a link.

GitHub Copilot

A Bicep snippet to verify the param / resource / output keywords and Microsoft.X/Y@version types both light up:

param location string = resourceGroup().location

resource sb 'Microsoft.ServiceBus/namespaces@2022-10-01' = {
  name: 'sb-${uniqueString(resourceGroup().id)}'
  location: location
  sku: { name: 'Standard' }
}

output connection string = listKeys(sb.id, sb.apiVersion).primaryConnectionString
ran az deployment what-if

validating template against subscription Visual Studio Enterprise

0 errors · 6 resources to create

  • infra/main.bicep +40
  • infra/sb.bicep +22
  • infra/legacy/old.json -8
  • infra/aca.bicep
Every step kind exercised

Includes:

  • user + agent + tool + files + summary + status
  • All four file ops (add, edit, delete, rename)
  • Bicep highlighter coverage

All step kinds rendered ✔

Exercise every step kind, file op, tool kind, and status kind (0/12)
0 files changed +0 -0
Trainer Demo Deploy — Demos, …
Describe what to build
Conductor Claude Opus 4.7
Three ways in

Pick a path

Start from the curated catalog, or let agents build a brand-new demo with you.