What problem does it solve?
Static code review cannot catch bugs that only appear when a UI actually runs — broken event handlers, layout overflow, missing loading states, or features whose behavior diverges from what users expect. This Skill operates a live VS Code instance to verify UI-bearing work end-to-end, from tactical bug fixes to ship-gate audits.
Core Features & Use Cases
- Four-lens live auditing: Applies functional walk-through (L1), intent compliance via cold-read (L2), UX heuristics polish (L3), and opportunistic improvement hunting (L4) on every sweep of the running UI.
- Iterative fix-and-verify loop: Compiles findings into structured docs, dispatches parallel fix agents, rebuilds, re-measures, and re-sweeps until convergence across simplify and performance gates.
- Evidence-based verification: Uses the vscode-inspector MCP tools (evaluate_in_webview, aria_snapshot, read_console) to confirm handlers fired and state updated, rather than trusting diffs or type checks.
- Use Case: After refactoring a GitLens webview panel, invoke the skill to launch VS Code, exercise every state of the panel, catch a missing loading spinner and a console error, dispatch fix agents, and verify the fixes live before shipping.
Quick Start
Ask the AI to run /live-exercise on the feature you just changed so it launches the extension, exercises the UI live, and fixes any issues it finds.