Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
spencerpauly avatar

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-browser

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs297
repo stars655
Last updatedAugust 2, 2026
Repositoryspencerpauly/awesome-cursor-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

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 dev

Set 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_messages

Flag any errors. Warnings about deprecations can be noted but aren't blockers.

Network failures:

   Tool: browser_network_requests

Flag 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_snapshot to 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.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.