npx claudepluginhub darkroomengineering/cc-settingsThis skill is limited to using the following tools:
AI-optimized browser automation for visual debugging. Token-efficient text extraction, persistent profiles, and stealth mode.
Automates Playwright browser tasks: navigates URLs, captures screenshots and accessibility snapshots, interacts with UI elements via click/type/fill, reports findings for E2E testing, deployments, and audits.
Automates browser tasks via PinchTab CLI: navigate sites, inspect/click/fill elements by stable refs/CSS/XPath/text, scrape text, snapshot diffs, export screenshots/PDFs, manage instances.
Automates browser testing/debugging with DevTools MCP: navigate/interact, screenshots, console/HTTP logs, Web Vitals, accessibility audits, request mocking, React DevTools, JS execution.
Share bugs, ideas, or general feedback.
AI-optimized browser automation for visual debugging. Token-efficient text extraction, persistent profiles, and stealth mode.
# Navigate to a URL
pinchtab nav http://localhost:3000
# Token-efficient page text (~800 tokens — preferred first step)
pinchtab text
# Take screenshot
pinchtab screenshot
# Get interactive compact accessibility snapshot
pinchtab snap -i -c
# Click element by ref
pinchtab click e5
# Fill input (clear + set)
pinchtab fill e3 "search query"
# Type keystrokes
pinchtab type e3 "search query"
# Press keyboard keys
pinchtab press Enter
pinchtab press Tab
pinchtab press Escape
# Hover over element
pinchtab hover e5
# Scroll page
pinchtab scroll down
pinchtab scroll up
# Select dropdown option
pinchtab select e7 "Option text"
# Semantic element discovery
pinchtab find "search button"
# Execute JavaScript
pinchtab eval "document.title"
# Health check
pinchtab health
The accessibility snapshot gives each element a unique ref:
e1: button "Submit"
e2: textbox "Email"
e3: link "Home"
Use these refs for reliable element targeting. No @ prefix needed.
pinchtab nav http://localhost:3000/broken-page
pinchtab text # Quick content check first
pinchtab screenshot # Visual inspection
pinchtab nav http://localhost:3000/form
pinchtab snap -i -c
pinchtab fill e2 "test@example.com"
pinchtab press Tab
pinchtab fill e3 "password123"
pinchtab click e5
pinchtab screenshot
pinchtab nav http://localhost:3000
pinchtab snap -i -c
# Analyze accessibility tree for structure
Requires pinchtab (installed by setup.sh).
Return findings: