# Send Playwright Commander to your agent
Use the source page and any available docs to guide the install because the item is currently unstable or timing out.
## Fast path
- Open the source page via Review source status.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "playwright-commander",
    "name": "Playwright Commander",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/RuneweaverStudios/playwright-commander",
    "canonicalUrl": "https://clawhub.ai/RuneweaverStudios/playwright-commander",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/playwright-commander",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-commander",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/playwright_cli.py",
      "venv/include/site/python3.14/greenlet/greenlet.h",
      "venv/lib/python3.14/site-packages/greenlet/CObjects.cpp",
      "venv/lib/python3.14/site-packages/greenlet/PyGreenlet.cpp"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "playwright-commander",
      "status": "unstable",
      "reason": "timeout",
      "recommendedAction": "retry_later",
      "checkedAt": "2026-05-07T04:40:03.722Z",
      "expiresAt": "2026-05-07T16:40:03.722Z",
      "httpStatus": null,
      "finalUrl": null,
      "contentType": null,
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-commander",
        "error": "Timed out after 5000ms",
        "slug": "playwright-commander"
      },
      "scope": "item",
      "summary": "Item is unstable.",
      "detail": "This item is timing out or returning errors right now. Review the source page and try again later.",
      "primaryActionLabel": "Review source status",
      "primaryActionHref": "https://clawhub.ai/RuneweaverStudios/playwright-commander"
    },
    "validation": {
      "installChecklist": [
        "Wait for the source to recover or retry later.",
        "Review SKILL.md only after the download returns a real package.",
        "Treat this source as transient until the upstream errors clear."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/playwright-commander",
    "downloadUrl": "https://openagent3.xyz/downloads/playwright-commander",
    "agentUrl": "https://openagent3.xyz/skills/playwright-commander/agent",
    "manifestUrl": "https://openagent3.xyz/skills/playwright-commander/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/playwright-commander/agent.md"
  }
}
```
## Documentation

### Description

This skill provides agents with a powerful interface to programmatically control web browsers using Playwright. It enables advanced UI automation, web content analysis, and debugging capabilities beyond what the default browser tool might offer directly.

### Core Functionalities

Launch and close browser instances.
Navigate to specified URLs.
Capture screenshots of web pages.
Retrieve HTML content or readable text from pages.
Execute custom JavaScript within the browser context.
Interact with web elements (click, type, fill forms) using various selectors.
Retrieve element attributes or text content.

### Usage

This skill is designed for programmatic interaction via exec commands, typically orchestrated by an agent.

# Example: Launch browser and navigate
python3 scripts/playwright_cli.py launch_browser --browser chrome --headless true

# Example: Navigate to URL and take screenshot
python3 scripts/playwright_cli.py navigate --url "https://example.com" --screenshot "path/to/screenshot.png"

# Example: Get page content
python3 scripts/playwright_cli.py get_content --url "https://example.com" --type html

# Example: Click an element
python3 scripts/playwright_cli.py click_element --url "https://example.com" --selector "button.submit"

### Prerequisites

Playwright Python package (playwright) installed in the skill's virtual environment.
Playwright browser binaries installed (playwright install).

### Configuration (config.json)

(To be defined if specific configuration beyond default Playwright options is needed.)

### Purpose

To give me more granular and robust control over web browser interactions, enabling more complex UI automation, detailed web page analysis, and better troubleshooting capabilities for browser-related issues, especially for the Mac App conversion project.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RuneweaverStudios
- Version: 1.0.0
## Source health
- Status: unstable
- Item is unstable.
- This item is timing out or returning errors right now. Review the source page and try again later.
- Health scope: item
- Reason: timeout
- Checked at: 2026-05-07T04:40:03.722Z
- Expires at: 2026-05-07T16:40:03.722Z
- Recommended action: Review source status
## Links
- [Detail page](https://openagent3.xyz/skills/playwright-commander)
- [Send to Agent page](https://openagent3.xyz/skills/playwright-commander/agent)
- [JSON manifest](https://openagent3.xyz/skills/playwright-commander/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/playwright-commander/agent.md)
- [Download page](https://openagent3.xyz/downloads/playwright-commander)