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

Browser

  • 396 installs
  • 303 repo stars
  • Updated April 20, 2026
  • iamzhihuix/happy-claude-skills

browser is an agent skill that drives real browser sessions for UI verification, authenticated form flows, live web research, and interactive testing inside autonomous agent loops.

About

browser is a skill from iamzhihuix/happy-claude-skills that instructs coding agents to control real browser sessions for UI verification, multi-step form flows, authenticated testing, and live web research. Instead of guessing DOM behavior from static code, the agent opens pages, clicks elements, fills inputs, and observes rendered results. Developers reach for browser during pre-release QA when Stripe checkout, OAuth login, or dashboard widgets need end-to-end confirmation. The skill also supports research tasks that require navigating authenticated or dynamic SPAs. It integrates with agent tool loops where shell-only inspection cannot validate client-side JavaScript behavior or session cookies.

  • Browser session control patterns
  • Navigation, click, and form automation
  • Authenticated flow handling
  • Screenshot and DOM inspection hooks
  • Safer pacing for flaky SPAs

Browser by the numbers

  • 396 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #1,997 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/iamzhihuix/happy-claude-skills --skill browser

Add your badge

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

Listed on Skillselion
Installs396
repo stars303
Last updatedApril 20, 2026
Repositoryiamzhihuix/happy-claude-skills

How do agents test authenticated web UI flows?

Drive real browser sessions for UI verification, form flows, authenticated testing, and live web research inside agent loops.

Who is it for?

Developers running agent-assisted QA on SPAs, OAuth flows, or multi-step web forms that require a real browser rather than static code review.

Skip if: Skip browser when you only need unit tests with Jest/Vitest mocks or headless CI pipelines already covered by Playwright config files.

When should I use this skill?

User asks the agent to open a URL, test a login flow, verify a deployed UI, or research a live authenticated web application.

What you get

Verified page snapshots, completed form submissions, session-authenticated navigation logs, and UI regression notes.

Files

SKILL.mdMarkdownGitHub ↗

Browser Tools

Minimal CDP tools for collaborative site exploration and scraping.

Credits: Based on Mario Zechner's article What if you don't need MCP?, adapted from Factory.ai.

Setup

Before first use, install dependencies:

npm install --prefix skills/browser

Start Chrome

./skills/browser/scripts/start.js              # Fresh profile
./skills/browser/scripts/start.js --profile    # Copy your profile (cookies, logins)

Start Chrome on :9222 with remote debugging.

Navigate

./skills/browser/scripts/nav.js https://example.com
./skills/browser/scripts/nav.js https://example.com --new

Navigate current tab or open new tab.

Evaluate JavaScript

./skills/browser/scripts/eval.js 'document.title'
./skills/browser/scripts/eval.js 'document.querySelectorAll("a").length'

Execute JavaScript in active tab (async context).

IMPORTANT: The code must be a single expression or use IIFE for multiple statements:

  • Single expression: 'document.title'
  • Multiple statements: '(() => { const x = 1; return x + 1; })()'
  • Avoid newlines in the code string - keep it on one line

Screenshot

./skills/browser/scripts/screenshot.js

Screenshot current viewport, returns temp file path.

Pick Elements

./skills/browser/scripts/pick.js "Click the submit button"

Interactive element picker. Click to select, Cmd/Ctrl+Click for multi-select, Enter to finish.

Workflow

1. Start Chrome with start.js --profile to mirror your authenticated state. 2. Drive navigation via nav.js https://target.app or open secondary tabs with --new. 3. Inspect the DOM using eval.js for quick counts, attribute checks, or extracting JSON payloads. 4. Capture artifacts with screenshot.js for visual proof or pick.js when you need precise selectors or text snapshots.

Usage Notes

  • Start Chrome first before using other tools
  • The --profile flag syncs your actual Chrome profile so you're logged in everywhere
  • JavaScript evaluation runs in an async context in the page
  • Pick tool allows you to visually select DOM elements by clicking on them

Related skills

FAQ

What can the browser skill verify?

The browser skill drives real browser sessions so agents can verify rendered UI, complete authenticated form flows, test multi-step checkout or login paths, and research live web pages that static code reading cannot validate.

How is browser different from unit tests?

The browser skill exercises live rendered pages with real clicks, cookies, and JavaScript execution inside agent loops, while unit tests mock components—browser catches session, routing, and client-side bugs invisible to isolated test runners.

AI & Agent Buildingagentsautomation

This week in AI coding

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

unsubscribe anytime.