{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-web-automation",
    "name": "Openclaw Web Automation",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/marcosathanasoulis/openclaw-web-automation",
    "canonicalUrl": "https://clawhub.ai/marcosathanasoulis/openclaw-web-automation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-web-automation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-web-automation",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "manifest.json",
      "runner.py",
      "schemas/input.json",
      "schemas/output.json",
      "scripts/run_query.py"
    ],
    "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/openclaw-web-automation"
    },
    "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/openclaw-web-automation",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-web-automation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-web-automation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-web-automation/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": "OpenClaw Web Automation (No Credentials)",
        "body": "This skill is the fastest path for public-site automation tasks.\n\nUse this for requests like:\n\n\"Summarize https://www.yahoo.com\"\n\"Check whether https://example.com mentions pricing\"\n\"Count mentions of 'news' on a public page\"\n\nDo not use this skill for login-required tasks. Use award/login flows instead."
      },
      {
        "title": "Preconditions",
        "body": "Repository is available locally.\nPython environment is installed (pip install -e .).\nNo credentials are required for this skill."
      },
      {
        "title": "Command to run",
        "body": "From repo root:\n\npython skills/openclaw-web-automation-basic/scripts/run_query.py --query \"<user request>\"\n\nThe script routes to examples/public_page_check and returns JSON."
      },
      {
        "title": "Output handling",
        "body": "Return a concise summary to the user:\n\npage title\nkeyword\nkeyword count\n1-3 highlights\n\n\nIf the query has no URL, default to https://www.yahoo.com.\nIf parsing fails, ask the user for a URL and what text to check."
      },
      {
        "title": "Safety",
        "body": "Public websites only.\nNo credential collection.\nNo anti-bot bypass guidance."
      }
    ],
    "body": "OpenClaw Web Automation (No Credentials)\n\nThis skill is the fastest path for public-site automation tasks.\n\nUse this for requests like:\n\n\"Summarize https://www.yahoo.com\"\n\"Check whether https://example.com mentions pricing\"\n\"Count mentions of 'news' on a public page\"\n\nDo not use this skill for login-required tasks. Use award/login flows instead.\n\nPreconditions\nRepository is available locally.\nPython environment is installed (pip install -e .).\nNo credentials are required for this skill.\nCommand to run\n\nFrom repo root:\n\npython skills/openclaw-web-automation-basic/scripts/run_query.py --query \"<user request>\"\n\n\nThe script routes to examples/public_page_check and returns JSON.\n\nOutput handling\nReturn a concise summary to the user:\npage title\nkeyword\nkeyword count\n1-3 highlights\nIf the query has no URL, default to https://www.yahoo.com.\nIf parsing fails, ask the user for a URL and what text to check.\nSafety\nPublic websites only.\nNo credential collection.\nNo anti-bot bypass guidance."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/marcosathanasoulis/openclaw-web-automation",
    "publisherUrl": "https://clawhub.ai/marcosathanasoulis/openclaw-web-automation",
    "owner": "marcosathanasoulis",
    "version": "1.0.7",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-web-automation",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-web-automation",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-web-automation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-web-automation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-web-automation/agent.md"
  }
}