{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/playwright-commander",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-commander",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "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"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/playwright-commander"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/playwright-commander",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Description",
        "body": "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."
      },
      {
        "title": "Core Functionalities",
        "body": "Launch and close browser instances.\nNavigate to specified URLs.\nCapture screenshots of web pages.\nRetrieve HTML content or readable text from pages.\nExecute custom JavaScript within the browser context.\nInteract with web elements (click, type, fill forms) using various selectors.\nRetrieve element attributes or text content."
      },
      {
        "title": "Usage",
        "body": "This skill is designed for programmatic interaction via exec commands, typically orchestrated by an agent.\n\n# Example: Launch browser and navigate\npython3 scripts/playwright_cli.py launch_browser --browser chrome --headless true\n\n# Example: Navigate to URL and take screenshot\npython3 scripts/playwright_cli.py navigate --url \"https://example.com\" --screenshot \"path/to/screenshot.png\"\n\n# Example: Get page content\npython3 scripts/playwright_cli.py get_content --url \"https://example.com\" --type html\n\n# Example: Click an element\npython3 scripts/playwright_cli.py click_element --url \"https://example.com\" --selector \"button.submit\""
      },
      {
        "title": "Prerequisites",
        "body": "Playwright Python package (playwright) installed in the skill's virtual environment.\nPlaywright browser binaries installed (playwright install)."
      },
      {
        "title": "Configuration (config.json)",
        "body": "(To be defined if specific configuration beyond default Playwright options is needed.)"
      },
      {
        "title": "Purpose",
        "body": "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."
      }
    ],
    "body": "Playwright Commander Skill\nDescription\n\nThis 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.\n\nCore Functionalities\nLaunch and close browser instances.\nNavigate to specified URLs.\nCapture screenshots of web pages.\nRetrieve HTML content or readable text from pages.\nExecute custom JavaScript within the browser context.\nInteract with web elements (click, type, fill forms) using various selectors.\nRetrieve element attributes or text content.\nUsage\n\nThis skill is designed for programmatic interaction via exec commands, typically orchestrated by an agent.\n\n# Example: Launch browser and navigate\npython3 scripts/playwright_cli.py launch_browser --browser chrome --headless true\n\n# Example: Navigate to URL and take screenshot\npython3 scripts/playwright_cli.py navigate --url \"https://example.com\" --screenshot \"path/to/screenshot.png\"\n\n# Example: Get page content\npython3 scripts/playwright_cli.py get_content --url \"https://example.com\" --type html\n\n# Example: Click an element\npython3 scripts/playwright_cli.py click_element --url \"https://example.com\" --selector \"button.submit\"\n\nPrerequisites\nPlaywright Python package (playwright) installed in the skill's virtual environment.\nPlaywright browser binaries installed (playwright install).\nConfiguration (config.json)\n\n(To be defined if specific configuration beyond default Playwright options is needed.)\n\nPurpose\n\nTo 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": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RuneweaverStudios/playwright-commander",
    "publisherUrl": "https://clawhub.ai/RuneweaverStudios/playwright-commander",
    "owner": "RuneweaverStudios",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}