Demo: Investigate a Bug End-to-End
📹 Record this as a demo
1
az boards work-item show --id 12345
Read the bug: "Context menu crashes on right-click"
2
az kusto query --query "CrashEvents | where bucket == '...'"
Check crash telemetry: 847 hits/day, started Feb 24
→ Spike correlates with build 26100.1205
3
git log --since="2025-02-23" -- src/ContextMenu/
Find code changes: 3 PRs merged Feb 23-24
→ PR #67890 refactored Initialize() method
4
git diff HEAD~3 -- src/ContextMenu/Initialize.cpp
Read the diff: null check removed during refactor
→ Root cause: m_provider accessed before null check
5
Agent writes fix + creates PR
Restores null check, adds regression test, links to bug
~8 minutes
From "what's this bug?" to PR with fix. No browser tabs opened.