Demo: Agent Queries Kusto

📹 Record this as a demo
Scenario: "Are crashes up this week for my component?"
The agent reads your skill file, picks the right cluster, writes KQL, runs it, and summarizes.
You: Are Shell crashes up this week compared to last?

Agent: Reading AGENTS.md for Kusto config...
Agent: Running query on shellprod.kusto.windows.net

az kusto query --cluster shellprod --database ShellTelemetry \
  --query "CrashEvents | where binary == 'explorer.exe' | where timestamp > ago(14d) | summarize ThisWeek=countif(timestamp > ago(7d)), LastWeek=countif(timestamp between(ago(14d)..ago(7d)))"


────────────────────────────
Agent:
Shell crashes are up 23% this week (1,847 vs 1,502 last week).
The spike started Tuesday. Top bucket: NullRef in
ContextMenu.Initialize() — 634 hits. Want me to dig into
that specific crash?