name: maui-devflow-debug description: >- Run build, deploy, inspect, and fix loops for .NET MAUI apps that already have MAUI DevFlow integrated. USE FOR: launching MAUI apps, selecting devices or emulators, waiting for or recovering agent connections, broker/port/adb connectivity issues, visual tree inspection, screenshots, UI interaction, Blazor WebView CDP debugging, reading DevFlow logs, and iterative app debugging. DO NOT USE FOR: first-time DevFlow package setup (use maui-devflow-onboard), or generic desktop automation unrelated to MAUI. INVOKES: maui devflow CLI, dotnet CLI, Android adb/android tools, and Apple simctl tools.
DevFlow Debug
Use this skill for the active debugging loop after a MAUI app has DevFlow
packages and builder.AddMauiDevFlowAgent() registered.
When to Use
- Build and run a MAUI app on Android, iOS, Mac Catalyst, macOS, Windows, or GTK.
- Choose or create a simulator/emulator for a project.
- Wait for a DevFlow agent, inspect the visual tree, tap/fill UI, or capture screenshots.
- Recover from DevFlow connection failures after the app is integrated, including broker, port, and Android adb forwarding issues.
- Debug Blazor Hybrid content through DevFlow WebView/CDP commands.
- Read app logs, network captures, preferences, device info, or recordings through DevFlow.
- Iterate on an app bug with a build -> deploy -> inspect -> fix loop.
Route Elsewhere
- If DevFlow packages or
MauiProgram.csregistration are missing, usemaui-devflow-onboard. - If the failure is a generic build or SDK issue with no DevFlow angle, use normal .NET/MAUI diagnostics.
Core Loop
Confirm the app is already integrated:
grep -rl "Microsoft.Maui.DevFlow" --include="*.csproj" .If no project has DevFlow package references, stop and switch to
maui-devflow-onboard.Pick the target framework and launch target. Do not assume
net10.0; inspect the project first.grep -i "TargetFramework" *.csproj Directory.Build.props 2>/dev/nullStart or select the device/emulator. For Android and iOS, avoid reusing a simulator/emulator that is already running another app under investigation.
Launch the app and keep the launch process alive when required.
- iOS, Android, and Mac Catalyst
dotnet build -t:Runusually block for the app lifetime. - GTK
dotnet runblocks for the app lifetime. - macOS AppKit builds can exit after compiling; launch the
.appseparately.
- iOS, Android, and Mac Catalyst
Wait for the DevFlow agent before inspecting UI:
maui devflow wait maui devflow ui tree --depth 3 --fields "id,type,text,automationId"If
wait,list, orui treecannot connect after the app is running, loadreferences/connectivity.mdand recover the broker/agent connection before continuing.Inspect, interact, capture evidence, then edit the app and repeat from launch.
Critical Anti-patterns
- Do not treat an empty
maui devflow listas proof the project is not integrated.listis runtime state; project files are source of truth. - Do not use arbitrary sleeps after launch. Use
maui devflow waitto gate on the actual agent connection. - Do not kill an async
dotnet build -t:Runordotnet runshell while you still need the app; that often kills the app. - Do not reuse a busy simulator/emulator when multiple MAUI apps or agents may be running.
- Do not debug Blazor WebView DOM issues through the native visual tree alone; use the WebView/CDP commands.
Stop Signals
- Stop and switch to
maui-devflow-onboardwhen package references orAddMauiDevFlowAgent()are absent. - Stop and ask which project, device, or agent to target when multiple candidates match.
- Stop rebuilding after two identical failures until you inspect the first meaningful build/runtime error.
- Stop using screenshots for exact property values; query the visual tree or properties instead.
Reference Map
Load these only when needed:
references/setup.md- detailed integration, package, entitlement, and update notes.references/connectivity.md- broker, agent, port, Android forwarding, and "no agents connected" recovery.references/android.md- Android SDK, emulator, adb, build, deploy, and port forwarding details.references/ios-and-mac.md- iOS simulator, Mac Catalyst, permissions, entitlements, and Apple tooling.references/macos.md- macOS AppKit project shape, launch model, and troubleshooting.references/linux.md- GTK/Linux launch, packages, and WebKitGTK notes.references/batch.md- batching multiple DevFlow UI/WebView operations.references/troubleshooting.md- build, connection, CDP, and platform-specific failure recovery.