{
  "schemaVersion": "1.0",
  "item": {
    "slug": "webpage-screenshot",
    "name": "Webpage Screenshot",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Malenconiaprincep/webpage-screenshot",
    "canonicalUrl": "https://clawhub.ai/Malenconiaprincep/webpage-screenshot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/webpage-screenshot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=webpage-screenshot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/webpage-screenshot"
    },
    "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/webpage-screenshot",
    "agentPageUrl": "https://openagent3.xyz/skills/webpage-screenshot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/webpage-screenshot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/webpage-screenshot/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": "何时使用",
        "body": "用户给出一个 URL，要求「打开并截图」或「保存网页为图片」\n需要网页快照、页面留档或可视化结果时"
      },
      {
        "title": "方式一：运行项目脚本（推荐，得到文件）",
        "body": "使用项目内 TypeScript 脚本，可保存为本地图片文件：\n\n# 在项目根目录执行\nnpm run screenshot -- <URL> [输出路径]\n\n示例：\n\nnpm run screenshot -- https://example.com\n# 默认保存为 ./screenshot.png\n\nnpm run screenshot -- https://example.com ./output/page.png\n\n前置条件：已执行 npm install 且已安装浏览器：npx playwright install chromium。"
      },
      {
        "title": "方式二：使用 MCP 浏览器",
        "body": "若仅需在对话中「看到」页面内容而不必保存为文件，可使用 Cursor 的 browser MCP：\n\nbrowser_navigate 打开目标 URL\nbrowser_snapshot 获取页面结构（相当于当前状态的“快照”信息）\n\n注意：MCP 浏览器不直接生成截图文件，适合快速查看与交互。"
      },
      {
        "title": "输出",
        "body": "脚本方式：在指定路径生成 PNG 截图（默认 screenshot.png）。\n截图为整页（含滚动区域），视口宽度默认 1280px。"
      }
    ],
    "body": "网页截图\n何时使用\n用户给出一个 URL，要求「打开并截图」或「保存网页为图片」\n需要网页快照、页面留档或可视化结果时\n方式一：运行项目脚本（推荐，得到文件）\n\n使用项目内 TypeScript 脚本，可保存为本地图片文件：\n\n# 在项目根目录执行\nnpm run screenshot -- <URL> [输出路径]\n\n\n示例：\n\nnpm run screenshot -- https://example.com\n# 默认保存为 ./screenshot.png\n\nnpm run screenshot -- https://example.com ./output/page.png\n\n\n前置条件：已执行 npm install 且已安装浏览器：npx playwright install chromium。\n\n方式二：使用 MCP 浏览器\n\n若仅需在对话中「看到」页面内容而不必保存为文件，可使用 Cursor 的 browser MCP：\n\nbrowser_navigate 打开目标 URL\nbrowser_snapshot 获取页面结构（相当于当前状态的“快照”信息）\n\n注意：MCP 浏览器不直接生成截图文件，适合快速查看与交互。\n\n输出\n脚本方式：在指定路径生成 PNG 截图（默认 screenshot.png）。\n截图为整页（含滚动区域），视口宽度默认 1280px。"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Malenconiaprincep/webpage-screenshot",
    "publisherUrl": "https://clawhub.ai/Malenconiaprincep/webpage-screenshot",
    "owner": "Malenconiaprincep",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/webpage-screenshot",
    "downloadUrl": "https://openagent3.xyz/downloads/webpage-screenshot",
    "agentUrl": "https://openagent3.xyz/skills/webpage-screenshot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/webpage-screenshot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/webpage-screenshot/agent.md"
  }
}