go
Installation
SKILL.md
/go — Browser check
Verify your work in the browser instead of trusting that code compiles. Use whatever browser tools the environment offers (Chrome extension, next-devtools MCP, Playwright — whichever is reachable). If login is needed, credentials usually live in .env.local or the project's secrets manager.
Two things are easy to miss:
- Functional verification — did the page actually return what was expected? Searching for "X" should show results containing X, not just render without errors.
- Console and network — JS errors and 4xx/5xx are silent killers.
If something is broken, fix → reload → verify again. Don't thrash on the same issue — ask for direction instead.