plurigrid/asi

playwright

Browser automation via Playwright MCP. Use for web scraping, taking screenshots, interacting with web pages, testing web UIs, and automating browser tasks. Headless browser support.

First seen Feb 25, 2026

Installation

$ npx skills add plurigrid/asi --skill playwright

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from plurigrid/asi · top by installs.

npx skills add plurigrid/asi

Browse all from plurigrid/asi

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 62
License LICENSE
Default branch main
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

CompatibilityRequires npx and @anthropic-ai/mcp-server-playwright package.
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,869 B
  • docs SUMMARY.md 199 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Playwright Browser Automation

Control browsers via Playwright MCP server.

When to Use

  • Web scraping and data extraction
  • Taking screenshots of web pages
  • Interacting with web UIs (clicking, typing, navigating)
  • Testing web applications
  • Automating browser-based workflows
  • Filling forms and submitting data

Setup

MCP server configured in ~/.mcp.json:

{
  "playwright": {
    "command": "npx",
    "args": ["-y", "@anthropic-ai/mcp-server-playwright"]
  }
}

Common Tools

Navigation

  • navigate_page - Go to a URL
  • new_page - Open new browser tab
  • list_pages - Show open pages

Interaction

  • click - Click elements
  • fill - Type into input fields
  • select - Choose from dropdowns
  • press - Press keyboard keys

Capture

  • take_screenshot - Screenshot current page
  • getpagecontent - Get page HTML
  • get_text - Extract visible text

Evaluation

  • evaluate - Run JavaScript in page context

Example Workflows

Screenshot a Page

  1. navigate_page(url="https://example.com";)
  2. take_screenshot()

Fill a Form

  1. navigate_page(url="https://example.com/form";)
  2. fill(selector="#email", value="[email protected]")
  3. fill(selector="#password", value="secret")
  4. click(selector="button[type=submit]")

Extract Data

  1. navigate_page(url="https://example.com/data";)
  2. get_text(selector=".results")

Tips

  • Use CSS selectors or XPath for element targeting
  • Wait for page loads before interacting
  • Browser runs headless by default
  • Screenshots are useful for debugging