{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crawl-for-ai",
    "name": "Crawl4AI Web Scraper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/angusthefuzz/crawl-for-ai",
    "canonicalUrl": "https://clawhub.ai/angusthefuzz/crawl-for-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crawl-for-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crawl-for-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/crawl4ai.js"
    ],
    "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/crawl-for-ai"
    },
    "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/crawl-for-ai",
    "agentPageUrl": "https://openagent3.xyz/skills/crawl-for-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crawl-for-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crawl-for-ai/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": "Crawl4AI Web Scraper",
        "body": "Local Crawl4AI instance for full web page extraction with JavaScript rendering."
      },
      {
        "title": "Endpoints",
        "body": "Proxy (port 11234) — Clean output, OpenWebUI-compatible\n\nReturns: [{page_content, metadata}]\nUse for: Simple content extraction\n\nDirect (port 11235) — Full output with all data\n\nReturns: {results: [{markdown, html, links, media, ...}]}\nUse for: When you need links, media, or other metadata"
      },
      {
        "title": "Usage",
        "body": "# Via script\nnode {baseDir}/scripts/crawl4ai.js \"url\"\nnode {baseDir}/scripts/crawl4ai.js \"url\" --json\n\nScript options:\n\n--json — Full JSON response\n\nOutput: Clean markdown from the page."
      },
      {
        "title": "Configuration",
        "body": "Required environment variable:\n\nCRAWL4AI_URL — Your Crawl4AI instance URL (e.g., http://localhost:11235)\n\nOptional:\n\nCRAWL4AI_KEY — API key if your instance requires authentication"
      },
      {
        "title": "Features",
        "body": "JavaScript rendering — Handles dynamic content\nUnlimited usage — Local instance, no API limits\nFull content — HTML, markdown, links, media, tables\nBetter than Tavily for complex pages with JS"
      },
      {
        "title": "API",
        "body": "Uses your local Crawl4AI instance REST API. Auth header only sent if CRAWL4AI_KEY is set."
      }
    ],
    "body": "Crawl4AI Web Scraper\n\nLocal Crawl4AI instance for full web page extraction with JavaScript rendering.\n\nEndpoints\n\nProxy (port 11234) — Clean output, OpenWebUI-compatible\n\nReturns: [{page_content, metadata}]\nUse for: Simple content extraction\n\nDirect (port 11235) — Full output with all data\n\nReturns: {results: [{markdown, html, links, media, ...}]}\nUse for: When you need links, media, or other metadata\nUsage\n# Via script\nnode {baseDir}/scripts/crawl4ai.js \"url\"\nnode {baseDir}/scripts/crawl4ai.js \"url\" --json\n\n\nScript options:\n\n--json — Full JSON response\n\nOutput: Clean markdown from the page.\n\nConfiguration\n\nRequired environment variable:\n\nCRAWL4AI_URL — Your Crawl4AI instance URL (e.g., http://localhost:11235)\n\nOptional:\n\nCRAWL4AI_KEY — API key if your instance requires authentication\nFeatures\nJavaScript rendering — Handles dynamic content\nUnlimited usage — Local instance, no API limits\nFull content — HTML, markdown, links, media, tables\nBetter than Tavily for complex pages with JS\nAPI\n\nUses your local Crawl4AI instance REST API. Auth header only sent if CRAWL4AI_KEY is set."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/angusthefuzz/crawl-for-ai",
    "publisherUrl": "https://clawhub.ai/angusthefuzz/crawl-for-ai",
    "owner": "angusthefuzz",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crawl-for-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/crawl-for-ai",
    "agentUrl": "https://openagent3.xyz/skills/crawl-for-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crawl-for-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crawl-for-ai/agent.md"
  }
}