AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Playwright

skill-spideynolove-claude-dotfiles-playwright · by spideynolove

Browser automation via Playwright MCP through mcporter. Use when you need to navigate pages, extract data, take screenshots, interact with UI elements, or scrape web content. All tools called via mcporter to avoid context pollution.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-spideynolove-claude-dotfiles-playwright

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-spideynolove-claude-dotfiles-playwright)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Playwright? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

> Note: Converted from Claude Skill.

Playwright (MCPorter)

All tools called via mcporter:

npx mcporter call playwright.TOOL_NAME [args]

Core Workflow

Navigate

npx mcporter call playwright.browser_navigate url:"https://example.com"

Snapshot (preferred for data extraction — better than screenshot)

npx mcporter call playwright.browser_snapshot
# Save to file to avoid flooding context:
npx mcporter call playwright.browser_snapshot filename:"snapshot.md"

Screenshot

npx mcporter call playwright.browser_take_screenshot type:png filename:"page.png"
npx mcporter call playwright.browser_take_screenshot type:png fullPage:true filename:"full.png"

Wait for dynamic content

npx mcporter call playwright.browser_wait_for text:"Loaded"
npx mcporter call playwright.browser_wait_for time:2

Click (use ref from snapshot)

npx mcporter call playwright.browser_click ref:"e123" element:"Submit button"

Type into field

npx mcporter call playwright.browser_type ref:"e45" text:"search query" submit:true

Run arbitrary Playwright code

npx mcporter call playwright.browser_run_code \
  code:"async (page) => { return await page.title(); }"

Evaluate JS in page context

npx mcporter call playwright.browser_evaluate \
  function:"() => Array.from(document.querySelectorAll('table tr')).map(r => r.innerText)"

Common Patterns

Scrape table data

npx mcporter call playwright.browser_navigate url:"https://site.com/data"
npx mcporter call playwright.browser_wait_for time:2
npx mcporter call playwright.browser_snapshot filename:"raw.md"

Login then scrape

npx mcporter call playwright.browser_navigate url:"https://site.com/login"
npx mcporter call playwright.browser_snapshot
# use refs from snapshot for fields
npx mcporter call playwright.browser_type ref:"REF" text:"user@email.com"
npx mcporter call playwright.browser_type ref:"REF" text:"password" submit:true
npx mcporter call playwright.browser_wait_for text:"Dashboard"

Tab management

npx mcporter call playwright.browser_tabs action:list
npx mcporter call playwright.browser_tabs action:new
npx mcporter call playwright.browser_tabs action:select index:0

Network inspection

npx mcporter call playwright.browser_network_requests includeStatic:false

Tool Reference (22 tools)

| Tool | Purpose | |---|---| | browser_navigate | Go to URL | | browser_snapshot | Accessibility tree (use for data extraction) | | browser_take_screenshot | Visual screenshot | | browser_click | Click element by ref | | browser_type | Type text into element | | browser_fill_form | Fill multiple fields at once | | browser_select_option | Select dropdown option | | browser_hover | Hover over element | | browser_drag | Drag and drop | | browser_evaluate | Run JS in page context | | browser_run_code | Run Playwright code snippet | | browser_press_key | Press keyboard key | | browser_wait_for | Wait for text/element/time | | browser_navigate_back | Browser back | | browser_tabs | List/create/close/select tabs | | browser_network_requests | Inspect network traffic | | browser_console_messages | Get console output | | browser_handle_dialog | Accept/dismiss dialogs | | browser_file_upload | Upload files | | browser_resize | Resize browser window | | browser_install | Install browser (if missing error) | | browser_close | Close browser |

When to Use

  • Frontend UI testing (visible browser by default — no extra config needed)
  • Pages requiring JavaScript rendering / SPAs
  • Extracting tables/prices from web pages
  • Automated form submission and interaction flows
  • Screenshots of web pages

Anti-Patterns

❌ Don't call browser_snapshot without filename: when output is large — floods context ❌ Don't load playwright MCP in .claude.json alongside this skill — mcporter only ❌ Don't add --headless to mcporter.json for UI testing — defeats the purpose

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.