Demo: Inspect Live UI
📹 Record this as a demo
Before lvt, AI agents were blind to Windows UI.
They could write XAML but couldn't see what it rendered.
You: What's the visual tree of the Settings app right now?
Agent: Inspecting live XAML tree via lvt...
lvt --process SettingsApp --depth 3 --format json
{
"type": "NavigationView",
"children": [
{ "type": "StackPanel", "name": "ContentArea",
"children": [
{ "type": "TextBlock", "text": "System" },
{ "type": "ListView", "items": 12 }
]
}
]
}
lvt = a CLI. No MCP server. No protocol. Just a binary that outputs JSON.
The agent reads JSON. That's it.