browser

cexll/myclaude · updated Apr 8, 2026

$npx skills add https://github.com/cexll/myclaude --skill browser
0 commentsdiscussion
summary

Minimal Chrome DevTools Protocol (CDP) helpers for browser automation without MCP server setup.

skill.md

Browser Automation

Minimal Chrome DevTools Protocol (CDP) helpers for browser automation without MCP server setup.

Setup

Install dependencies before first use:

npm install --prefix ~/.claude/skills/browser/browser ws

Scripts

All scripts connect to Chrome on localhost:9222.

start.js - Launch Chrome

scripts/start.js              # Fresh profile
scripts/start.js --profile    # Use persistent profile (keeps cookies/auth)

nav.js - Navigate

scripts/nav.js https://example.com        # Navigate current tab
scripts/nav.js https://example.com --new  # Open in new tab

eval.js - Execute JavaScript

scripts/eval.js 'document.title'
scripts/eval.js '(() => { const x = 1; return x + 1; })()'

Use single expressions or IIFE for multiple statements.

screenshot.js - Capture Screenshot

scripts/screenshot.js

Returns { path, filename } of saved PNG in temp directory.

pick.js - Visual Element Picker

scripts/pick.js "Click the submit button"

Returns element metadata: tag, id, classes, text, href, selector, rect.

Workflow

  1. Launch Chrome: scripts/start.js --profile for authenticated sessions
  2. Navigate: scripts/nav.js <url>
  3. Inspect: scripts/eval.js 'document.querySelector(...)'
  4. Capture: scripts/screenshot.js or scripts/pick.js
  5. Return gathered data

Key Points

  • All operations run locally - credentials never leave the machine
  • Use --profile flag to preserve cookies and auth tokens
  • Scripts return structured JSON for agent consumption

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.653 reviews
  • Aisha Chen· Dec 28, 2024

    Registry listing for browser matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Aarav Martinez· Dec 16, 2024

    Keeps context tight: browser is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Isabella Haddad· Dec 12, 2024

    Solid pick for teams standardizing on skills: browser is focused, and the summary matches what you get after install.

  • Hassan Wang· Dec 12, 2024

    browser fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Yash Thakker· Nov 27, 2024

    browser reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Amelia Iyer· Nov 19, 2024

    Keeps context tight: browser is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Noor Kim· Nov 7, 2024

    Registry listing for browser matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Carlos Jackson· Nov 3, 2024

    browser has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Noor White· Oct 26, 2024

    Useful defaults in browser — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Carlos Shah· Oct 22, 2024

    browser fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 53

1 / 6