Iterate with Browser
Debug and iterate using browser tools. Never ask the user to test manually.
Workflow
- •Add
debug.logtraces to key code locations - •Use browser tools (
browser_navigate,browser_click,browser_snapshot, etc.) to reproduce the issue and collect trace output - •Analyze traces, identify the problem, and implement a fix
- •Repeat until the issue is resolved
Key Principle
Never ask the user to "try it out" or "let me know if it works" - verify everything yourself using browser tools and debug.log traces.