
Show HN: Frontend-VisualQA — give coding agents eyes to verify their own UI workCoding agents today are blind.They write “valid” HTML/CSS code but can still ship a broken layout, a clipped dropdown, or a page at the wrong URL. Playwright scripts can assert modal.isVisible() without knowing the modal is rendered off-screen.Essentially, coding agents need “eyes” to verify their own UI work.frontend-visualqa is a CLI + MCP server for Claude Code and Codex for visual testing, verification, and QA of a website.You give it a URL and natural-language claims: frontend-visualqa verify http://localhost:8000/dashboard.html \ --claims \ 'The API status indicator shows Active' \ 'The monthly quota progress bar is completely filled' # → first claim passes, second fails (label says 100% but bar is ~65% full) It catches visualDOM disagreements that selectors are blind to.You can also test interactive flows without hardcoded data: frontend-visualqa verify 'http://localhost:8000/booking_form.html' \ --claims 'The date on the confirmation page matches the date selected on the calend
