
Verifying In Browser
- 297 installs
- 655 repo stars
- Updated August 2, 2026
- spencerpauly/awesome-cursor-skills
Helps with ai & agent building tasks.
About
verifying-in-browser is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- verifying-in-browser
- AI & Agent Building
- AI-coding skill
Verifying In Browser by the numbers
- 297 all-time installs (skills.sh)
- +38 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #2,305 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/spencerpauly/awesome-cursor-skills --skill verifying-in-browserAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 297 |
|---|---|
| repo stars | ★ 655 |
| Last updated | August 2, 2026 |
| Repository | spencerpauly/awesome-cursor-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Verify in Browser
Use this skill proactively after making code changes to verify the app actually works. Don't just trust that the code is correct — launch it and check.
Steps
1. Start the dev server in the background — check if one is already running by listing terminals. If not:
npm run devSet block_until_ms: 0 to run it in the background. Then poll until you see the "ready" message with the localhost URL.
2. Open in the side browser — launch the app beside your code:
Tool: browser_navigate
Arguments: { "url": "http://localhost:3000", "position": "side", "take_screenshot_afterwards": true }3. Quick health check — run these three checks:
Console errors:
Tool: browser_console_messagesFlag any errors. Warnings about deprecations can be noted but aren't blockers.
Network failures:
Tool: browser_network_requestsFlag any 4xx/5xx responses, failed fetches, or CORS errors.
Visual check: Review the screenshot. Does the page render? Is the layout correct? Are there any blank screens or loading spinners that never resolve?
4. Navigate to the changed page — if your changes are on a specific route, navigate there and repeat the checks.
5. Test interactions — if you changed a form, button, or interactive element:
- Take a
browser_snapshotto get element refs - Click, fill, or hover on the changed elements
- Take another screenshot to verify the result
6. Report the verdict — tell the user:
- "Verified in browser — page renders correctly, no console errors, all network requests healthy."
- Or: "Found issues: [list of problems]"
When to Use This
- After changing any React component, CSS, or layout code
- After modifying API routes or data fetching
- After updating environment variables or configuration
- After installing or removing dependencies
- Before committing — as a final sanity check
Notes
- Use
position: "side"to see code and browser at the same time. - If the dev server is already running, skip step 1 and go straight to navigating.
- For SSR apps, check both the initial server-rendered HTML and the client-hydrated state.